| /scripts/dtc/ |
| A D | data.c | 47 nd = d; in data_grow_for() 68 return d; in data_copy_mem() 105 d = data_grow_for(d, chunksize); in data_copy_file() 106 ret = fread(d.val + d.len, 1, chunksize, f); in data_copy_file() 111 if (d.len + ret < d.len) in data_copy_file() 122 d = data_grow_for(d, len); in data_append_data() 123 memcpy(d.val + d.len, p, len); in data_append_data() 131 d = data_grow_for(d, len); in data_insert_at_marker() 132 memmove(d.val + m->offset + len, d.val + m->offset, d.len - m->offset); in data_insert_at_marker() 227 d = data_grow_for(d, len); in data_append_zeroes() [all …]
|
| A D | dtc.h | 102 void data_free(struct data d); 104 struct data data_grow_for(struct data d, int xlen); 110 struct data data_append_data(struct data d, const void *p, int len); 111 struct data data_insert_at_marker(struct data d, struct marker *m, 114 struct data data_append_cell(struct data d, cell_t word); 115 struct data data_append_integer(struct data d, uint64_t word, int bits); 117 struct data data_append_addr(struct data d, uint64_t addr); 118 struct data data_append_byte(struct data d, uint8_t byte); 119 struct data data_append_zeroes(struct data d, int len); 120 struct data data_append_align(struct data d, int align); [all …]
|
| A D | fstree.c | 28 DIR *d; in read_fstree() local 33 d = opendir(dirname); in read_fstree() 34 if (!d) in read_fstree() 39 while ((de = readdir(d)) != NULL) { in read_fstree() 78 closedir(d); in read_fstree()
|
| A D | dtc-lexer.l | 192 struct data d; variable 195 d = data_copy_escape_string(yytext+1, yyleng-2); 196 if (d.len == 1) { 200 yylval.integer = (unsigned char)d.val[0]; 202 if (d.len > 2) 205 d.len - 1); 208 data_free(d);
|
| A D | flattree.c | 89 *dtbuf = data_append_data(*dtbuf, d.val, d.len); in bin_emit_data() 178 while ((d.len - off) >= 1) { in asm_emit_data() 183 assert(off == d.len); in asm_emit_data() 246 *d = data_append_data(*d, str, strlen(str)+1); in stringtable_insert() 312 struct data d = empty_data; in flatten_reserve_list() local 316 d = data_append_re(d, re->address, re->size); in flatten_reserve_list() 322 d = data_append_re(d, 0, 0); in flatten_reserve_list() 325 return d; in flatten_reserve_list() 649 d = data_grow_for(d, len); in flat_read_data() 650 d.len = len; in flat_read_data() [all …]
|
| A D | util.c | 42 char *d = xmalloc(len); in xstrdup() local 44 memcpy(d, s, len); in xstrdup() 46 return d; in xstrdup() 52 char *d = xmalloc(len); in xstrndup() local 54 memcpy(d, s, len - 1); in xstrndup() 55 d[len - 1] = '\0'; in xstrndup() 57 return d; in xstrndup()
|
| A D | dtc-parser.y | 308 struct data d; variable 316 d = data_copy_file(f, $8); 318 $$ = data_merge($1, d); 324 struct data d = empty_data; variable 326 d = data_copy_file(f, -1); 328 $$ = data_merge($1, d);
|
| A D | livetree.c | 238 struct data d = empty_data; in add_orphan_node() local 242 d = data_append_data(d, ref, strlen(ref) + 1); in add_orphan_node() 244 p = build_property("target-path", d); in add_orphan_node() 246 d = data_add_marker(d, REF_PHANDLE, ref); in add_orphan_node() 247 d = data_append_integer(d, 0xffffffff, 32); in add_orphan_node() 249 p = build_property("target", d); in add_orphan_node() 345 struct data d; in append_to_property() local 350 d = data_append_data(p->val, data, len); in append_to_property() 351 p->val = d; in append_to_property() 353 d = data_append_data(empty_data, data, len); in append_to_property() [all …]
|
| /scripts/ |
| A D | objdiff | 81 for d in $FILES; do 82 if [ -d "$d" ]; then 83 for f in $(find $d -name '*.o') 88 do_objdump $d
|
| A D | documentation-file-ref-check | 25 if (! -d ".git") { 53 my $d = $1; 58 $d =~ s,(.*/).*,$1,; 61 $f ="$d$f.rst";
|
| A D | cleanpatch | 222 $l = sprintf("@@ -%d,%d +%d,%d @@%s\n",
|
| A D | get_maintainer.pl | 366 if ((-d $value)) { 406 if (-d $path) { 536 if ((-d $file)) { 727 if ((-d $value)) { 1134 && (-d "${lk_path}arch") 1137 && (-d "${lk_path}doc") 1139 && (-d "${lk_path}dts") 1140 && (-d "${lk_path}fs") 1141 && (-d "${lk_path}lib") 1143 && (-d "${lk_path}net") [all …]
|
| A D | gen_compile_commands.py | 88 exclude_dirs = [ os.path.join(directory, d) for d in _EXCLUDE_DIRS ]
|
| A D | coreboot.sed | 11 /REG_SCRIPT_END/d
|
| A D | make_pip.sh | 89 for subdir in $(find . -maxdepth 1 -type d | \
|
| A D | spdxcheck.py | 41 for d in license_dirs: 42 for el in lictree[d].traverse():
|
| A D | kernel-doc | 512 printf STDERR "Warning: Sphinx version not found. Using default (Sphinx version %d.%d.%d)\n",
|
| A D | Kbuild.include | 20 depfile = $(subst $(comma),_,$(dot-target).d) 269 # Execute the command and also postprocess generated .d dependencies file.
|
| A D | checkpatch.pl | 1144 my $date = POSIX::strftime("%Y%m%d%H%M",
|
| /scripts/kconfig/ |
| A D | zconf.l | 217 "%s:%d:warning: multi-line strings not supported\n", 418 fprintf(stderr, " included from: %s:%d\n",
|
| A D | confdata.c | 911 char *s, *d, c; in conf_split_config() local 978 d = path; in conf_split_config() 981 *d++ = (c == '_') ? '/' : c; in conf_split_config() 983 strcpy(d, ".h"); in conf_split_config()
|
| A D | qconf.cc | 1342 QDesktopWidget *d = configApp->desktop(); in ConfigMainWindow() local 1349 width = configSettings->value("/window width", d->width() - 64).toInt(); in ConfigMainWindow() 1350 height = configSettings->value("/window height", d->height() - 64).toInt(); in ConfigMainWindow()
|
| /scripts/dtc/pylibfdt/ |
| A D | libfdt.i_shipped | 71 return 'pylibfdt error %d: %s' % (self.err, fdt_strerror(self.err))
|