Home
last modified time | relevance | path

Searched refs:insert_rp (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/tests/tcg/hexagon/
H A Dread_write_overlap.c55 static inline uint32_t insert_rp(uint32_t x, uint32_t width, uint32_t offset) in insert_rp() function
69 check32(insert_rp(0x12345678, 8, 1), 0x123456f0); in test_insert_rp()
70 check32(insert_rp(0x12345678, 63, 8), 0x34567878); in test_insert_rp()
71 check32(insert_rp(0x12345678, 127, 8), 0x34567878); in test_insert_rp()
72 check32(insert_rp(0x12345678, 8, 24), 0x78345678); in test_insert_rp()
73 check32(insert_rp(0x12345678, 8, 63), 0x12345678); in test_insert_rp()
74 check32(insert_rp(0x12345678, 8, 64), 0x00000000); in test_insert_rp()