Home
last modified time | relevance | path

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

/openbmc/linux/drivers/pinctrl/
H A Dpinctrl-cy8c95x0.c157 DECLARE_BITMAP(shiftmask, MAX_LINE);
421 bitmap_andnot(tmask, mask, chip->shiftmask, MAX_LINE); in cy8c95x0_write_regs_mask()
423 bitmap_replace(tmask, tmask, mask, chip->shiftmask, BANK_SZ * 3); in cy8c95x0_write_regs_mask()
425 bitmap_andnot(tval, val, chip->shiftmask, MAX_LINE); in cy8c95x0_write_regs_mask()
427 bitmap_replace(tval, tval, val, chip->shiftmask, BANK_SZ * 3); in cy8c95x0_write_regs_mask()
492 bitmap_andnot(tmask, mask, chip->shiftmask, MAX_LINE); in cy8c95x0_read_regs_mask()
494 bitmap_replace(tmask, tmask, mask, chip->shiftmask, BANK_SZ * 3); in cy8c95x0_read_regs_mask()
496 bitmap_andnot(tval, val, chip->shiftmask, MAX_LINE); in cy8c95x0_read_regs_mask()
498 bitmap_replace(tval, tval, val, chip->shiftmask, BANK_SZ * 3); in cy8c95x0_read_regs_mask()
547 bitmap_replace(val, tmp, tval, chip->shiftmask, MAX_LINE); in cy8c95x0_read_regs_mask()
[all …]
/openbmc/linux/drivers/media/rc/
H A Dir-mce_kbd-decoder.c152 u8 shiftmask = scancode & 0xff; in ir_mce_kbd_process_keyboard_data() local
157 keydata2, keydata1, shiftmask); in ir_mce_kbd_process_keyboard_data()
161 if (shiftmask & (1 << i)) in ir_mce_kbd_process_keyboard_data()
/openbmc/qemu/target/arm/tcg/
H A Dmve_helper.c2073 uint64_t shiftmask; \
2087 shiftmask = dup_const(ESIZE / 2, MASKFN(ESIZE * 8, shift)); \
2089 uint64_t r = (SHIFTFN(m[H8(e)], shift) & shiftmask) | \
2090 (d[H8(e)] & ~shiftmask); \
2389 uint32_t shiftmask = MAKE_64BIT_MASK(0, shift); local
2392 r = (d[H4(e)] << shift) | (rdm & shiftmask);