/tools/include/asm-generic/bitops/ |
D | __ffs.h | 14 static __always_inline unsigned long __ffs(unsigned long word) in __ffs() argument 19 if ((word & 0xffffffff) == 0) { in __ffs() 21 word >>= 32; in __ffs() 24 if ((word & 0xffff) == 0) { in __ffs() 26 word >>= 16; in __ffs() 28 if ((word & 0xff) == 0) { in __ffs() 30 word >>= 8; in __ffs() 32 if ((word & 0xf) == 0) { in __ffs() 34 word >>= 4; in __ffs() 36 if ((word & 0x3) == 0) { in __ffs() [all …]
|
D | __fls.h | 13 static __always_inline unsigned long __fls(unsigned long word) in __fls() argument 18 if (!(word & (~0ul << 32))) { in __fls() 20 word <<= 32; in __fls() 23 if (!(word & (~0ul << (BITS_PER_LONG-16)))) { in __fls() 25 word <<= 16; in __fls() 27 if (!(word & (~0ul << (BITS_PER_LONG-8)))) { in __fls() 29 word <<= 8; in __fls() 31 if (!(word & (~0ul << (BITS_PER_LONG-4)))) { in __fls() 33 word <<= 4; in __fls() 35 if (!(word & (~0ul << (BITS_PER_LONG-2)))) { in __fls() [all …]
|
/tools/include/linux/ |
D | bitops.h | 68 static inline __u32 rol32(__u32 word, unsigned int shift) in rol32() argument 70 return (word << shift) | (word >> ((-shift) & 31)); in rol32()
|
/tools/testing/selftests/bpf/progs/ |
D | test_jhash.h | 7 static __always_inline u32 rol32(u32 word, unsigned int shift) in rol32() argument 9 return (word << shift) | (word >> ((-shift) & 31)); in rol32()
|
D | test_l4lb.c | 26 static inline __u32 rol32(__u32 word, unsigned int shift) in rol32() argument 28 return (word << shift) | (word >> ((-shift) & 31)); in rol32()
|
D | test_l4lb_noinline.c | 22 static __u32 rol32(__u32 word, unsigned int shift) in rol32() argument 24 return (word << shift) | (word >> ((-shift) & 31)); in rol32()
|
D | test_xdp_noinline.c | 19 static __u32 rol32(__u32 word, unsigned int shift) in rol32() argument 21 return (word << shift) | (word >> ((-shift) & 31)); in rol32()
|
/tools/include/asm-generic/ |
D | bitsperlong.h | 14 #error Inconsistent word size. Check asm/bitsperlong.h
|
/tools/perf/util/ |
D | s390-cpumsf.c | 249 unsigned long long word = be64toh(*(unsigned long long *)basicp); in s390_cpumsf_basic_show() local 253 local.prim_asn = word & 0xffff; in s390_cpumsf_basic_show() 254 local.CL = word >> 30 & 0x3; in s390_cpumsf_basic_show() 255 local.I = word >> 32 & 0x1; in s390_cpumsf_basic_show() 256 local.AS = word >> 33 & 0x3; in s390_cpumsf_basic_show() 257 local.P = word >> 35 & 0x1; in s390_cpumsf_basic_show() 258 local.W = word >> 36 & 0x1; in s390_cpumsf_basic_show() 259 local.T = word >> 37 & 0x1; in s390_cpumsf_basic_show() 260 local.U = word >> 40 & 0xf; in s390_cpumsf_basic_show() 293 unsigned long long word = be64toh(*(unsigned long long *)diagp); in s390_cpumsf_diag_show() local [all …]
|
/tools/lib/traceevent/plugins/ |
D | plugin_kvm.c | 357 unsigned word; member 386 role.word = (int)val; in kvm_mmu_print_role() 408 trace_seq_printf(s, "WORD: %08x", role.word); in kvm_mmu_print_role()
|
/tools/power/pm-graph/config/ |
D | custom-timeline-functions.cfg | 103 # html color string, either a word, or an RGB. 168 # html color string, either a word, or an RGB.
|
/tools/bpf/bpftool/bash-completion/ |
D | bpftool | 588 # word i.e. we can now have UPDATE_FLAGS. 596 # word i.e. we can now have 'value'. 762 # but it is not the previous word, or
|
/tools/testing/selftests/tc-testing/creating-testcases/ |
D | AddingTestCases.txt | 41 category: A list of single-word descriptions covering what the command
|
/tools/scripts/ |
D | utilities.mak | 114 # that works as a shell word, regardless of whether or
|
/tools/testing/selftests/bpf/ |
D | test_flow_dissector.c | 61 __be32 word; member
|
/tools/perf/ |
D | design.txt | 39 * The MSB of the config word signifies if the rest contains cpu
|
/tools/lib/traceevent/ |
D | event-parse.c | 4596 uint16_t word; in print_ip6c_addr() local 4645 word = ntohs(in6.s6_addr16[i]); in print_ip6c_addr() 4646 hi = word >> 8; in print_ip6c_addr() 4647 lo = word & 0xff; in print_ip6c_addr()
|
/tools/power/pm-graph/ |
D | README | 373 html color string, either a word, or an RGB.
|
D | sleepgraph.py | 4496 for word in phase.split('_'): 4497 id += word[0]
|