Home
last modified time | relevance | path

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

/arch/powerpc/include/asm/
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()
/arch/riscv/include/asm/
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()
/arch/sh/include/asm/
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()
/arch/arm64/include/asm/
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()
/arch/arm/include/asm/
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()
/arch/x86/include/asm/
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()
/arch/sparc/net/
Dbpf_jit_comp_64.c366 static void analyze_64bit_constant(u32 high_bits, u32 low_bits, in analyze_64bit_constant() argument
377 if ((highest_bit_set == -1) && ((high_bits >> (32 - i - 1)) & 1)) in analyze_64bit_constant()
384 if (lowest_bit_set == -1 && ((high_bits >> i) & 1)) in analyze_64bit_constant()
399 if ((high_bits & (1 << (i - 32))) != 0) in analyze_64bit_constant()
410 static unsigned long create_simple_focus_bits(unsigned long high_bits, in create_simple_focus_bits() argument
418 hi = ((high_bits << (32 - lowest_bit_set)) << shift); in create_simple_focus_bits()
421 hi = ((high_bits >> (lowest_bit_set - 32)) << shift); in create_simple_focus_bits()
426 static bool const64_is_2insns(unsigned long high_bits, in const64_is_2insns() argument
431 if (high_bits == 0 || high_bits == 0xffffffff) in const64_is_2insns()
434 analyze_64bit_constant(high_bits, low_bits, in const64_is_2insns()
[all …]
/arch/sparc/kernel/
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()
/arch/sparc/mm/
Dinit_64.c2095 unsigned long high_bits, low_bits; in patch_one_ktsb_phys() local
2097 high_bits = (pa >> 32) & 0xffffffff; in patch_one_ktsb_phys()
2103 ia[0] = (ia[0] & ~0x3fffff) | (high_bits >> 10); in patch_one_ktsb_phys()
2109 ia[2] = (ia[2] & ~0x1fff) | (high_bits & 0x3ff); in patch_one_ktsb_phys()