Home
last modified time | relevance | path

Searched refs:word (Results 1 – 25 of 40) sorted by relevance

12

/tools/include/asm-generic/bitops/
A D__fls.h18 if (!(word & (~0ul << 32))) { in generic___fls()
20 word <<= 32; in generic___fls()
23 if (!(word & (~0ul << (BITS_PER_LONG-16)))) { in generic___fls()
25 word <<= 16; in generic___fls()
27 if (!(word & (~0ul << (BITS_PER_LONG-8)))) { in generic___fls()
29 word <<= 8; in generic___fls()
31 if (!(word & (~0ul << (BITS_PER_LONG-4)))) { in generic___fls()
33 word <<= 4; in generic___fls()
37 word <<= 2; in generic___fls()
39 if (!(word & (~0ul << (BITS_PER_LONG-1)))) in generic___fls()
[all …]
A D__ffs.h19 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()
38 word >>= 2; in __ffs()
[all …]
/tools/bootconfig/samples/
A Dgood-override.bconf2 key.word = 1,2,4
3 key.word := 2,3
6 key.new.word := "new"
A Dbad-keyerror.bconf1 # key word can not contain ","
2 key,word
A Dbad-spaceword.bconf2 key . word
A Dbad-dotword.bconf3 .word = 1
A Dgood-tree.bconf2 word {
/tools/testing/selftests/bpf/progs/
A Dtest_siphash.h8 static inline u64 rol64(u64 word, unsigned int shift) in rol64() argument
10 return (word << (shift & 63)) | (word >> ((-shift) & 63)); in rol64()
A Dtest_jhash.h7 static __always_inline u32 rol32(u32 word, unsigned int shift) in rol32() argument
9 return (word << shift) | (word >> ((-shift) & 31)); in rol32()
A Dtest_sock_fields.c265 __u32 *word = (__u32 *)&sk->dst_port; in sk_dst_port__load_word() local
266 return word[0] == bpf_htons(0xcafe); in sk_dst_port__load_word()
A Dbtf_dump_test_case_syntax.c54 } __attribute__((mode(word))); /* force to use 8-byte backing for this enum */
A Dtest_l4lb.c24 static inline __u32 rol32(__u32 word, unsigned int shift) in rol32() argument
26 return (word << shift) | (word >> ((-shift) & 31)); in rol32()
A Dtest_l4lb_noinline.c20 static __always_inline __u32 rol32(__u32 word, unsigned int shift) in rol32() argument
22 return (word << shift) | (word >> ((-shift) & 31)); in rol32()
A Dtest_l4lb_noinline_dynptr.c22 static __always_inline __u32 rol32(__u32 word, unsigned int shift) in rol32() argument
24 return (word << shift) | (word >> ((-shift) & 31)); in rol32()
/tools/testing/selftests/move_mount_set_group/
A Dmove_mount_set_group_test.c142 static void null_endofword(char *word) in null_endofword() argument
144 while (*word && *word != ' ' && *word != '\t') in null_endofword()
145 word++; in null_endofword()
146 *word = '\0'; in null_endofword()
/tools/include/linux/
A Dbitops.h87 static inline __u32 rol32(__u32 word, unsigned int shift) in rol32() argument
89 return (word << shift) | (word >> ((-shift) & 31)); in rol32()
/tools/testing/selftests/powerpc/primitives/
A Dword-at-a-time.h1 ../../../../../arch/powerpc/include/asm/word-at-a-time.h
/tools/testing/selftests/vDSO/
A Dvdso_test_chacha.c32 static uint32_t rol32(uint32_t word, unsigned int shift) in rol32() argument
34 return (word << (shift & 31)) | (word >> ((-shift) & 31)); in rol32()
/tools/include/asm-generic/
A Dbitsperlong.h14 #error Inconsistent word size. Check asm/bitsperlong.h
/tools/perf/util/
A Ds390-cpumsf.c250 unsigned long long word = be64toh(*(unsigned long long *)basicp); in s390_cpumsf_basic_show() local
254 local.prim_asn = word & 0xffff; in s390_cpumsf_basic_show()
255 local.CL = word >> 30 & 0x3; in s390_cpumsf_basic_show()
256 local.I = word >> 32 & 0x1; in s390_cpumsf_basic_show()
257 local.AS = word >> 33 & 0x3; in s390_cpumsf_basic_show()
258 local.P = word >> 35 & 0x1; in s390_cpumsf_basic_show()
259 local.W = word >> 36 & 0x1; in s390_cpumsf_basic_show()
260 local.T = word >> 37 & 0x1; in s390_cpumsf_basic_show()
261 local.U = word >> 40 & 0xf; in s390_cpumsf_basic_show()
294 unsigned long long word = be64toh(*(unsigned long long *)diagp); in s390_cpumsf_diag_show() local
[all …]
/tools/arch/loongarch/include/asm/
A Dinst.h100 unsigned int word; member
/tools/testing/selftests/powerpc/nx-gzip/include/
A Dnxu.h75 uint32_t word[4]; member
147 uint32_t word; member
/tools/lib/bpf/
A DMakefile11 LIBBPF_MAJOR_VERSION := $(word 1,$(subst ., ,$(LIBBPF_VERSION)))
12 LIBBPF_MINOR_VERSION := $(word 2,$(subst ., ,$(LIBBPF_VERSION)))
/tools/mm/
A Dshow_page_info.py40 word = prog.read_word(word_address)
/tools/power/pm-graph/config/
A Dcustom-timeline-functions.cfg103 # html color string, either a word, or an RGB.
168 # html color string, either a word, or an RGB.

Completed in 34 milliseconds

12