| /tools/include/asm-generic/bitops/ |
| A D | __fls.h | 18 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.h | 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() 38 word >>= 2; in __ffs() [all …]
|
| /tools/bootconfig/samples/ |
| A D | good-override.bconf | 2 key.word = 1,2,4 3 key.word := 2,3 6 key.new.word := "new"
|
| A D | bad-keyerror.bconf | 1 # key word can not contain "," 2 key,word
|
| A D | bad-spaceword.bconf | 2 key . word
|
| A D | bad-dotword.bconf | 3 .word = 1
|
| A D | good-tree.bconf | 2 word {
|
| /tools/testing/selftests/bpf/progs/ |
| A D | test_siphash.h | 8 static inline u64 rol64(u64 word, unsigned int shift) in rol64() argument 10 return (word << (shift & 63)) | (word >> ((-shift) & 63)); in rol64()
|
| A 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()
|
| A D | test_sock_fields.c | 265 __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 D | btf_dump_test_case_syntax.c | 54 } __attribute__((mode(word))); /* force to use 8-byte backing for this enum */
|
| A D | test_l4lb.c | 24 static inline __u32 rol32(__u32 word, unsigned int shift) in rol32() argument 26 return (word << shift) | (word >> ((-shift) & 31)); in rol32()
|
| A D | test_l4lb_noinline.c | 20 static __always_inline __u32 rol32(__u32 word, unsigned int shift) in rol32() argument 22 return (word << shift) | (word >> ((-shift) & 31)); in rol32()
|
| A D | test_l4lb_noinline_dynptr.c | 22 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 D | move_mount_set_group_test.c | 142 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 D | bitops.h | 87 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 D | word-at-a-time.h | 1 ../../../../../arch/powerpc/include/asm/word-at-a-time.h
|
| /tools/testing/selftests/vDSO/ |
| A D | vdso_test_chacha.c | 32 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 D | bitsperlong.h | 14 #error Inconsistent word size. Check asm/bitsperlong.h
|
| /tools/perf/util/ |
| A D | s390-cpumsf.c | 250 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 D | inst.h | 100 unsigned int word; member
|
| /tools/testing/selftests/powerpc/nx-gzip/include/ |
| A D | nxu.h | 75 uint32_t word[4]; member 147 uint32_t word; member
|
| /tools/lib/bpf/ |
| A D | Makefile | 11 LIBBPF_MAJOR_VERSION := $(word 1,$(subst ., ,$(LIBBPF_VERSION))) 12 LIBBPF_MINOR_VERSION := $(word 2,$(subst ., ,$(LIBBPF_VERSION)))
|
| /tools/mm/ |
| A D | show_page_info.py | 40 word = prog.read_word(word_address)
|
| /tools/power/pm-graph/config/ |
| A 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.
|