/scripts/ |
A D | cleanpatch | 195 my $l; 201 $l = $hunk_lines[$i]; 202 if (!$done && $l eq "+\n") { 204 } elsif ($l =~ /^[ +]/) { 206 unshift(@h, $l); 208 unshift(@h, $l); 212 $l = $hunk_lines[0]; # Hunk header 228 unshift(@h, $l); 231 foreach $l (@h) { 232 $out_bytes += length($l); [all …]
|
A D | ssl-common.h | 6 static void drain_openssl_errors(int l, int silent) in drain_openssl_errors() argument 15 fprintf(stderr, "At main.c:%d:\n", l); in drain_openssl_errors()
|
A D | tags.sh | 55 find ${tree}arch/$1 $ignore $prune -name "$2" -not -type l -print; 64 find $include $ignore -name "$2" -not -type l -print; 72 -not -type l -print; 81 -name "$1" -not -type l -print; 121 -name "Kconfig*" -not -type l -print;
|
A D | insert-sys-cert.c | 96 char l[LINE_SIZE]; in get_symbol_from_map() local 106 while (fgets(l, LINE_SIZE, f)) { in get_symbol_from_map() 107 p = strchr(l, '\n'); in get_symbol_from_map() 112 n = strstr(l, name); in get_symbol_from_map() 120 w = strchr(l, ' '); in get_symbol_from_map() 125 s->address = strtoul(l, NULL, 16); in get_symbol_from_map()
|
A D | spdxcheck.py | 63 for l in open(el.path, encoding="utf-8").readlines(): 64 if l.startswith('Valid-License-Identifier:'): 65 lid = l.split(':')[1].strip().upper() 71 elif l.startswith('SPDX-Exception-Identifier:'): 72 exception = l.split(':')[1].strip().upper() 75 elif l.startswith('SPDX-Licenses:'): 76 … for lic in l.split(':')[1].upper().strip().replace(' ', '').replace('\t', '').split(','): 81 elif l.startswith("License-Text:"):
|
A D | checkstack.pl | 86 $re = qr/.*l\.addi.*r1,r1,-([0-9]{1,8})/o;
|
/scripts/dtc/ |
A D | treesource.c | 144 int l, len = prop->val.len; in add_string_markers() local 147 for (l = strlen(p) + 1; l < len; l += strlen(p + l) + 1) { in add_string_markers() 151 m->offset = l; in add_string_markers() 303 struct label *l; in write_tree_source_node() local 307 for_each_label(tree->labels, l) in write_tree_source_node() 308 fprintf(f, "%s: ", l->label); in write_tree_source_node() 325 for_each_label(prop->labels, l) in write_tree_source_node() 326 fprintf(f, "%s: ", l->label); in write_tree_source_node() 353 struct label *l; in dt_to_source() local 355 for_each_label(re->labels, l) in dt_to_source() [all …]
|
A D | dtc.h | 239 #define for_each_label_withdel(l0, l) \ argument 240 for ((l) = (l0); (l); (l) = (l)->next) 242 #define for_each_label(l0, l) \ argument 243 for_each_label_withdel(l0, l) \ 244 if (!(l)->deleted)
|
A D | flattree.c | 175 struct label *l; in asm_emit_beginnode() local 177 for_each_label(labels, l) { in asm_emit_beginnode() 179 fprintf(f, "%s:\n", l->label); in asm_emit_beginnode() 188 struct label *l; in asm_emit_endnode() local 192 for_each_label(labels, l) { in asm_emit_endnode() 201 struct label *l; in asm_emit_property() local 203 for_each_label(labels, l) { in asm_emit_property() 205 fprintf(f, "%s:\n", l->label); in asm_emit_property() 518 struct label *l; in dt_to_asm() local 520 for_each_label(re->labels, l) { in dt_to_asm() [all …]
|
A D | livetree.c | 146 struct label *l; in merge_nodes() local 457 struct label *l; in get_property_by_label() local 459 for_each_label(prop->labels, l) in get_property_by_label() 460 if (streq(l->label, label)) in get_property_by_label() 542 struct label *l; in get_node_by_label() local 546 for_each_label(tree->labels, l) in get_node_by_label() 547 if (streq(l->label, label)) in get_node_by_label() 865 struct label *l; in generate_label_tree_internal() local 874 p = get_property(an, l->label); in generate_label_tree_internal() 877 " exists in /%s", l->label, in generate_label_tree_internal() [all …]
|
A D | util.c | 446 int l = strlen(long_opts[i].name) + 1; in util_usage() local 448 l += a_arg_len; in util_usage() 449 if (optlen < l) in util_usage() 450 optlen = l; in util_usage()
|
A D | srcpos.h | 101 extern void srcpos_set_line(char *f, int l);
|
A D | srcpos.c | 399 void srcpos_set_line(char *f, int l) in srcpos_set_line() argument 402 current_srcfile->lineno = l; in srcpos_set_line()
|
/scripts/kconfig/ |
A D | util.c | 70 size_t l; in str_append() local 72 l = strlen(gs->s) + strlen(s) + 1; in str_append() 73 if (l > gs->len) { in str_append() 74 gs->s = xrealloc(gs->s, l); in str_append() 75 gs->len = l; in str_append()
|
A D | expr.c | 48 e->left._initdata = l; in expr_lookup() 103 struct expr *l, *r; in __expr_eliminate_eq() local 108 l = (*ep1)->left.expr; in __expr_eliminate_eq() 116 l = (*ep2)->left.expr; in __expr_eliminate_eq() 269 struct expr *l, *r; in expr_eliminate_yn() local 277 return l; in expr_eliminate_yn() 285 return l; in expr_eliminate_yn() 295 return l; in expr_eliminate_yn() 299 return l; in expr_eliminate_yn() 486 l = (*ep1)->left.expr; in expr_eliminate_dups1() [all …]
|
A D | conf.c | 63 int l; in strip() local 67 l = strlen(p); in strip() 69 memmove(str, p, l + 1); in strip() 70 if (!l) in strip() 72 p = str + l - 1; in strip()
|
/scripts/coccinelle/misc/ |
A D | do_div.cocci | 67 long l: script:python() { filter_out_safe_constants(l) }; 74 * do_div(f, l); 86 long l: script:python() { filter_out_safe_constants(l) }; 92 do_div@p(f, l); 110 l << r.l; 138 l << r.l;
|
/scripts/genksyms/ |
A D | keywords.c | 80 int l = strlen(r->name); in is_reserved_word() local 81 if (len == l && !memcmp(str, r->name, len)) in is_reserved_word()
|
/scripts/coccinelle/iterators/ |
A D | for_each_child.cocci | 116 identifier l; 131 ? goto l; 136 l: ... when != n 240 identifier l; 258 goto l@j3; 263 l: 274 identifier l; 285 *goto l@j3; 289 l:
|
/scripts/package/ |
A D | install-extmod-build | 15 ! -name unifdef -a ! -name mk_elfconfig -a \( -type f -o -type l \) -print 26 find include \( -name config -o -name generated \) -prune -o \( -type f -o -type l \) -print
|
/scripts/clang-tools/ |
A D | run-clang-tools.py | 44 def init(l, a): argument 47 lock = l
|
/scripts/atomic/ |
A D | atomics.tbl | 11 # * l - load: returns base type (has _acquire order variant) 20 read l cv
|
A D | atomic-tbl.sh | 179 [l])
|
/scripts/coccinelle/free/ |
A D | kfree.cocci | 63 identifier l; 74 when != goto l;
|
/scripts/lib/kdoc/ |
A D | kdoc_re.py | 267 l = len(line) 268 out += line[cur_pos:l]
|