/scripts/ |
D | cleanpatch | 193 my $l; 199 $l = $hunk_lines[$i]; 200 if (!$done && $l eq "+\n") { 202 } elsif ($l =~ /^[ +]/) { 204 unshift(@h, $l); 206 unshift(@h, $l); 210 $l = $hunk_lines[0]; # Hunk header 215 ($l =~ /^\@\@\s+\-([0-9]+),([0-9]+)\s+\+([0-9]+),([0-9]+)\s\@\@(.*)$/); 222 $l = sprintf("@@ -%d,%d +%d,%d @@%s\n", 226 unshift(@h, $l); [all …]
|
D | sign-file | 147 my $l = $len - 0x80; 148 die $x509, ": ", $cursor->[0], ": ASN.1 data underrun (len len $l)\n" 149 if ($cursor->[1] < $l); 151 if ($l == 0x1) { 153 } elsif ($l == 0x2) { 155 } elsif ($l == 0x3) { 158 } elsif ($l == 0x4) { 161 die $x509, ": ", $cursor->[0], ": ASN.1 element too long (", $l, ")\n"; 164 $cursor->[0] += $l; 165 $cursor->[1] -= $l;
|
D | bloat-o-meter | 18 for l in os.popen("nm --size-sort " + file).readlines(): 19 size, type, name = l[:-1].split()
|
D | Makefile.lib | 180 $(src)/%.lex.c_shipped: $(src)/%.l
|
D | checkpatch.pl | 548 my $l = '';
|
/scripts/coccinelle/iterators/ |
D | fen.cocci | 20 identifier l; 25 when != goto l; 33 identifier l; 38 when != goto l; 46 identifier l; 51 when != goto l; 59 identifier l; 64 when != goto l; 77 identifier l; 85 when != goto l; [all …]
|
/scripts/coccinelle/api/ |
D | devm_ioremap_resource.cocci | 23 identifier l; 36 goto l; 54 identifier l; 64 goto l; 70 identifier l; 81 goto l;
|
/scripts/dtc/ |
D | treesource.c | 240 struct label *l; in write_tree_source_node() local 243 for_each_label(tree->labels, l) in write_tree_source_node() 244 fprintf(f, "%s: ", l->label); in write_tree_source_node() 252 for_each_label(prop->labels, l) in write_tree_source_node() 253 fprintf(f, "%s: ", l->label); in write_tree_source_node() 273 struct label *l; in dt_to_source() local 275 for_each_label(re->labels, l) in dt_to_source() 276 fprintf(f, "%s: ", l->label); in dt_to_source()
|
D | dtc.h | 164 #define for_each_label_withdel(l0, l) \ argument 165 for ((l) = (l0); (l); (l) = (l)->next) 167 #define for_each_label(l0, l) \ argument 168 for_each_label_withdel(l0, l) \ 169 if (!(l)->deleted)
|
D | flattree.c | 197 struct label *l; in asm_emit_beginnode() local 199 for_each_label(labels, l) { in asm_emit_beginnode() 200 fprintf(f, "\t.globl\t%s\n", l->label); in asm_emit_beginnode() 201 fprintf(f, "%s:\n", l->label); in asm_emit_beginnode() 210 struct label *l; in asm_emit_endnode() local 214 for_each_label(labels, l) { in asm_emit_endnode() 215 fprintf(f, "\t.globl\t%s_end\n", l->label); in asm_emit_endnode() 216 fprintf(f, "%s_end:\n", l->label); in asm_emit_endnode() 223 struct label *l; in asm_emit_property() local 225 for_each_label(labels, l) { in asm_emit_property() [all …]
|
D | livetree.c | 141 struct label *l; in merge_nodes() local 146 for_each_label_withdel(new_node->labels, l) in merge_nodes() 147 add_label(&old_node->labels, l->label); in merge_nodes() 167 for_each_label_withdel(new_prop->labels, l) in merge_nodes() 168 add_label(&old_prop->labels, l->label); in merge_nodes() 389 struct label *l; in get_property_by_label() local 391 for_each_label(prop->labels, l) in get_property_by_label() 392 if (streq(l->label, label)) in get_property_by_label() 474 struct label *l; in get_node_by_label() local 478 for_each_label(tree->labels, l) in get_node_by_label() [all …]
|
D | dtc-lexer.lex.c_shipped | 610 #line 1 "dtc-lexer.l" 635 #line 38 "dtc-lexer.l" 855 #line 67 "dtc-lexer.l" 940 #line 68 "dtc-lexer.l" 950 #line 74 "dtc-lexer.l" 977 #line 95 "dtc-lexer.l" 987 #line 101 "dtc-lexer.l" 997 #line 108 "dtc-lexer.l" 1007 #line 115 "dtc-lexer.l" 1016 #line 121 "dtc-lexer.l" [all …]
|
D | checks.c | 343 struct label *l; in check_duplicate_label_node() local 345 for_each_label(node->labels, l) in check_duplicate_label_node() 346 check_duplicate_label(c, dt, l->label, node, NULL, NULL); in check_duplicate_label_node() 352 struct label *l; in check_duplicate_label_prop() local 354 for_each_label(prop->labels, l) in check_duplicate_label_prop() 355 check_duplicate_label(c, dt, l->label, node, prop, NULL); in check_duplicate_label_prop()
|
D | srcpos.c | 332 void srcpos_set_line(char *f, int l) in srcpos_set_line() argument 335 current_srcfile->lineno = l; in srcpos_set_line()
|
D | srcpos.h | 116 extern void srcpos_set_line(char *f, int l);
|
/scripts/kconfig/ |
D | util.c | 113 size_t l; in str_append() local 115 l = strlen(gs->s) + strlen(s) + 1; in str_append() 116 if (l > gs->len) { in str_append() 117 gs->s = realloc(gs->s, l); in str_append() 118 gs->len = l; in str_append()
|
D | confdata.c | 503 size_t l; in kconfig_print_comment() local 506 l = strcspn(p, "\n"); in kconfig_print_comment() 508 if (l) { in kconfig_print_comment() 510 xfwrite(p, l, 1, fp); in kconfig_print_comment() 511 p += l; in kconfig_print_comment() 575 size_t l; in header_print_comment() local 579 l = strcspn(p, "\n"); in header_print_comment() 581 if (l) { in header_print_comment() 583 xfwrite(p, l, 1, fp); in header_print_comment() 584 p += l; in header_print_comment()
|
D | conf.c | 60 int l; in strip() local 64 l = strlen(p); in strip() 66 memmove(str, p, l + 1); in strip() 67 if (!l) in strip() 69 p = str + l - 1; in strip()
|
D | expr.h | 49 #define expr_list_for_each_sym(l, e, s) \ argument 50 for (e = (l); e && (s = e->right.sym); e = e->left.expr)
|
D | symbol.c | 919 size_t l; in sym_escape_string_value() local 925 l = strcspn(p, "\"\\"); in sym_escape_string_value() 926 p += l; in sym_escape_string_value() 942 l = strcspn(p, "\"\\"); in sym_escape_string_value() 943 strncat(res, p, l); in sym_escape_string_value() 944 p += l; in sym_escape_string_value()
|
D | zconf.hash.c_shipped | 22 && ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \
|
/scripts/coccinelle/free/ |
D | kfree.cocci | 58 identifier l; 65 when != goto l;
|
/scripts/genksyms/ |
D | keywords.hash.c_shipped | 22 && ('k' == 107) && ('l' == 108) && ('m' == 109) && ('n' == 110) \
|