Home
last modified time | relevance | path

Searched refs:b (Results 1 – 25 of 35) sorted by relevance

12

/scripts/mod/
Dsumversion.c67 #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 …]
Dfile2alias.c38 __u8 b[16]; member
43 __u8 b[16]; member
46 __u8 b[16]; member
112 uuid.b[3], uuid.b[2], uuid.b[1], uuid.b[0], in add_uuid()
113 uuid.b[5], uuid.b[4], uuid.b[7], uuid.b[6], in add_uuid()
114 uuid.b[8], uuid.b[9], uuid.b[10], uuid.b[11], in add_uuid()
115 uuid.b[12], uuid.b[13], uuid.b[14], uuid.b[15]); in add_uuid()
894 sprintf(&guid_name[i], "%02x", TO_NATIVE((guid->b)[i/2])); in do_vmbus_entry()
1308 uuid.b[0], uuid.b[1], uuid.b[2], uuid.b[3], uuid.b[4], in do_tee_entry()
1309 uuid.b[5], uuid.b[6], uuid.b[7], uuid.b[8], uuid.b[9], in do_tee_entry()
[all …]
Dmodpost.c2266 static void add_header(struct buffer *b, struct module *mod) in add_header() argument
2268 buf_printf(b, "#include <linux/build-salt.h>\n"); in add_header()
2269 buf_printf(b, "#include <linux/module.h>\n"); in add_header()
2270 buf_printf(b, "#include <linux/vermagic.h>\n"); in add_header()
2271 buf_printf(b, "#include <linux/compiler.h>\n"); in add_header()
2272 buf_printf(b, "\n"); in add_header()
2273 buf_printf(b, "BUILD_SALT;\n"); in add_header()
2274 buf_printf(b, "\n"); in add_header()
2275 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n"); in add_header()
2276 buf_printf(b, "MODULE_INFO(name, KBUILD_MODNAME);\n"); in add_header()
[all …]
/scripts/
Dsign-file.c157 BIO *b; in read_private_key() local
159 b = BIO_new_file(private_key_name, "rb"); in read_private_key()
160 ERR(!b, "%s", private_key_name); in read_private_key()
161 private_key = PEM_read_bio_PrivateKey(b, NULL, pem_pw_cb, in read_private_key()
164 BIO_free(b); in read_private_key()
174 BIO *b; in read_x509() local
177 b = BIO_new_file(x509_name, "rb"); in read_x509()
178 ERR(!b, "%s", x509_name); in read_x509()
181 n = BIO_read(b, buf, 2); in read_x509()
183 if (BIO_should_retry(b)) { in read_x509()
[all …]
Ddiffconfig98 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])
Dparse-maintainers.pl45 my ($a, $b) = @_;
48 $b = uc $b;
52 $b =~ s/THE REST/ZZZZZZ/g;
54 return $a cmp $b;
58 my ($a, $b) = @_;
62 my $b1 = uc(substr($b, 0, 1));
72 return $a cmp $b;
Dextract-cert.c138 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()
Dunifdef.c750 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 …]
Dexport_report.pl16 my $no2 = (split /\s+/, $b)[1];
22 my ($module2, $value2) = @{$b};
Dgenerate_initcall_order.pl75 foreach my $counter (sort { $a <=> $b } keys(%{$initcalls})) {
206 foreach my $index (sort { $a <=> $b } keys(%{$results})) {
Dsortextable.h78 static int compare_extable(const void *a, const void *b) in compare_extable() argument
81 Elf_Addr bv = _r(b); in compare_extable()
Dcheckstack.pl170 print sort { ($b =~ /:\t*(\d+)$/)[0] <=> ($a =~ /:\t*(\d+)$/)[0] } @stack;
Dget_abi.pl208 ($data{$a}->{type} eq "File") cmp ($data{$b}->{type} eq "File") ||
209 $a cmp $b
Dsortextable.c200 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()
/scripts/kconfig/
Dnconf.h25 #define max(a, b) ({\ argument
27 typeof(b) _b = b;\
30 #define min(a, b) ({\ argument
32 typeof(b) _b = b;\
Dqconf.cc954 void ConfigView::setShowName(bool b) in setShowName() argument
956 if (list->showName != b) { in setShowName()
957 list->showName = b; in setShowName()
959 emit showNameChanged(b); in setShowName()
963 void ConfigView::setShowRange(bool b) in setShowRange() argument
965 if (list->showRange != b) { in setShowRange()
966 list->showRange = b; in setShowRange()
968 emit showRangeChanged(b); in setShowRange()
972 void ConfigView::setShowData(bool b) in setShowData() argument
974 if (list->showData != b) { in setShowData()
[all …]
/scripts/coccinelle/api/alloc/
Dpool_zalloc-simple.cocci35 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/
Datomics.tbl6 # * B/b - bool: returns bool
33 sub_and_test b i v
34 dec_and_test b v
35 inc_and_test b v
36 add_negative b i v
38 inc_not_zero b v
39 inc_unless_negative b v
40 dec_unless_positive b v
/scripts/coccinelle/misc/
Dboolinit.cocci75 bool b;
78 b =
82 b =
128 bool b;
132 *b@p1 = 0
134 *b@p1 = 1
138 bool b;
144 b = i
146 *b@p2 = c
/scripts/genksyms/
Dgenksyms.c56 static int equal_list(struct string_list *a, struct string_list *b);
394 static int equal_list(struct string_list *a, struct string_list *b) in equal_list() argument
396 while (a && b) { in equal_list()
397 if (a->tag != b->tag || strcmp(a->string, b->string)) in equal_list()
400 b = b->next; in equal_list()
403 return !a && !b; in equal_list()
503 struct string_list **e, **b; in print_list() local
516 b = alloca(elem * sizeof(*e)); in print_list()
517 e = b + elem; in print_list()
524 while (b != e) { in print_list()
[all …]
Dparse.y37 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/
Ddtc.h55 #define streq(a, b) (strcmp((a), (b)) == 0) argument
57 #define strprefixeq(a, n, b) (strlen(b) == (n) && (memcmp(a, b, n) == 0)) argument
Dlivetree.c649 const struct reserve_info *a, *b; in cmp_reserve_info() local
652 b = *((const struct reserve_info * const *)bx); in cmp_reserve_info()
654 if (a->address < b->address) in cmp_reserve_info()
656 else if (a->address > b->address) in cmp_reserve_info()
658 else if (a->size < b->size) in cmp_reserve_info()
660 else if (a->size > b->size) in cmp_reserve_info()
698 const struct property *a, *b; in cmp_prop() local
701 b = *((const struct property * const *)bx); in cmp_prop()
703 return strcmp(a->name, b->name); in cmp_prop()
734 const struct node *a, *b; in cmp_subnode() local
[all …]
/scripts/gdb/linux/
Ddmesg.py44 b = utils.read_memoryview(inf, log_buf_addr, log_next_idx)
45 log_buf = a.tobytes() + b.tobytes()
/scripts/gcc-plugins/
Drandomize_layout_plugin.c142 typedef struct ranctx { u64 a; u64 b; u64 c; u64 d; } ranctx; member
146 u64 e = x->a - rot(x->b, 7); in ranval()
147 x->a = x->b ^ rot(x->c, 13); in ranval()
148 x->b = x->c + rot(x->d, 37); in ranval()
158 x->b = seed[1]; in raninit()

12