Home
last modified time | relevance | path

Searched refs:f (Results 1 – 25 of 45) sorted by relevance

12

/scripts/dtc/
Dtreesource.c37 yyin = current_srcfile->f; in dt_from_source()
49 static void write_prefix(FILE *f, int level) in write_prefix() argument
54 fputc('\t', f); in write_prefix()
64 static void write_propval_string(FILE *f, struct data val) in write_propval_string() argument
74 fprintf(f, "%s: ", m->ref); in write_propval_string()
77 fprintf(f, "\""); in write_propval_string()
84 fprintf(f, "\\a"); in write_propval_string()
87 fprintf(f, "\\b"); in write_propval_string()
90 fprintf(f, "\\t"); in write_propval_string()
93 fprintf(f, "\\n"); in write_propval_string()
[all …]
Dflattree.c117 static void emit_label(FILE *f, const char *prefix, const char *label) in emit_label() argument
119 fprintf(f, "\t.globl\t%s_%s\n", prefix, label); in emit_label()
120 fprintf(f, "%s_%s:\n", prefix, label); in emit_label()
121 fprintf(f, "_%s_%s:\n", prefix, label); in emit_label()
124 static void emit_offset_label(FILE *f, const char *label, int offset) in emit_offset_label() argument
126 fprintf(f, "\t.globl\t%s\n", label); in emit_offset_label()
127 fprintf(f, "%s\t= . + %d\n", label, offset); in emit_offset_label()
130 #define ASM_EMIT_BELONG(f, fmt, ...) \ argument
132 fprintf((f), "\t.byte\t((" fmt ") >> 24) & 0xff\n", __VA_ARGS__); \
133 fprintf((f), "\t.byte\t((" fmt ") >> 16) & 0xff\n", __VA_ARGS__); \
[all …]
Dupdate-dtc-source.sh45 for f in $DTC_SOURCE; do
46 cp ${DTC_UPSTREAM_PATH}/${f} ${f}
47 git add ${f}
49 for f in $DTC_GENERATED; do
50 cp ${DTC_UPSTREAM_PATH}/$f ${f}_shipped
51 git add ${f}_shipped
Dsrcpos.c119 FILE *f; in srcfile_relative_open() local
123 f = stdin; in srcfile_relative_open()
126 fullname = fopen_any_on_path(fname, &f); in srcfile_relative_open()
127 if (!f) in srcfile_relative_open()
140 return f; in srcfile_relative_open()
152 srcfile->f = srcfile_relative_open(fname, &srcfile->name); in srcfile_push()
170 if (fclose(srcfile->f)) in srcfile_pop()
332 void srcpos_set_line(char *f, int l) in srcpos_set_line() argument
334 current_srcfile->name = f; in srcpos_set_line()
Ddtc-parser.y228 FILE *f = srcfile_relative_open($4.val, NULL); variable
232 if (fseek(f, $6, SEEK_SET) != 0)
238 d = data_copy_file(f, $8);
241 fclose(f);
245 FILE *f = srcfile_relative_open($4.val, NULL); variable
248 d = data_copy_file(f, -1);
251 fclose(f);
Ddtc.h105 struct data data_copy_file(FILE *f, size_t len);
255 void dt_to_blob(FILE *f, struct boot_info *bi, int version);
256 void dt_to_asm(FILE *f, struct boot_info *bi, int version);
262 void dt_to_source(FILE *f, struct boot_info *bi);
263 struct boot_info *dt_from_source(const char *f);
Dsrcpos.h26 FILE *f; member
116 extern void srcpos_set_line(char *f, int l);
/scripts/coccinelle/null/
Dbadzero.cocci27 identifier f;
31 (E = f(...)) ==
35 (E = f(...)) !=
41 == (E = f(...))
45 != (E = f(...))
51 identifier f;
56 (E = f(...)) ==
59 (E = f(...)) !=
63 == (E = f(...))
66 != (E = f(...))
[all …]
Dderef_null.cocci29 identifier f;
33 (E != NULL && ...) ? <+...E->f@p1...+> : ...
37 identifier f;
42 (E != NULL) && ... && <+...E->f@p2...+>
44 (E == NULL) || ... || <+...E->f@p2...+>
46 sizeof(<+...E->f@p2...+>)
55 identifier f;
84 E->f@p // bad use
116 identifier f;
145 E->f@p // bad use
[all …]
Dkmerr.cocci22 identifier f,fld;
25 x@p = f(...);
34 identifier f;
39 *x1@p = f(...);
50 identifier f;
55 x1@p = f@p2(...);
/scripts/
Dcheckincludes.pl41 open(my $f, '<', $file)
47 while (<$f>) {
54 close($f);
65 open($f, '>', $file)
77 print {$f} $_;
82 print {$f} $_;
88 close($f);
Dcleanpatch95 foreach $f ( @files ) {
96 print STDERR "$name: $f\n";
98 if (! -f $f) {
99 print STDERR "$f: not a file\n";
103 if (!open(FILE, '+<', $f)) {
104 print STDERR "$name: Cannot open file: $f: $!\n";
123 print STDERR "$name: $f: binary file\n";
168 "$f:$lineno: adds line exceeds $max_width ",
181 print STDERR "$name: $f: malformed patch\n";
187 print STDERR "$name: $f: malformed patch\n";
[all …]
Dcleanfile95 foreach $f ( @files ) {
96 print STDERR "$name: $f\n";
98 if (! -f $f) {
99 print STDERR "$f: not a file\n";
103 if (!open(FILE, '+<', $f)) {
104 print STDERR "$name: Cannot open file: $f: $!\n";
123 print STDERR "$name: $f: binary file\n";
158 "$f:$lineno: line exceeds $max_width characters ($l_width)\n";
171 die "$name: Failed to truncate modified file: $f: $!\n";
Dcheckversion.pl17 open( my $f, '<', $file )
24 while (<$f>) {
70 close($f);
DMakefile.fwinst66 cmd_files := $(wildcard $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
DMakefile.headersinst95 cmd_check = for f in $(all-files); do \
96 echo "$(installdir)/$${f}"; done \
132 $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
Dcoccicheck174 for f in `find $srctree/scripts/coccinelle/ -name '*.cocci' -type f | sort`; do
175 coccinelle $f
DMakefile.modpost142 cmd_files := $(wildcard $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
Dobjdiff80 for f in $(find $d -name '*.o')
82 do_objdump $f
DKbuild.include60 rm -f $@.tmp; \
63 mv -f $@.tmp $@; \
96 rm -f "$$TMP" "$$TMPO")
171 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj=
174 build := -f $(srctree)/scripts/Makefile.build obj
177 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.modbuiltin obj=
180 modbuiltin := -f $(srctree)/scripts/Makefile.modbuiltin obj
242 rm -f $(depfile); \
243 mv -f $(dot-target).tmp $(dot-target).cmd)
/scripts/coccinelle/api/
Dsimple_open.cocci14 identifier i, f;
16 -int open_f(struct inode *i, struct file *f)
20 -f->private_data = i->i_private;
22 -f->private_data = i->i_private;
40 identifier i, f;
43 int open_f@p(struct inode *i, struct file *f)
47 f->private_data = i->i_private;
49 f->private_data = i->i_private;
/scripts/coccinelle/misc/
Dnoderef.cocci18 expression f;
28 f(...,(T)(x),...,sizeof(
33 f(...,sizeof(x),...,(T)(
41 expression f;
49 *f(...,(T)(x),...,sizeof@p(x),...)
51 *f(...,sizeof@p(x),...,(T)(x),...)
Dsimple_return.cocci18 identifier i,f,fn;
24 f(...);
49 identifier i,f,fn;
54 * e@i@p = f(...);
64 expression e,f;
69 e@p = f(...);
/scripts/genksyms/
Dgenksyms.c69 static void print_list(FILE * f, struct string_list *list);
420 static struct string_list *read_node(FILE *f) in read_node() argument
428 while ((c = fgetc(f)) != EOF) { in read_node()
436 ungetc(c, f); in read_node()
466 static void read_reference(FILE *f) in read_reference() argument
468 while (!feof(f)) { in read_reference()
474 sym = read_node(f); in read_reference()
479 sym = read_node(f); in read_reference()
483 def = read_node(f); in read_reference()
488 def = read_node(f); in read_reference()
[all …]
/scripts/coccinelle/free/
Dkfreeaddr.cocci15 identifier f;
19 * kfree@p(&e->f)

12