Home
last modified time | relevance | path

Searched refs:n (Results 1 – 25 of 55) sorted by relevance

123

/scripts/coccinelle/iterators/
Dfor_each_child.cocci17 local idexpression n;
30 for_each_node_by_name(n,e1) S
32 for_each_node_by_type(n,e1) S
34 for_each_compatible_node(n,e1,e2) S
36 for_each_matching_node(n,e1) S
38 for_each_matching_node_and_match(n,e1,e2) S
40 for_each_child_of_node(e1,n) S
42 for_each_available_child_of_node(e1,n) S
44 for_each_node_with_property(n,e1) S
47 i(es,n,...) S
[all …]
Ddevice_node_continue.cocci21 local idexpression n;
33 for_each_node_by_name(n,e1) S
35 for_each_node_by_type(n,e1) S
37 for_each_compatible_node(n,e1,e2) S
39 for_each_matching_node(n,e1) S
41 for_each_matching_node_and_match(n,e1,e2) S
43 for_each_child_of_node(e1,n) S
45 for_each_available_child_of_node(e1,n) S
47 for_each_node_with_property(n,e1) S
51 ... when != of_node_get(n)
[all …]
/scripts/gcc-plugins/
Dgcc-generate-ipa-pass.h30 #define __GCC_PLUGIN_STRINGIFY(n) #n argument
31 #define _GCC_PLUGIN_STRINGIFY(n) __GCC_PLUGIN_STRINGIFY(n) argument
35 #define __PASS_NAME_PASS_DATA(n) _GCC_PLUGIN_CONCAT2(n, _pass_data) argument
38 #define __PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT2(n, _pass) argument
43 #define __MAKE_PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT3(make_, n, _pass) argument
49 #define __GENERATE_SUMMARY(n) _GCC_PLUGIN_CONCAT2(n, _generate_summary) argument
56 #define __READ_SUMMARY(n) _GCC_PLUGIN_CONCAT2(n, _read_summary) argument
63 #define __WRITE_SUMMARY(n) _GCC_PLUGIN_CONCAT2(n, _write_summary) argument
70 #define __READ_OPTIMIZATION_SUMMARY(n) _GCC_PLUGIN_CONCAT2(n, _read_optimization_summary) argument
77 #define __WRITE_OPTIMIZATION_SUMMARY(n) _GCC_PLUGIN_CONCAT2(n, _write_optimization_summary) argument
[all …]
Dgcc-generate-simple_ipa-pass.h22 #define __GCC_PLUGIN_STRINGIFY(n) #n argument
23 #define _GCC_PLUGIN_STRINGIFY(n) __GCC_PLUGIN_STRINGIFY(n) argument
27 #define __PASS_NAME_PASS_DATA(n) _GCC_PLUGIN_CONCAT2(n, _pass_data) argument
30 #define __PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT2(n, _pass) argument
35 #define __MAKE_PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT3(make_, n, _pass) argument
42 #define __GATE(n) _GCC_PLUGIN_CONCAT2(n, _gate) argument
51 #define __EXECUTE(n) _GCC_PLUGIN_CONCAT2(n, _execute) argument
Dgcc-generate-rtl-pass.h22 #define __GCC_PLUGIN_STRINGIFY(n) #n argument
23 #define _GCC_PLUGIN_STRINGIFY(n) __GCC_PLUGIN_STRINGIFY(n) argument
27 #define __PASS_NAME_PASS_DATA(n) _GCC_PLUGIN_CONCAT2(n, _pass_data) argument
30 #define __PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT2(n, _pass) argument
35 #define __MAKE_PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT3(make_, n, _pass) argument
42 #define __GATE(n) _GCC_PLUGIN_CONCAT2(n, _gate) argument
51 #define __EXECUTE(n) _GCC_PLUGIN_CONCAT2(n, _execute) argument
Dgcc-generate-gimple-pass.h22 #define __GCC_PLUGIN_STRINGIFY(n) #n argument
23 #define _GCC_PLUGIN_STRINGIFY(n) __GCC_PLUGIN_STRINGIFY(n) argument
27 #define __PASS_NAME_PASS_DATA(n) _GCC_PLUGIN_CONCAT2(n, _pass_data) argument
30 #define __PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT2(n, _pass) argument
35 #define __MAKE_PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT3(make_, n, _pass) argument
42 #define __GATE(n) _GCC_PLUGIN_CONCAT2(n, _gate) argument
51 #define __EXECUTE(n) _GCC_PLUGIN_CONCAT2(n, _execute) argument
/scripts/kconfig/
Dlexer.l42 static char *expand_token(const char *in, size_t n);
84 n [A-Za-z0-9_-]
92 \\\n /* escaped new line */
93 \n return T_EOL;
141 {n}+ {
146 ({n}|$)+ {
156 [^[:blank:]\n]+.* {
161 \n { BEGIN(INITIAL); return T_EOL; }
185 unput('\n');
306 if (c == '\n') {
[all …]
Dlist.h61 #define list_for_each_entry_safe(pos, n, head, member) \ argument
63 n = list_entry(pos->member.next, typeof(*pos), member); \
65 pos = n, n = list_entry(n->member.next, typeof(*n), member))
/scripts/
Dextract-module-sig.pl88 my $n = $sig_len > 16 ? 16 : $sig_len;
89 foreach my $i (unpack("C" x $n, substr($raw_sig, 0, $n))) {
97 my $n = $kid_len > 16 ? 16 : $kid_len;
98 foreach my $i (unpack("C" x $n, substr($raw_kid, 0, $n))) {
Dsign-file.c185 int n; in read_x509() local
191 n = BIO_read(b, buf, 2); in read_x509()
192 if (n != 2) { in read_x509()
197 if (n >= 0) { in read_x509()
241 int opt, n; in main() local
370 while ((n = BIO_read(bm, buf, sizeof(buf))), in main()
371 n > 0) { in main()
372 ERR(BIO_write(bd, buf, n) < 0, "%s", dest_name); in main()
375 ERR(n < 0, "%s", module_name); in main()
392 while ((n = BIO_read(b, buf, sizeof(buf))), n > 0) in main()
[all …]
DKconfig.include19 # Return y if <command> exits with 0, n otherwise
20 success = $(if-success,$(1),y,n)
23 # Return n if <command> exits with 0, y otherwise
24 failure = $(if-success,$(1),n,y)
27 # Return y if the compiler supports <flag>, n otherwise
31 # Return y if the linker supports <flag>, n otherwise
35 # Return y if the assembler supports <instr>, n otherwise
36 as-instr = $(success,printf "%b\n" "$(1)" | $(CC) $(CLANG_FLAGS) -c -x assembler -o /dev/null -)
Dcheckpatch.pl1169 …my $git_last_include_commit = `${git_command} log --no-merges --pretty=format:"%h%n" -1 -- include…
1523 my $n = 0;
1527 $n++;
1528 for (; ($n % $tabsize) != 0; $n++) {
1534 $n++;
2035 for (my $n = 0; $n < $cnt; $n++) {
2036 $herectx .= raw_line($linenr, $n) . "\n";
3350 for (my $n = 0; $n < 2; $n++) {
3362 last if ($#lines < $linenr + $n);
3363 $input .= " " . trim($rawlines[$linenr + $n]);
[all …]
Dbloat-o-meter86 for d, n in delta:
87 if d: print("%-40s %7s %7s %+7d" % (n, old.get(n,"-"), new.get(n,"-"), d))
Dfaddr2line253 n=$(echo $line | sed 's/.*:\([0-9]\+\).*/\1/g')
254 n1=$[$n-5]
255 n2=$[$n+5]
257 …${AWK} 'NR>=strtonum("'$n1'") && NR<=strtonum("'$n2'") { if (NR=='$n') printf(">%d<", NR); else pr…
Dinsert-sys-cert.c97 char *w, *p, *n; in get_symbol_from_map() local
112 n = strstr(l, name); in get_symbol_from_map()
113 if (n) in get_symbol_from_map()
116 if (!n) { in get_symbol_from_map()
139 int i, n; in find_elf_symbol() local
144 n = symtab->sh_size / symtab->sh_entsize; in find_elf_symbol()
147 for (i = 0; i < n; i++) { in find_elf_symbol()
Dasn1_compiler.c545 int n; in tokenise()
546 for (n = 0; n < nr_tokens; n++) in tokenise()
547 debug("Token %3u: '%s'\n", n, token_list[n].content); in tokenise()
749 unsigned nr, t, n; in build_type_list() local
752 for (n = 0; n < nr_tokens - 1; n++) in build_type_list()
753 if (token_list[n + 0].token_type == TOKEN_TYPE_NAME && in build_type_list()
754 token_list[n + 1].token_type == TOKEN_ASSIGNMENT) in build_type_list()
776 for (n = 0; n < nr_tokens - 1; n++) { in build_type_list()
777 if (token_list[n + 0].token_type == TOKEN_TYPE_NAME && in build_type_list()
778 token_list[n + 1].token_type == TOKEN_ASSIGNMENT) { in build_type_list()
[all …]
/scripts/genksyms/
Dgenksyms.c45 int n; member
353 struct string_list *n, *n2; in concat_list() local
357 for (va_start(ap, start); (n = va_arg(ap, struct string_list *));) { in concat_list()
358 for (n2 = n; n2->next; n2 = n2->next) in concat_list()
361 start = n; in concat_list()
381 struct string_list *res, *n; in copy_list_range() local
385 n = res = copy_node(start); in copy_list_range()
387 n->next = copy_node(start); in copy_list_range()
388 n = n->next; in copy_list_range()
390 n->next = NULL; in copy_list_range()
[all …]
/scripts/kconfig/tests/auto_submenu/
Dexpected_stdout1 A (A) [Y/n/?] (NEW)
2 A0 (A0) [Y/n/?] (NEW)
4 A1 (A1) [Y/n/?] (NEW)
/scripts/kconfig/tests/preprocess/builtin_func/
DKconfig12 $(error-if,n,this should not be printed)
22 $(warning,$(shell,printf 'hello\nworld\n\n4\n\n\n'))
/scripts/dtc/libfdt/
Dlibfdt_internal.h36 static inline const struct fdt_reserve_entry *fdt_mem_rsv_(const void *fdt, int n) in fdt_mem_rsv_() argument
42 return rsv_table + n; in fdt_mem_rsv_()
44 static inline struct fdt_reserve_entry *fdt_mem_rsv_w_(void *fdt, int n) in fdt_mem_rsv_w_() argument
46 return (void *)(uintptr_t)fdt_mem_rsv_(fdt, n); in fdt_mem_rsv_w_()
/scripts/gdb/linux/
Dlists.py78 n = c['next'].dereference()
98 if n['prev'] != c.address:
104 n_addr=n.address,
105 n=n,
115 c = n
/scripts/dtc/
Dutil.c38 int n, size = 0; /* start with 128 bytes */ in xavsprintf_append() local
47 n = vsnprintf(NULL, 0, fmt, ap_copy) + 1; in xavsprintf_append()
50 p = xrealloc(p, size + n); in xavsprintf_append()
52 n = vsnprintf(p + size, n, fmt, ap); in xavsprintf_append()
60 int n; in xasprintf_append() local
64 n = xavsprintf_append(strp, fmt, ap); in xasprintf_append()
67 return n; in xasprintf_append()
72 int n; in xasprintf() local
78 n = xavsprintf_append(strp, fmt, ap); in xasprintf()
81 return n; in xasprintf()
Ddtc.h88 #define strprefixeq(a, n, b) (strlen(b) == (n) && (memcmp(a, b, n) == 0)) argument
210 #define for_each_property_withdel(n, p) \ argument
211 for ((p) = (n)->proplist; (p); (p) = (p)->next)
213 #define for_each_property(n, p) \ argument
214 for_each_property_withdel(n, p) \
217 #define for_each_child_withdel(n, c) \ argument
218 for ((c) = (n)->children; (c); (c) = (c)->next_sibling)
220 #define for_each_child(n, c) \ argument
221 for_each_child_withdel(n, c) \
256 cell_t propval_cell_n(struct property *prop, unsigned int n);
Dlivetree.c441 cell_t propval_cell_n(struct property *prop, unsigned int n) in propval_cell_n() argument
443 assert(prop->val.len / sizeof(cell_t) >= n); in propval_cell_n()
444 return fdt32_to_cpu(*((fdt32_t *)prop->val.val + n)); in propval_cell_n()
668 int n = 0, i = 0; in sort_reserve_entries() local
673 n++; in sort_reserve_entries()
675 if (n == 0) in sort_reserve_entries()
678 tbl = xmalloc(n * sizeof(*tbl)); in sort_reserve_entries()
685 qsort(tbl, n, sizeof(*tbl), cmp_reserve_info); in sort_reserve_entries()
688 for (i = 0; i < (n-1); i++) in sort_reserve_entries()
690 tbl[n-1]->next = NULL; in sort_reserve_entries()
[all …]
/scripts/coccinelle/misc/
Dnewline_in_nl_msg.cocci26 if not m.endswith("\\n\""):
58 if m.endswith("\\n\""):
73 if m.endswith("\\n\""):

123