/scripts/ |
D | documentation-file-ref-check | 167 my $new =$ref; 174 $new =~ s,.*/,,; 188 my $search = $new; 201 $new =~ s/\.txt$/.rst/; 202 $f=qx(find $basedir -iname $new) if ($new); 207 $new =~ s/[-_]/[-_]/g; 208 $f=qx(find $basedir -iname $new) if ($new); 213 $f = qx(find $basedir -iname $new) if ($new);
|
D | bloat-o-meter | 44 new = getsizes(newfile, format) 50 if a in new: 60 for name in new: 61 ntot += new[name] 64 up += new[name] 65 delta.append((new[name], name)) 68 d = new.get(name, 0) - old.get(name, 0) 75 return grow, shrink, add, remove, up, down, delta, old, new, otot, ntot 78 grow, shrink, add, remove, up, down, delta, old, new, otot, ntot = \ 85 if d: print("%-40s %7s %7s %+7d" % (n, old.get(n,"-"), new.get(n,"-"), d))
|
D | stackdelta | 51 my $new = read_stack_usage_file($ARGV[1]); 52 my @common = sort grep {exists $new->{$_}} keys %$old; 55 my $y = $new->{$_}{size};
|
D | adjust_autoksyms.sh | 84 new=$(grep -c "^#define __KSYM_" "$new_ksyms_file" || true) 85 info "KSYMS" "symbols: before=$old, after=$new, changed=$changed"
|
D | Makefile.headersinst | 55 new-dirs := $(filter-out $(existing-dirs), $(wanted-dirs)) 56 $(if $(new-dirs), $(shell mkdir -p $(new-dirs)))
|
D | diffconfig | 128 new = sorted(b.keys()) 129 for config in new:
|
D | prune-kernel | 19 new-kernel-pkg --remove $f
|
D | Kbuild.include | 50 # The rule defined shall write to stdout the content of the new file. 51 # The existing file will be compared with the new one. 53 # - If the content differ the new file is used
|
D | checkpatch.pl | 5895 my $new = substr($old, 1, -1); 5897 "__section($new) is preferred over __attribute__((section($old)))\n" . $herecurr) && 5899 …nenr] =~ s/\b__attribute__\s*\(\s*\(\s*_*section_*\s*\(\s*\Q$old\E\s*\)\s*\)\s*\)/__section($new)/;
|
/scripts/dtc/ |
D | livetree.c | 15 struct label *new; in add_label() local 18 for_each_label_withdel(*labels, new) in add_label() 19 if (streq(new->label, label)) { in add_label() 20 new->deleted = 0; in add_label() 24 new = xmalloc(sizeof(*new)); in add_label() 25 memset(new, 0, sizeof(*new)); in add_label() 26 new->label = label; in add_label() 27 new->next = *labels; in add_label() 28 *labels = new; in add_label() 42 struct property *new = xmalloc(sizeof(*new)); in build_property() local [all …]
|
D | util.h | 40 void *new = malloc(len); in xmalloc() local 42 if (!new) in xmalloc() 45 return new; in xmalloc() 50 void *new = realloc(p, len); in xrealloc() local 52 if (!new) in xrealloc() 55 return new; in xrealloc()
|
D | flattree.c | 687 struct reserve_info *new; in flat_read_mem_reserve() local 705 new = build_reserve_entry(address, size); in flat_read_mem_reserve() 706 reservelist = add_reserve_entry(reservelist, new); in flat_read_mem_reserve()
|
D | dtc.h | 253 struct reserve_info *new);
|
/scripts/kconfig/tests/new_choice_with_dep/ |
D | Kconfig | 6 This is a new symbol. 20 This is a new symbol, so should be asked. 37 This is a new symbol, so should be asked.
|
/scripts/dtc/libfdt/ |
D | fdt_rw.c | 119 char *new; in fdt_find_add_string_() local 130 new = strtab + fdt_size_dt_strings(fdt); in fdt_find_add_string_() 137 memcpy(new, s, len); in fdt_find_add_string_() 138 return (new - strtab); in fdt_find_add_string_() 378 static void fdt_packblocks_(const char *old, char *new, in fdt_packblocks_() argument 387 memmove(new + mem_rsv_off, old + fdt_off_mem_rsvmap(old), mem_rsv_size); in fdt_packblocks_() 388 fdt_set_off_mem_rsvmap(new, mem_rsv_off); in fdt_packblocks_() 390 memmove(new + struct_off, old + fdt_off_dt_struct(old), struct_size); in fdt_packblocks_() 391 fdt_set_off_dt_struct(new, struct_off); in fdt_packblocks_() 392 fdt_set_size_dt_struct(new, struct_size); in fdt_packblocks_() [all …]
|
/scripts/atomic/fallbacks/ |
D | try_cmpxchg | 3 ${atomic}_try_cmpxchg${order}(${atomic}_t *v, ${int} *old, ${int} new) 6 r = ${atomic}_cmpxchg${order}(v, o, new);
|
/scripts/atomic/ |
D | atomics.tbl | 31 cmpxchg I v i:old i:new 32 try_cmpxchg B v p:old i:new
|
/scripts/gcc-plugins/ |
D | gcc-generate-rtl-pass.h | 123 virtual opt_pass *clone() { return new _PASS_NAME_PASS(); } 137 return new _PASS_NAME_PASS();
|
D | gcc-generate-simple_ipa-pass.h | 123 virtual opt_pass *clone() { return new _PASS_NAME_PASS(); } 137 return new _PASS_NAME_PASS();
|
D | gcc-generate-gimple-pass.h | 123 virtual opt_pass * clone () { return new _PASS_NAME_PASS(); } 137 return new _PASS_NAME_PASS();
|
D | gcc-generate-ipa-pass.h | 212 virtual opt_pass *clone() { return new _PASS_NAME_PASS(); } 226 return new _PASS_NAME_PASS();
|
/scripts/package/ |
D | mkspec | 120 if [ -x /sbin/new-kernel-pkg ]; then 121 new-kernel-pkg --remove $KERNELRELEASE --rminitrd --initrdfile=/boot/initramfs-$KERNELRELEASE.img
|
/scripts/mod/ |
D | modpost.c | 220 struct symbol *new; in new_symbol() local 223 new = symbolhash[hash] = alloc_symbol(name, 0, symbolhash[hash]); in new_symbol() 224 new->module = module; in new_symbol() 225 new->export = export; in new_symbol() 226 return new; in new_symbol()
|