Home
last modified time | relevance | path

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

/linux/include/asm-generic/
H A Dword-at-a-time.h12 const unsigned long high_bits, low_bits; member
46 return (val + c->high_bits) & ~rhs; in has_zero()
62 const unsigned long one_bits, high_bits; member
96 unsigned long mask = ((a - c->one_bits) & ~a) & c->high_bits; in has_zero()
/linux/tools/testing/selftests/powerpc/primitives/
H A Dword-at-a-time.h15 const unsigned long high_bits, low_bits; member
41 return (val + c->high_bits) & ~rhs; in has_zero()
105 const unsigned long one_bits, high_bits; member
141 unsigned long mask = ((a - c->one_bits) & ~a) & c->high_bits; in has_zero()
/linux/arch/powerpc/include/asm/
H A Dword-at-a-time.h15 const unsigned long high_bits, low_bits; member
41 return (val + c->high_bits) & ~rhs; in has_zero()
105 const unsigned long one_bits, high_bits; member
141 unsigned long mask = ((a - c->one_bits) & ~a) & c->high_bits; in has_zero()
/linux/drivers/input/touchscreen/
H A Djornada720_ts.c55 int coord, high_bits = coords[3]; in jornada720_ts_average() local
57 coord = coords[0] | ((high_bits & 0x03) << 8); in jornada720_ts_average()
58 coord += coords[1] | ((high_bits & 0x0c) << 6); in jornada720_ts_average()
59 coord += coords[2] | ((high_bits & 0x30) << 4); in jornada720_ts_average()
/linux/arch/sh/include/asm/
H A Dword-at-a-time.h14 const unsigned long one_bits, high_bits; member
31 unsigned long mask = ((a - c->one_bits) & ~a) & c->high_bits; in has_zero()
/linux/arch/riscv/include/asm/
H A Dword-at-a-time.h17 const unsigned long one_bits, high_bits; member
25 unsigned long mask = ((val - c->one_bits) & ~val) & c->high_bits; in has_zero()
/linux/arch/arm64/include/asm/
H A Dword-at-a-time.h16 const unsigned long one_bits, high_bits; member
24 unsigned long mask = ((a - c->one_bits) & ~a) & c->high_bits; in has_zero()
/linux/arch/arm/include/asm/
H A Dword-at-a-time.h15 const unsigned long one_bits, high_bits; member
23 unsigned long mask = ((a - c->one_bits) & ~a) & c->high_bits; in has_zero()
/linux/arch/x86/include/asm/
H A Dword-at-a-time.h9 const unsigned long one_bits, high_bits; member
17 unsigned long mask = ((a - c->one_bits) & ~a) & c->high_bits; in has_zero()
/linux/drivers/gpu/drm/qxl/
H A Dqxl_drv.h133 uint64_t high_bits; member
289 return slot->high_bits | ((bo->tbo.resource->start << PAGE_SHIFT) + offset); in qxl_bo_physical_address()
/linux/drivers/net/ethernet/broadcom/bnxt/
H A Dbnxt_tc.c1740 #define high_bits(x, mask) ((x) & ~(mask)) in accumulate_val() macro
1743 *accum = high_bits(*accum, mask) + val; in accumulate_val()