Home
last modified time | relevance | path

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

/openbmc/qemu/target/riscv/
H A Dbitmanip_helper.c68 static const uint64_t shuf_masks[] = { variable
88 x = do_shuf_stage(x, shuf_masks[0], shuf_masks[0] >> 1, 1); in HELPER()
89 x = do_shuf_stage(x, shuf_masks[1], shuf_masks[1] >> 2, 2); in HELPER()
90 x = do_shuf_stage(x, shuf_masks[2], shuf_masks[2] >> 4, 4); in HELPER()
91 x = do_shuf_stage(x, shuf_masks[3], shuf_masks[3] >> 8, 8); in HELPER()
99 x = do_shuf_stage(x, shuf_masks[3], shuf_masks[3] >> 8, 8); in HELPER()
100 x = do_shuf_stage(x, shuf_masks[2], shuf_masks[2] >> 4, 4); in HELPER()
101 x = do_shuf_stage(x, shuf_masks[1], shuf_masks[1] >> 2, 2); in HELPER()
102 x = do_shuf_stage(x, shuf_masks[0], shuf_masks[0] >> 1, 1); in HELPER()