Home
last modified time | relevance | path

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

/openbmc/qemu/target/riscv/
H A Dbitmanip_helper.c75 static inline target_ulong do_shuf_stage(target_ulong src, uint64_t maskL, in do_shuf_stage() argument
78 target_ulong x = src & ~(maskL | maskR); in do_shuf_stage()
80 x |= ((src << shift) & maskL) | ((src >> shift) & maskR); in do_shuf_stage()