/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 | 2106 static void add_header(struct buffer *b, struct module *mod) in add_header() argument 2108 buf_printf(b, "#include <linux/module.h>\n"); in add_header() 2109 buf_printf(b, "#include <linux/vermagic.h>\n"); in add_header() 2110 buf_printf(b, "#include <linux/compiler.h>\n"); in add_header() 2111 buf_printf(b, "\n"); in add_header() 2112 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n"); in add_header() 2113 buf_printf(b, "\n"); in add_header() 2114 buf_printf(b, "__visible struct module __this_module\n"); in add_header() 2115 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n"); in add_header() 2116 buf_printf(b, "\t.name = KBUILD_MODNAME,\n"); in add_header() [all …]
|
D | file2alias.c | 38 __u8 b[16]; member 53 #define ___cat(a,b) a ## b argument 54 #define __cat(a,b) ___cat(a,b) argument 142 uuid.b[3], uuid.b[2], uuid.b[1], uuid.b[0], in add_uuid() 143 uuid.b[5], uuid.b[4], uuid.b[7], uuid.b[6], in add_uuid() 144 uuid.b[8], uuid.b[9], uuid.b[10], uuid.b[11], in add_uuid() 145 uuid.b[12], uuid.b[13], uuid.b[14], uuid.b[15]); in add_uuid() 938 sprintf(&guid_name[i], "%02x", TO_NATIVE((guid->b)[i/2])); in do_vmbus_entry()
|
/scripts/ |
D | sign-file.c | 155 BIO *b; in read_private_key() local 157 b = BIO_new_file(private_key_name, "rb"); in read_private_key() 158 ERR(!b, "%s", private_key_name); in read_private_key() 159 private_key = PEM_read_bio_PrivateKey(b, NULL, pem_pw_cb, in read_private_key() 162 BIO_free(b); in read_private_key() 172 BIO *b; in read_x509() local 175 b = BIO_new_file(x509_name, "rb"); in read_x509() 176 ERR(!b, "%s", x509_name); in read_x509() 179 n = BIO_read(b, buf, 2); in read_x509() 181 if (BIO_should_retry(b)) { in read_x509() [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;
|
/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/coccinelle/api/ |
D | setup_timer.cocci | 31 expression e1, e2, e3, e4, e5, a, b; 35 +setup_timer (&e1, a, b); 38 when != b = e3 41 ... when != b = e4 42 -e1.data = b; 44 -e1.data = b; 110 expression a, b, e1, e2, e3, e4, e5; 116 when != b = e3 119 ... when != b = e4 120 * e1@j2.data = b; [all …]
|
/scripts/coccinelle/misc/ |
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/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 | 300 void yy_delete_buffer (YY_BUFFER_STATE b ); 301 void yy_flush_buffer (YY_BUFFER_STATE b ); 307 static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); 1442 YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; 1445 (int) ((yy_c_buf_p) - b->yy_ch_buf); 1447 if ( b->yy_is_our_buffer ) 1449 yy_size_t new_size = b->yy_buf_size * 2; 1452 b->yy_buf_size += b->yy_buf_size / 8; 1454 b->yy_buf_size *= 2; 1456 b->yy_ch_buf = (char *) [all …]
|
D | livetree.c | 578 const struct reserve_info *a, *b; in cmp_reserve_info() local 581 b = *((const struct reserve_info * const *)bx); in cmp_reserve_info() 583 if (a->re.address < b->re.address) in cmp_reserve_info() 585 else if (a->re.address > b->re.address) in cmp_reserve_info() 587 else if (a->re.size < b->re.size) in cmp_reserve_info() 589 else if (a->re.size > b->re.size) in cmp_reserve_info() 627 const struct property *a, *b; in cmp_prop() local 630 b = *((const struct property * const *)bx); in cmp_prop() 632 return strcmp(a->name, b->name); in cmp_prop() 663 const struct node *a, *b; in cmp_subnode() local [all …]
|
D | dtc.h | 65 #define streq(a, b) (strcmp((a), (b)) == 0) argument 66 #define strneq(a, b, n) (strncmp((a), (b), (n)) == 0) argument
|
/scripts/gdb/linux/ |
D | dmesg.py | 40 b = utils.read_memoryview(inf, log_buf_addr, log_next_idx) 41 log_buf = a.tobytes() + b.tobytes()
|
D | constants.py.in | 27 * IS_ENABLED generates (a || b) which is not compatible with python
|