Home
last modified time | relevance | path

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

123

/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-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-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-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/coccinelle/iterators/
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/kconfig/
Dlexer.l43 static char *expand_token(const char *in, size_t n);
85 n [A-Za-z0-9_-]
93 \\\n /* escaped new line */
94 \n return T_EOL;
145 {n}+ {
150 ({n}|$)+ {
160 [^[:blank:]\n]+.* {
165 \n { BEGIN(INITIAL); return T_EOL; }
189 unput('\n');
310 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))) {
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
Dsign-file.c175 int n; in read_x509() local
181 n = BIO_read(b, buf, 2); in read_x509()
182 if (n != 2) { in read_x509()
187 if (n >= 0) { in read_x509()
231 int opt, n; in main() local
360 while ((n = BIO_read(bm, buf, sizeof(buf))), in main()
361 n > 0) { in main()
362 ERR(BIO_write(bd, buf, n) < 0, "%s", dest_name); in main()
365 ERR(n < 0, "%s", module_name); in main()
382 while ((n = BIO_read(b, buf, sizeof(buf))), n > 0) in main()
[all …]
Dcheckpatch.pl909 …my $git_last_include_commit = `${git_command} log --no-merges --pretty=format:"%h%n" -1 -- include…
1211 my $n = 0;
1215 $n++;
1216 for (; ($n % 8) != 0; $n++) {
1222 $n++;
1715 for (my $n = 0; $n < $cnt; $n++) {
1716 $herectx .= raw_line($linenr, $n) . "\n";
4347 for (my $n = 0; $n < $#elements; $n += 2) {
4349 my $good = $fix_elements[$n] . $fix_elements[$n + 1];
4353 $off += length($elements[$n]);
[all …]
Dver_linux38 n = split($0, procmaps, "/")
39 if (match(procmaps[n], vernum)) {
40 ver = substr(procmaps[n], RSTART, RLENGTH)
Dfaddr2line183 n=$(echo $line | sed 's/.*:\([0-9]\+\).*/\1/g')
184 n1=$[$n-5]
185 n2=$[$n+5]
187 …awk 'NR>=strtonum("'$n1'") && NR<=strtonum("'$n2'") { if (NR=='$n') printf(">%d<", NR); else print…
Dbloat-o-meter84 for d, n in delta:
85 if d: print("%-40s %7s %7s %+7d" % (n, old.get(n,"-"), new.get(n,"-"), d))
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/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_()
Dlibfdt_env.h29 #define EXTRACT_BYTE(x, n) ((unsigned long long)((uint8_t *)&x)[n]) argument
/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/
Ddtc.h57 #define strprefixeq(a, n, b) (strlen(b) == (n) && (memcmp(a, b, n) == 0)) argument
179 #define for_each_property_withdel(n, p) \ argument
180 for ((p) = (n)->proplist; (p); (p) = (p)->next)
182 #define for_each_property(n, p) \ argument
183 for_each_property_withdel(n, p) \
186 #define for_each_child_withdel(n, c) \ argument
187 for ((c) = (n)->children; (c); (c) = (c)->next_sibling)
189 #define for_each_child(n, c) \ argument
190 for_each_child_withdel(n, c) \
225 cell_t propval_cell_n(struct property *prop, int n);
Dutil.c37 int n, size = 0; /* start with 128 bytes */ in xavsprintf_append() local
46 n = vsnprintf(NULL, 0, fmt, ap_copy) + 1; in xavsprintf_append()
49 p = xrealloc(p, size + n); in xavsprintf_append()
51 n = vsnprintf(p + size, n, fmt, ap); in xavsprintf_append()
59 int n; in xasprintf_append() local
63 n = xavsprintf_append(strp, fmt, ap); in xasprintf_append()
66 return n; in xasprintf_append()
71 int n; in xasprintf() local
77 n = xavsprintf_append(strp, fmt, ap); in xasprintf()
80 return n; in xasprintf()
Dlivetree.c441 cell_t propval_cell_n(struct property *prop, 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()
669 int n = 0, i = 0; in sort_reserve_entries() local
674 n++; in sort_reserve_entries()
676 if (n == 0) in sort_reserve_entries()
679 tbl = xmalloc(n * sizeof(*tbl)); in sort_reserve_entries()
686 qsort(tbl, n, sizeof(*tbl), cmp_reserve_info); in sort_reserve_entries()
689 for (i = 0; i < (n-1); i++) in sort_reserve_entries()
691 tbl[n-1]->next = NULL; in sort_reserve_entries()
[all …]
/scripts/gdb/linux/
Dlists.py73 n = c['next'].dereference()
93 if n['prev'] != c.address:
99 n_addr=n.address,
100 n=n,
110 c = n

123