/scripts/mod/ |
D | sumversion.c | 67 #define ROUND1(a,b,c,d,k,s) (a = lshift(a + F(b,c,d) + k, s)) argument 68 #define ROUND2(a,b,c,d,k,s) (a = lshift(a + G(b,c,d) + k + (uint32_t)0x5A827999,s)) argument 69 #define ROUND3(a,b,c,d,k,s) (a = lshift(a + H(b,c,d) + k + (uint32_t)0x6ED9EBA1,s)) argument 90 uint32_t a, b, c, d; in md4_transform() local 93 b = hash[1]; in md4_transform() 97 ROUND1(a, b, c, d, in[0], 3); in md4_transform() 98 ROUND1(d, a, b, c, in[1], 7); in md4_transform() 99 ROUND1(c, d, a, b, in[2], 11); in md4_transform() 100 ROUND1(b, c, d, a, in[3], 19); in md4_transform() 101 ROUND1(a, b, c, d, in[4], 3); in md4_transform() [all …]
|
D | modpost.c | 2119 static void add_header(struct buffer *b, struct module *mod) in add_header() argument 2121 buf_printf(b, "#include <linux/module.h>\n"); in add_header() 2122 buf_printf(b, "#include <linux/vermagic.h>\n"); in add_header() 2123 buf_printf(b, "#include <linux/compiler.h>\n"); in add_header() 2124 buf_printf(b, "\n"); in add_header() 2125 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n"); in add_header() 2126 buf_printf(b, "\n"); in add_header() 2127 buf_printf(b, "__visible struct module __this_module\n"); in add_header() 2128 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n"); in add_header() 2129 buf_printf(b, "\t.name = KBUILD_MODNAME,\n"); in add_header() [all …]
|
D | file2alias.c | 38 __u8 b[16]; member 92 uuid.b[3], uuid.b[2], uuid.b[1], uuid.b[0], in add_uuid() 93 uuid.b[5], uuid.b[4], uuid.b[7], uuid.b[6], in add_uuid() 94 uuid.b[8], uuid.b[9], uuid.b[10], uuid.b[11], in add_uuid() 95 uuid.b[12], uuid.b[13], uuid.b[14], uuid.b[15]); in add_uuid()
|
/scripts/coccinelle/misc/ |
D | compare_const_fl.cocci | 19 binary operator b = {==,!=,&,|}; 24 c b (c1) 26 sizeof(t) b e1 28 sizeof e b e1 30 i b e1 38 b 47 binary operator b; 55 c b c1 57 sizeof(t) b e1 59 sizeof e b e1 [all …]
|
D | boolinit.cocci | 67 bool b; 70 b = 74 b = 120 bool b; 125 *b@p1 = 0 127 *b@p1 = 1 129 *b@p2 = c
|
/scripts/ |
D | sign-file.c | 148 BIO *b, *bd = NULL, *bm; in main() local 221 b = BIO_new_file(private_key_name, "rb"); in main() 222 ERR(!b, "%s", private_key_name); in main() 223 private_key = PEM_read_bio_PrivateKey(b, NULL, pem_pw_cb, NULL); in main() 225 BIO_free(b); in main() 228 b = BIO_new_file(x509_name, "rb"); in main() 229 ERR(!b, "%s", x509_name); in main() 230 x509 = d2i_X509_bio(b, NULL); /* Binary encoded X.509 */ in main() 232 ERR(BIO_reset(b) != 1, "%s", x509_name); in main() 233 x509 = PEM_read_bio_X509(b, NULL, NULL, NULL); /* PEM encoded X.509 */ in main() [all …]
|
D | diffconfig | 97 b = readconfig(open(configb_filename)) 106 if config not in b: 116 if a[config] != b[config]: 119 del b[config] 122 print_config("->", config, a[config], b[config]) 123 del b[config] 127 new = sorted(b.keys()) 129 print_config("+", config, None, b[config])
|
D | extract-cert.c | 138 BIO *b; in main() local 141 b = BIO_new_file(cert_src, "rb"); in main() 142 ERR(!b, "%s", cert_src); in main() 145 x509 = PEM_read_bio_X509(b, NULL, NULL, NULL); in main()
|
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 | 15 my $no2 = (split /\s+/, $b)[1]; 21 my ($module2, $value2) = @{$b};
|
D | sortextable.h | 80 static int compare_extable(const void *a, const void *b) in compare_extable() argument 83 Elf_Addr bv = _r(b); in compare_extable()
|
D | sortextable.c | 200 static int compare_relative_table(const void *a, const void *b) in compare_relative_table() argument 203 int32_t bv = (int32_t)r(b); in compare_relative_table()
|
D | checkstack.pl | 176 print sort { ($b =~ /:\t*(\d+)$/)[0] <=> ($a =~ /:\t*(\d+)$/)[0] } @stack;
|
D | bootgraph.pl | 185 my @initcalls = sort { $start{$a} <=> $start{$b} } keys(%start);
|
D | analyze_suspend.py | 2271 for b in data.dmesg: 2272 phase = data.dmesg[b] 2278 data.dmesg[b]['color'], '') 2284 for b in data.dmesg: 2285 phaselist = data.dmesg[b]['list'] 2294 height = (100.0 - devtl.scaleH)/data.dmesg[b]['row'] 2301 d+drv+length+b, left, top, '%.3f'%height, width, name+drv) 2305 for b in data.dmesg: 2306 phaselist = data.dmesg[b]['list'] 2316 height = (100.0 - devtl.scaleH)/data.dmesg[b]['row'] [all …]
|
/scripts/coccinelle/api/alloc/ |
D | pool_zalloc-simple.cocci | 34 expression a,b,c; 38 - x = dma_pool_alloc(a,b,c); 39 + x = dma_pool_zalloc(a,b,c); 45 expression a,b,c; 49 - x = pci_pool_alloc(a,b,c); 50 + x = pci_pool_zalloc(a,b,c); 60 expression a,b,c; 65 x = @p\(dma_pool_alloc\|pci_pool_alloc\)(a,b,c);
|
/scripts/kconfig/ |
D | nconf.h | 29 #define max(a, b) ({\ argument 31 typeof(b) _b = b;\ 34 #define min(a, b) ({\ argument 36 typeof(b) _b = b;\
|
D | zconf.lex.c_shipped | 317 void zconf_delete_buffer (YY_BUFFER_STATE b ); 318 void zconf_flush_buffer (YY_BUFFER_STATE b ); 324 static void zconf_init_buffer (YY_BUFFER_STATE b,FILE *file ); 1578 YY_BUFFER_STATE b = YY_CURRENT_BUFFER; 1581 (int) ((yy_c_buf_p) - b->yy_ch_buf); 1583 if ( b->yy_is_our_buffer ) 1585 int new_size = b->yy_buf_size * 2; 1588 b->yy_buf_size += b->yy_buf_size / 8; 1590 b->yy_buf_size *= 2; 1592 b->yy_ch_buf = (char *) [all …]
|
D | qconf.cc | 955 void ConfigView::setShowName(bool b) in setShowName() argument 957 if (list->showName != b) { in setShowName() 958 list->showName = b; in setShowName() 960 emit showNameChanged(b); in setShowName() 964 void ConfigView::setShowRange(bool b) in setShowRange() argument 966 if (list->showRange != b) { in setShowRange() 967 list->showRange = b; in setShowRange() 969 emit showRangeChanged(b); in setShowRange() 973 void ConfigView::setShowData(bool b) in setShowData() argument 975 if (list->showData != b) { in setShowData() [all …]
|
/scripts/genksyms/ |
D | lex.lex.c_shipped | 289 void yy_delete_buffer (YY_BUFFER_STATE b ); 290 void yy_flush_buffer (YY_BUFFER_STATE b ); 296 static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); 1098 YY_BUFFER_STATE b = YY_CURRENT_BUFFER; 1101 (int) ((yy_c_buf_p) - b->yy_ch_buf); 1103 if ( b->yy_is_our_buffer ) 1105 int new_size = b->yy_buf_size * 2; 1108 b->yy_buf_size += b->yy_buf_size / 8; 1110 b->yy_buf_size *= 2; 1112 b->yy_ch_buf = (char *) [all …]
|
D | genksyms.c | 68 static int equal_list(struct string_list *a, struct string_list *b); 406 static int equal_list(struct string_list *a, struct string_list *b) in equal_list() argument 408 while (a && b) { in equal_list() 409 if (a->tag != b->tag || strcmp(a->string, b->string)) in equal_list() 412 b = b->next; in equal_list() 415 return !a && !b; in equal_list() 515 struct string_list **e, **b; in print_list() local 528 b = alloca(elem * sizeof(*e)); in print_list() 529 e = b + elem; in print_list() 536 while (b != e) { in print_list() [all …]
|
D | parse.y | 49 struct string_list *b = *pb, *e = *pe; in remove_list() local 51 free_list(b, e); in remove_list() 60 struct string_list *b = *body, *i = *ident, *r; in record_compound() local 70 add_symbol(i->string, type, b, is_extern); in record_compound()
|
/scripts/dtc/ |
D | dtc-lexer.lex.c_shipped | 288 void yy_delete_buffer (YY_BUFFER_STATE b ); 289 void yy_flush_buffer (YY_BUFFER_STATE b ); 295 static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); 1447 YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; 1450 (int) ((yy_c_buf_p) - b->yy_ch_buf); 1452 if ( b->yy_is_our_buffer ) 1454 int new_size = b->yy_buf_size * 2; 1457 b->yy_buf_size += b->yy_buf_size / 8; 1459 b->yy_buf_size *= 2; 1461 b->yy_ch_buf = (char *) [all …]
|
D | livetree.c | 597 const struct reserve_info *a, *b; in cmp_reserve_info() local 600 b = *((const struct reserve_info * const *)bx); in cmp_reserve_info() 602 if (a->re.address < b->re.address) in cmp_reserve_info() 604 else if (a->re.address > b->re.address) in cmp_reserve_info() 606 else if (a->re.size < b->re.size) in cmp_reserve_info() 608 else if (a->re.size > b->re.size) in cmp_reserve_info() 646 const struct property *a, *b; in cmp_prop() local 649 b = *((const struct property * const *)bx); in cmp_prop() 651 return strcmp(a->name, b->name); in cmp_prop() 682 const struct node *a, *b; in cmp_subnode() local [all …]
|
D | dtc.h | 69 #define streq(a, b) (strcmp((a), (b)) == 0) argument 70 #define strneq(a, b, n) (strncmp((a), (b), (n)) == 0) argument
|