| /scripts/mod/ |
| D | sumversion.c | 69 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) argument 70 #define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (uint32_t)0x5A827999,s)) argument 71 #define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (uint32_t)0x6ED9EBA1,s)) argument 92 uint32_t a, b, c, d; in md4_transform() local 95 b = hash[1]; in md4_transform() 99 ROUND1(a, b, c, d, in[0], 3); in md4_transform() 100 ROUND1(d, a, b, c, in[1], 7); in md4_transform() 101 ROUND1(c, d, a, b, in[2], 11); in md4_transform() 102 ROUND1(b, c, d, a, in[3], 19); in md4_transform() 103 ROUND1(a, b, c, d, in[4], 3); in md4_transform() [all …]
|
| D | file2alias.c | 40 __u8 b[16]; member 44 __u8 b[16]; member 51 __u8 b[16]; member 116 uuid.b[3], uuid.b[2], uuid.b[1], uuid.b[0], in add_uuid() 117 uuid.b[5], uuid.b[4], uuid.b[7], uuid.b[6], in add_uuid() 118 uuid.b[8], uuid.b[9], uuid.b[10], uuid.b[11], in add_uuid() 119 uuid.b[12], uuid.b[13], uuid.b[14], uuid.b[15]); in add_uuid() 127 guid.b[3], guid.b[2], guid.b[1], guid.b[0], in add_guid() 128 guid.b[5], guid.b[4], guid.b[7], guid.b[6], in add_guid() 129 guid.b[8], guid.b[9], guid.b[10], guid.b[11], in add_guid() [all …]
|
| D | modpost.c | 106 static int symbol_cmp(const void *a, const void *b) in symbol_cmp() argument 108 return strcmp(*(const char **)a, *(const char **)b); in symbol_cmp() 1785 static void add_header(struct buffer *b, struct module *mod) in add_header() argument 1787 buf_printf(b, "#include <linux/module.h>\n"); in add_header() 1788 buf_printf(b, "#include <linux/export-internal.h>\n"); in add_header() 1789 buf_printf(b, "#include <linux/compiler.h>\n"); in add_header() 1790 buf_printf(b, "\n"); in add_header() 1791 buf_printf(b, "MODULE_INFO(name, KBUILD_MODNAME);\n"); in add_header() 1792 buf_printf(b, "\n"); in add_header() 1793 buf_printf(b, "__visible struct module __this_module\n"); in add_header() [all …]
|
| /scripts/coccinelle/misc/ |
| D | swap.cocci | 19 expression a, b; 33 * a = b;@p 34 * b = tmp; 39 expression a, b; 44 * a = b;@p 45 * b = tmp; 49 expression a, b; 62 - a = b; 63 - b = tmp 64 + swap(a, b) [all …]
|
| /scripts/ |
| D | sign-file.c | 168 BIO *b; in read_private_key() local 170 b = BIO_new_file(private_key_name, "rb"); in read_private_key() 171 ERR(!b, "%s", private_key_name); in read_private_key() 172 private_key = PEM_read_bio_PrivateKey(b, NULL, pem_pw_cb, in read_private_key() 175 BIO_free(b); in read_private_key() 185 BIO *b; in read_x509() local 188 b = BIO_new_file(x509_name, "rb"); in read_x509() 189 ERR(!b, "%s", x509_name); in read_x509() 192 n = BIO_read(b, buf, 2); in read_x509() 194 if (BIO_should_retry(b)) { in read_x509() [all …]
|
| D | parse-maintainers.pl | 62 my ($a, $b) = @_; 65 $b = uc $b; 69 $b =~ s/THE REST/ZZZZZZ/g; 71 return $a cmp $b; 75 my ($a, $b) = @_; 79 my $b1 = uc(substr($b, 0, 1)); 89 return $a cmp $b;
|
| D | diffconfig | 98 b = readconfig(open(configb_filename)) 107 if config not in b: 117 if a[config] != b[config]: 120 del b[config] 123 print_config("->", config, a[config], b[config]) 124 del b[config] 128 new = sorted(b.keys()) 130 print_config("+", config, None, b[config])
|
| D | gfp-translate | 85 while read b; do 88 [${b}_BIT] = "$b",
|
| D | checkstack.pl | 194 my ($a, $b) = @_; 197 my $num_b = $1 if $b =~ /:\t*(\d+)$/; 199 my $func_b = $1 if $b =~ / (.*):/; 208 print sort { sort_lines($a, $b) } @stack;
|
| D | get_feat.pl | 245 ($data{$a}->{subsys} cmp $data{$b}->{subsys}) || 246 ("\L$a" cmp "\L$b") 277 ($data{$a}->{subsys} cmp $data{$b}->{subsys}) || 278 ("\L$a" cmp "\L$b") 404 ($data{$a}->{subsys} cmp $data{$b}->{subsys}) or 405 ("\L$a" cmp "\L$b") 435 ($arch_table{$b} cmp $arch_table{$a}) or 436 ("\L$a" cmp "\L$b")
|
| D | unifdef.c | 750 static Linetype op_lt(int *p, Linetype at, int a, Linetype bt, int b) { in op_lt() argument 751 return op_strict(p, a < b, at, bt); in op_lt() 753 static Linetype op_gt(int *p, Linetype at, int a, Linetype bt, int b) { in op_gt() argument 754 return op_strict(p, a > b, at, bt); in op_gt() 756 static Linetype op_le(int *p, Linetype at, int a, Linetype bt, int b) { in op_le() argument 757 return op_strict(p, a <= b, at, bt); in op_le() 759 static Linetype op_ge(int *p, Linetype at, int a, Linetype bt, int b) { in op_ge() argument 760 return op_strict(p, a >= b, at, bt); in op_ge() 762 static Linetype op_eq(int *p, Linetype at, int a, Linetype bt, int b) { in op_eq() argument 763 return op_strict(p, a == b, at, bt); in op_eq() [all …]
|
| D | export_report.pl | 16 my $no2 = (split /\s+/, $b)[1]; 22 my ($module2, $value2) = @{$b};
|
| D | generate_initcall_order.pl | 44 foreach my $counter (sort { $a <=> $b } keys(%{$initcalls})) { 231 foreach my $index (sort { $a <=> $b } keys(%{$results})) {
|
| D | sorttable.h | 115 const int *b = g_orc_ip_table + *(int *)_b; in orc_sort_cmp() local 117 unsigned long b_val = orc_ip(b); in orc_sort_cmp() 131 orc_b = g_orc_table + (b - g_orc_ip_table); in orc_sort_cmp() 193 static int compare_extable(const void *a, const void *b) in compare_extable() argument 196 Elf_Addr bv = _r(b); in compare_extable()
|
| D | rust_is_available_test.py | 131 self.assertEqual(result.stdout, b"") 137 self.assertEqual(result.stderr, b"") 144 self.assertNotEqual(result.stderr, b"") 149 … self.assertIn(b"Please see Documentation/rust/quick-start.rst for details", result.stderr) 154 … self.assertIn(b"Please see Documentation/rust/quick-start.rst for details", result.stderr)
|
| D | jobserver-exec | 15 jobs = b""
|
| /scripts/gendwarfksyms/examples/ |
| D | kabi_ex.h | 90 KABI_USE2(1, int b, int c); 104 KABI_USE2(1, int b, int c); 171 unsigned long b; member 188 unsigned long b; member 207 unsigned long b; member 276 KABI_IGNORE(0, unsigned long b);
|
| D | kabi.h | 32 #define ___PASTE(a, b) a##b argument 33 #define __PASTE(a, b) ___PASTE(a, b) argument
|
| /scripts/kconfig/ |
| D | nconf.h | 25 #define max(a, b) ({\ argument 27 typeof(b) _b = b;\ 30 #define min(a, b) ({\ argument 32 typeof(b) _b = b;\
|
| /scripts/coccinelle/api/alloc/ |
| D | pool_zalloc-simple.cocci | 35 expression a,b,c; 39 - x = dma_pool_alloc(a,b,c); 40 + x = dma_pool_zalloc(a,b,c); 46 expression a,b,c; 50 - x = pci_pool_alloc(a,b,c); 51 + x = pci_pool_zalloc(a,b,c); 61 expression a,b,c; 66 x = @p\(dma_pool_alloc\|pci_pool_alloc\)(a,b,c);
|
| /scripts/atomic/ |
| D | atomics.tbl | 6 # * B/b - bool: returns bool 33 sub_and_test b i v 34 dec_and_test b v 35 inc_and_test b v 38 inc_not_zero b v 39 inc_unless_negative b v 40 dec_unless_positive b v
|
| /scripts/genksyms/ |
| D | genksyms.c | 54 static int equal_list(struct string_list *a, struct string_list *b); 399 static int equal_list(struct string_list *a, struct string_list *b) in equal_list() argument 401 while (a && b) { in equal_list() 402 if (a->tag != b->tag || strcmp(a->string, b->string)) in equal_list() 405 b = b->next; in equal_list() 408 return !a && !b; in equal_list() 508 struct string_list **e, **b; in print_list() local 521 b = alloca(elem * sizeof(*e)); in print_list() 522 e = b + elem; in print_list() 529 while (b != e) { in print_list() [all …]
|
| D | parse.y | 37 struct string_list *b = *pb, *e = *pe; in remove_list() local 39 free_list(b, e); in remove_list() 48 struct string_list *b = *body, *i = *ident, *r; in record_compound() local 58 add_symbol(i->string, type, b, is_extern); in record_compound()
|
| /scripts/dtc/ |
| D | dtc.h | 91 #define streq(a, b) (strcmp((a), (b)) == 0) argument 93 #define strprefixeq(a, n, b) (strlen(b) == (n) && (memcmp(a, b, n) == 0)) argument
|
| D | livetree.c | 683 const struct reserve_info *a, *b; in cmp_reserve_info() local 686 b = *((const struct reserve_info * const *)bx); in cmp_reserve_info() 688 if (a->address < b->address) in cmp_reserve_info() 690 else if (a->address > b->address) in cmp_reserve_info() 692 else if (a->size < b->size) in cmp_reserve_info() 694 else if (a->size > b->size) in cmp_reserve_info() 732 const struct property *a, *b; in cmp_prop() local 735 b = *((const struct property * const *)bx); in cmp_prop() 737 return strcmp(a->name, b->name); in cmp_prop() 768 const struct node *a, *b; in cmp_subnode() local [all …]
|