Home
last modified time | relevance | path

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

/linux-6.3-rc2/include/asm-generic/
A Dword-at-a-time.h11 const unsigned long high_bits, low_bits; member
45 return (val + c->high_bits) & ~rhs; in has_zero()
61 const unsigned long one_bits, high_bits; member
95 unsigned long mask = ((a - c->one_bits) & ~a) & c->high_bits; in has_zero()
/linux-6.3-rc2/arch/powerpc/include/asm/
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-6.3-rc2/tools/testing/selftests/powerpc/primitives/
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-6.3-rc2/drivers/input/touchscreen/
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-6.3-rc2/arch/sparc/net/
A Dbpf_jit_comp_64.c399 if ((high_bits & (1 << (i - 32))) != 0) in analyze_64bit_constant()
431 if (high_bits == 0 || high_bits == 0xffffffff) in const64_is_2insns()
434 analyze_64bit_constant(high_bits, low_bits, in const64_is_2insns()
453 emit_loadimm32(high_bits, dest, ctx); in sparc_emit_set_const64_quick2()
470 u32 high_bits = (K >> 32); in emit_loadimm64() local
477 if (high_bits == 0x00000000) in emit_loadimm64()
521 create_simple_focus_bits(high_bits, low_bits, in emit_loadimm64()
538 emit_loadimm32(high_bits, dest, ctx); in emit_loadimm64()
553 if ((((~high_bits) & 0xffffffff) == 0 && in emit_loadimm64()
560 (~high_bits & 0xffffffff) == 0)) { in emit_loadimm64()
[all …]
/linux-6.3-rc2/drivers/gpu/drm/qxl/
A Dqxl_kms.c72 uint64_t high_bits; in setup_slot() local
82 high_bits = (qdev->rom->slots_start + slot->index) in setup_slot()
84 high_bits |= slot->generation; in setup_slot()
85 high_bits <<= (64 - (qdev->rom->slot_gen_bits + qdev->rom->slot_id_bits)); in setup_slot()
86 slot->high_bits = high_bits; in setup_slot()
A Dqxl_drv.h134 uint64_t high_bits; member
292 return slot->high_bits | ((bo->tbo.resource->start << PAGE_SHIFT) + offset); in qxl_bo_physical_address()
/linux-6.3-rc2/arch/riscv/include/asm/
A Dword-at-a-time.h15 const unsigned long one_bits, high_bits; member
23 unsigned long mask = ((val - c->one_bits) & ~val) & c->high_bits; in has_zero()
/linux-6.3-rc2/arch/sh/include/asm/
A Dword-at-a-time.h12 const unsigned long one_bits, high_bits; member
29 unsigned long mask = ((a - c->one_bits) & ~a) & c->high_bits; in has_zero()
/linux-6.3-rc2/arch/arm64/include/asm/
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-6.3-rc2/arch/arm/include/asm/
A Dword-at-a-time.h14 const unsigned long one_bits, high_bits; member
22 unsigned long mask = ((a - c->one_bits) & ~a) & c->high_bits; in has_zero()
/linux-6.3-rc2/arch/x86/include/asm/
A Dword-at-a-time.h15 const unsigned long one_bits, high_bits; member
49 unsigned long mask = ((a - c->one_bits) & ~a) & c->high_bits; in has_zero()
/linux-6.3-rc2/arch/sparc/kernel/
A Dprom_64.c71 u32 high_bits, low_bits, type; in sun4v_path_component() local
87 high_bits = (regs->phys_addr >> 32UL) & 0x0fffffffUL; in sun4v_path_component()
96 high_bits, low_bits); in sun4v_path_component()
101 high_bits); in sun4v_path_component()
104 name, high_bits); in sun4v_path_component()
/linux-6.3-rc2/arch/sparc/mm/
A Dinit_64.c2081 unsigned long high_bits, low_bits; in patch_one_ktsb_phys() local
2083 high_bits = (pa >> 32) & 0xffffffff; in patch_one_ktsb_phys()
2089 ia[0] = (ia[0] & ~0x3fffff) | (high_bits >> 10); in patch_one_ktsb_phys()
2095 ia[2] = (ia[2] & ~0x1fff) | (high_bits & 0x3ff); in patch_one_ktsb_phys()
/linux-6.3-rc2/drivers/net/ethernet/intel/ixgbe/
A Dixgbe_phy.c95 u8 high_bits; in ixgbe_read_i2c_combined_generic_int() local
125 if (ixgbe_in_i2c_byte_ack(hw, &high_bits)) in ixgbe_read_i2c_combined_generic_int()
139 *val = (high_bits << 8) | low_bits; in ixgbe_read_i2c_combined_generic_int()
/linux-6.3-rc2/drivers/net/ethernet/broadcom/bnxt/
A Dbnxt_tc.c1736 #define high_bits(x, mask) ((x) & ~(mask)) in accumulate_val() macro
1739 *accum = high_bits(*accum, mask) + val; in accumulate_val()
/linux-6.3-rc2/drivers/crypto/hisilicon/
A Dqm.c777 u16 *high_bits, enum qm_basic_type type) in qm_get_xqc_depth() argument
783 *high_bits = (depth >> QM_XQ_DEPTH_SHIFT) & QM_XQ_DEPTH_MASK; in qm_get_xqc_depth()

Completed in 41 milliseconds