/scripts/kconfig/ |
D | zconf.l | 71 ws [ \n\t] 72 n [A-Za-z0-9_] 78 [ \t]*#.*\n | 79 [ \t]*\n { 97 {n}+ { 111 \n { 131 \n BEGIN(INITIAL); current_file->lineno++; return T_EOL; 133 ({n}|[-/.])+ { 144 \\\n current_file->lineno++; 177 printf("%s:%d:warning: multi-line strings not supported\n", zconf_curname(), zconf_lineno()); [all …]
|
D | list.h | 60 #define list_for_each_entry_safe(pos, n, head, member) \ argument 62 n = list_entry(pos->member.next, typeof(*pos), member); \ 64 pos = n, n = list_entry(n->member.next, typeof(*n), member))
|
D | zconf.tab.c_shipped | 272 # define YYID(n) (n) 911 YYFPRINTF (stderr, "\n"); \ 996 YYFPRINTF (stderr, "\n"); 1024 YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", 1033 YYFPRINTF (stderr, "\n"); 1311 fprintf(stderr, "%s:%d: missing end statement for this entry\n", 1321 fprintf(stderr, "%s:%d: missing end statement for this entry\n", 1331 fprintf(stderr, "%s:%d: missing end statement for this entry\n", 1448 YYDPRINTF ((stderr, "Starting parse\n")); 1529 YYDPRINTF ((stderr, "Stack size increased to %lu\n", [all …]
|
D | confdata.c | 186 static int add_byte(int c, char **lineptr, size_t slen, size_t *n) in add_byte() argument 190 if (new_size > *n) { in add_byte() 198 *n = new_size; in add_byte() 206 static ssize_t compat_getline(char **lineptr, size_t *n, FILE *stream) in compat_getline() argument 216 if (add_byte(c, &line, slen, n) < 0) in compat_getline() 221 if (add_byte('\0', &line, slen, n) < 0) in compat_getline() 228 if (add_byte(c, &line, slen, n) < 0) in compat_getline() 1118 int n, p[3]; in conf_set_all_new_symbols() local 1120 n = 0; in conf_set_all_new_symbols() 1125 p[n++] = tmp; in conf_set_all_new_symbols() [all …]
|
D | zconf.lex.c_shipped | 182 #define YY_LESS_LINENO(n) 184 /* Return all but the first "n" matched characters back to the input stream. */ 185 #define yyless(n) \ 189 int yyless_macro_arg = (n); \ 353 #define zconfwrap(n) 1 1243 printf("%s:%d:warning: multi-line strings not supported\n", zconf_curname(), zconf_lineno()); 1297 append_string("\n", 1); 2070 yy_size_t n; 2074 n = _yybytes_len + 2; 2075 buf = (char *) zconfalloc(n ); [all …]
|
/scripts/genksyms/ |
D | genksyms.c | 57 int n; member 365 struct string_list *n, *n2; in concat_list() local 369 for (va_start(ap, start); (n = va_arg(ap, struct string_list *));) { in concat_list() 370 for (n2 = n; n2->next; n2 = n2->next) in concat_list() 373 start = n; in concat_list() 393 struct string_list *res, *n; in copy_list_range() local 397 n = res = copy_node(start); in copy_list_range() 399 n->next = copy_node(start); in copy_list_range() 400 n = n->next; in copy_list_range() 402 n->next = NULL; in copy_list_range() [all …]
|
D | lex.l | 67 ^#[ \t]+{INT}[ \t]+\"[^\"\n]+\".*\n return FILENAME; 68 ^#.*\n cur_line++; 69 \n cur_line++;
|
D | lex.lex.c_shipped | 163 #define YY_LESS_LINENO(n) 165 /* Return all but the first "n" matched characters back to the input stream. */ 166 #define yyless(n) \ 170 int yyless_macro_arg = (n); \ 334 #define yywrap(n) 1 674 int n; \ 675 for ( n = 0; n < max_size && \ 676 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ 677 buf[n] = (char) c; \ 678 if ( c == '\n' ) \ [all …]
|
/scripts/dtc/ |
D | livetree.c | 596 int n = 0, i = 0; in sort_reserve_entries() local 601 n++; in sort_reserve_entries() 603 if (n == 0) in sort_reserve_entries() 606 tbl = xmalloc(n * sizeof(*tbl)); in sort_reserve_entries() 613 qsort(tbl, n, sizeof(*tbl), cmp_reserve_info); in sort_reserve_entries() 616 for (i = 0; i < (n-1); i++) in sort_reserve_entries() 618 tbl[n-1]->next = NULL; in sort_reserve_entries() 635 int n = 0, i = 0; in sort_properties() local 639 n++; in sort_properties() 641 if (n == 0) in sort_properties() [all …]
|
D | dtc.h | 66 #define strneq(a, b, n) (strncmp((a), (b), (n)) == 0) argument 171 #define for_each_property_withdel(n, p) \ argument 172 for ((p) = (n)->proplist; (p); (p) = (p)->next) 174 #define for_each_property(n, p) \ argument 175 for_each_property_withdel(n, p) \ 178 #define for_each_child_withdel(n, c) \ argument 179 for ((c) = (n)->children; (c); (c) = (c)->next_sibling) 181 #define for_each_child(n, c) \ argument 182 for_each_child_withdel(n, c) \
|
D | dtc-lexer.lex.c_shipped | 173 #define YY_LESS_LINENO(n) 175 /* Return all but the first "n" matched characters back to the input stream. */ 176 #define yyless(n) \ 180 int yyless_macro_arg = (n); \ 344 #define yywrap(n) 1 658 #define BEGIN_DEFAULT() DPRINT("<V1>\n"); \ 770 size_t n; \ 771 for ( n = 0; n < max_size && \ 772 (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ 773 buf[n] = (char) c; \ [all …]
|
D | checks.c | 279 int n = strspn(node->name, c->data); in check_node_name_chars() local 281 if (n < strlen(node->name)) in check_node_name_chars() 283 node->name[n], node->fullpath); in check_node_name_chars() 299 int n = strspn(prop->name, c->data); in check_property_name_chars() local 301 if (n < strlen(prop->name)) in check_property_name_chars() 303 prop->name[n], prop->name, node->fullpath); in check_property_name_chars() 535 #define node_addr_cells(n) \ argument 536 (((n)->addr_cells == -1) ? 2 : (n)->addr_cells) 537 #define node_size_cells(n) \ argument 538 (((n)->size_cells == -1) ? 1 : (n)->size_cells)
|
/scripts/dtc/libfdt/ |
D | libfdt_internal.h | 80 static inline const struct fdt_reserve_entry *_fdt_mem_rsv(const void *fdt, int n) in _fdt_mem_rsv() argument 86 return rsv_table + n; in _fdt_mem_rsv() 88 static inline struct fdt_reserve_entry *_fdt_mem_rsv_w(void *fdt, int n) in _fdt_mem_rsv_w() argument 90 return (void *)(uintptr_t)_fdt_mem_rsv(fdt, n); in _fdt_mem_rsv_w()
|
D | libfdt_env.h | 8 #define EXTRACT_BYTE(n) ((unsigned long long)((uint8_t *)&x)[n]) argument
|
D | fdt_ro.c | 91 int fdt_get_mem_rsv(const void *fdt, int n, uint64_t *address, uint64_t *size) in fdt_get_mem_rsv() argument 94 *address = fdt64_to_cpu(_fdt_mem_rsv(fdt, n)->address); in fdt_get_mem_rsv() 95 *size = fdt64_to_cpu(_fdt_mem_rsv(fdt, n)->size); in fdt_get_mem_rsv()
|
/scripts/ |
D | bloat-o-meter | 61 for d, n in delta: 62 if d: print "%-40s %7s %7s %+7d" % (n, old.get(n,"-"), new.get(n,"-"), d)
|
D | checkpatch.pl | 499 my $n = 0; 503 $n++; 504 for (; ($n % 8) != 0; $n++) { 510 $n++; 2544 for (my $n = 0; $n < $#elements; $n += 2) { 2545 $off += length($elements[$n]); 2550 if (length($opline) >= ($off + length($elements[$n + 1]))) { 2551 $cc = substr($opline, $off + length($elements[$n + 1])); 2556 $a = 'V' if ($elements[$n] ne ''); 2557 $a = 'W' if ($elements[$n] =~ /\s$/); [all …]
|
D | asn1_compiler.c | 522 int n; in tokenise() 523 for (n = 0; n < nr_tokens; n++) in tokenise() 525 n, in tokenise() 526 (int)token_list[n].size, (int)token_list[n].size, in tokenise() 527 token_list[n].value); in tokenise() 711 unsigned nr, t, n; in build_type_list() local 714 for (n = 0; n < nr_tokens - 1; n++) in build_type_list() 715 if (token_list[n + 0].token_type == TOKEN_TYPE_NAME && in build_type_list() 716 token_list[n + 1].token_type == TOKEN_ASSIGNMENT) in build_type_list() 738 for (n = 0; n < nr_tokens - 1; n++) { in build_type_list() [all …]
|
D | recordmcount.c | 100 size_t const n = read(fd, buf, count); in uread() local 101 if (n != count) { in uread() 105 return n; in uread() 111 size_t const n = write(fd, buf, count); in uwrite() local 112 if (n != count) { in uwrite() 116 return n; in uwrite()
|
D | gcc-x86_32-has-stack-protector.sh | 7 echo n
|
D | gcc-x86_64-has-stack-protector.sh | 7 echo n
|
D | config | 21 --state|-s option Print state of option (n,y,m,undef)
|
/scripts/kconfig/lxdialog/ |
D | util.c | 663 int n = 0; in item_count() local 667 n++; in item_count() 668 return n; in item_count() 671 void item_set(int n) in item_set() argument 675 if (i++ == n) in item_set() 681 int n = 0; in item_n() local 686 return n; in item_n() 687 n++; in item_n()
|
D | textbox.c | 24 static void back_lines(int n); 280 static void back_lines(int n) in back_lines() argument 286 for (i = 0; i < n; i++) { in back_lines()
|
D | menubox.c | 171 static void do_scroll(WINDOW *win, int *scroll, int n) in do_scroll() argument 175 wscrl(win, n); in do_scroll() 177 *scroll = *scroll + n; in do_scroll()
|