Home
last modified time | relevance | path

Searched refs:a (Results 1 – 25 of 97) sorted by relevance

1234

/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
92 a = hash[0]; 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 …]
/scripts/coccinelle/api/
Datomic_as_refcounter.cocci14 identifier a, x;
26 atomic_dec_and_test@p1(&(a)->x)
28 atomic_dec_and_lock@p1(&(a)->x, ...)
30 atomic_long_dec_and_lock@p1(&(a)->x, ...)
32 atomic_long_dec_and_test@p1(&(a)->x)
34 atomic64_dec_and_test@p1(&(a)->x)
36 local_dec_and_test@p1(&(a)->x)
40 fname@p2(a, ...);
62 identifier a, x, y;
69 atomic_dec_and_test@p1(&(a)->x)
[all …]
Dkfree_mismatch.cocci64 position a != alloc.kok;
70 * kcalloc_node\)(...)@a
78 position a != alloc.kok;
84 kcalloc_node\)(...)@a
93 position a != alloc.vok;
99 * __vmalloc_node_range\|__vmalloc_node\)(...)@a
106 position a != alloc.vok;
112 __vmalloc_node_range\|__vmalloc_node\)(...)@a
120 position a, f;
124 * kvmalloc_array\)(...)@a
[all …]
/scripts/tracing/
Dftrace-bisect.sh119 read a
120 if [ "$a" != "y" -a "$a" != "Y" ]; then
127 read a
128 if [ "$a" != "y" -a "$a" != "Y" ]; then
/scripts/
Dparse-maintainers.pl62 my ($a, $b) = @_;
64 $a = uc $a;
68 $a =~ s/THE REST/ZZZZZZ/g;
71 return $a cmp $b;
75 my ($a, $b) = @_;
78 my $a1 = uc(substr($a, 0, 1));
89 return $a cmp $b;
Ddiffconfig97 a = readconfig(open(configa_filename))
106 for config in a:
111 print_config("-", config, a[config], None)
112 del a[config]
116 for config in a:
117 if a[config] != b[config]:
123 print_config("->", config, a[config], b[config])
Dbpf_helpers_doc.py53 for a in args:
54 capture = arg_re.match(a)
368 for a in proto['args']:
369 one_arg = '{}{}'.format(comma, a['type'])
370 if a['name']:
371 if a['star']:
372 one_arg += ' {}**\ '.format(a['star'].replace('*', '\\*'))
375 one_arg += '*{}*\\ **'.format(a['name'])
556 for i, a in enumerate(proto['args']):
557 t = a['type']
[all …]
Dmodule.lds.S45 *(.bss .bss.[0-9a-zA-Z_]*)
50 *(.data .data.[0-9a-zA-Z_]*)
56 *(.rodata .rodata.[0-9a-zA-Z_]*)
71 *(.text .text.[0-9a-zA-Z_]*)
Dcleanfile84 while (defined($a = shift(@ARGV))) {
85 if ($a =~ /^-/) {
86 if ($a eq '-width' || $a eq '-w') {
93 push(@files, $a);
Dcleanpatch84 while (defined($a = shift(@ARGV))) {
85 if ($a =~ /^-/) {
86 if ($a eq '-width' || $a eq '-w') {
93 push(@files, $a);
Dconfig15 Manipulate options in a .config file from the command line.
21 --module|-m option Turn option into a module
75 # sed append cmd: 'a\' + newline + text + newline
/scripts/kconfig/
Dnconf.h25 #define max(a, b) ({\ argument
26 typeof(a) _a = a;\
30 #define min(a, b) ({\ argument
31 typeof(a) _a = a;\
/scripts/atomic/fallbacks/
Dadd_unless3 * ${arch}${atomic}_add_unless - add unless the number is already a given value
5 * @a: the amount to add to v...
8 * Atomically adds @a to @v, if @v was not already @u.
12 ${arch}${atomic}_add_unless(${atomic}_t *v, ${int} a, ${int} u)
14 return ${arch}${atomic}_fetch_add_unless(v, a, u) != u;
Dfetch_add_unless3 * ${arch}${atomic}_fetch_add_unless - add unless the number is already a given value
5 * @a: the amount to add to v...
8 * Atomically adds @a to @v, so long as @v was not already @u.
12 ${arch}${atomic}_fetch_add_unless(${atomic}_t *v, ${int} a, ${int} u)
19 } while (!${arch}${atomic}_try_cmpxchg(v, &c, c + a));
/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/kconfig/tests/err_recursive_dep/
Dexpected_stderr3 For a resolution refer to Documentation/kbuild/kconfig-language.rst
8 For a resolution refer to Documentation/kbuild/kconfig-language.rst
14 For a resolution refer to Documentation/kbuild/kconfig-language.rst
20 For a resolution refer to Documentation/kbuild/kconfig-language.rst
26 For a resolution refer to Documentation/kbuild/kconfig-language.rst
31 For a resolution refer to Documentation/kbuild/kconfig-language.rst
37 For a resolution refer to Documentation/kbuild/kconfig-language.rst
/scripts/kconfig/tests/auto_submenu/
DKconfig12 This depends on A, so should be a submenu of A.
19 This should be a submenu of A0.
32 Choice should become a submenu as well.
51 This depends on A, but not a consecutive item, so can/should not
52 be a submenu.
/scripts/kconfig/tests/new_choice_with_dep/
DKconfig6 This is a new symbol.
20 This is a new symbol, so should be asked.
37 This is a new symbol, so should be asked.
/scripts/coccinelle/misc/
Dcond_no_effect.cocci7 // is a placeholder for not yet handled cases.
8 // Unfortunately there also seems to be a tendency to use
9 // the last if else/else as a "default behavior" - which some
10 // might consider a legitimate coding pattern. From discussion
22 // user-mode SHcompact yet, and for a kernel fault, this would
23 // have to come from a module built for SHcompact. */
Difaddr.cocci2 /// The address of a variable or field is likely always to be non-zero.
28 cocci.print_main("test of a variable/field address",p)
34 msg = "ERROR: test of a variable/field address"
Dadd_namespace.cocci6 /// add a missing namespace tag to a module source file.
18 // Add missing imports, but only adjacent to a MODULE_LICENSE statement.
/scripts/dtc/libfdt/
Dlibfdt_internal.h10 #define FDT_ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) argument
/scripts/dtc/
Dfdtdump.c17 #define ALIGN(x, a) (((x) + ((a) - 1)) & ~((a) - 1)) argument
18 #define PALIGN(p, a) ((void *)(ALIGN((unsigned long)(p), (a)))) argument
Ddtc-lexer.l12 PROPNODECHAR [a-zA-Z0-9,._+*#?@-]
14 LABEL [a-zA-Z_][a-zA-Z0-9_]*
154 <V1>([0-9]+|0[xX][0-9a-fA-F]+)(U|L|UL|LL|ULL)? {
210 <BYTESTRING>[0-9a-fA-F]{2} {
Ddtx_diff37 Each DTx is processed by the dtc compiler to produce a sorted dts source
38 file. If DTx is a dts source file then it is pre-processed in the same
44 If DTx is a directory, it is treated as a DT subtree, such as
48 it is treated as a binary blob (aka .dtb or FDT).
50 Otherwise DTx is treated as a dts source file (aka .dts).
72 a local file that exists in both the path of DTx_1 and DTx_2 then the
299 ERROR: unable to find a 'dtc' program
316 If \${KBUILD_OUTPUT} is a relative path, then '-s SRCDIR', -S, or run

1234