/scripts/atomic/ |
D | atomics.tbl | 8 # * I/i - int: returns base type 9 # * R - return: returns base type (has _return variants) 10 # * F/f - fetch: returns base type (has fetch_ variants) 11 # * l - load: returns base type (has _acquire order variant) 15 # * cv - const pointer to atomic base type (atomic_t/atomic64_t/atomic_long_t) 16 # * v - pointer to atomic base type (atomic_t/atomic64_t/atomic_long_t) 17 # * i - base type (int/s64/long) 18 # * p - pointer to base type (int/s64/long)
|
D | atomic-tbl.sh | 47 local base="" 55 for base in "${pfx}${name}${sfx}${order}" "${name}"; do 56 file="${ATOMICDIR}/fallbacks/${base}"
|
/scripts/gdb/linux/ |
D | timerlist.py | 45 def print_active_timers(base): argument 46 curr = base['active']['next']['node'] 55 def print_base(base): argument 56 text = " .base: {}\n".format(base.address) 57 text += " .index: {}\n".format(base['index']) 61 text += " .get_time: {}\n".format(base['get_time']) 63 text += " .offset: {} nsecs\n".format(base['offset']) 65 text += "".join([x for x in print_active_timers(base)])
|
/scripts/ |
D | objdiff | 59 base=${1##*/} 60 stripped=$dir/${base%.o}.stripped 61 dis=$dir/${base%.o}.dis
|
D | documentation-file-ref-check | 106 my $base = $2; 129 $base =~ s,.*/,,;
|
D | Makefile.lib | 86 base-dtb-y := $(foreach m, $(multi-dtb-y), $(firstword $(call suffix-search, $m, .dtb, -dtbs))) 321 DTC_FLAGS += $(if $(filter $(patsubst $(obj)/%,%,$@), $(base-dtb-y)), -@)
|
/scripts/clang-tools/ |
D | gen_compile_commands.py | 108 dir, base = os.path.split(path) 109 return os.path.join(dir, '.' + base + '.cmd') 156 base, ext = os.path.splitext(ko) 159 mod = base + '.mod'
|
/scripts/dtc/libfdt/ |
D | fdt.c | 58 uint32_t base, uint32_t size) in check_block_() argument 60 if (!check_off_(hdrsize, totalsize, base)) in check_block_() 62 if ((base + size) < base) in check_block_() 64 if (!check_off_(hdrsize, totalsize, base + size)) in check_block_()
|
/scripts/dtc/ |
D | fdtoverlay.c | 45 static void *apply_one(char *base, const char *overlay, size_t *buf_len, in apply_one() argument 60 ret = fdt_open_into(base, tmp, *buf_len); in apply_one() 82 free(base); in apply_one()
|
D | flattree.c | 566 char *base, *limit, *ptr; member 569 static void inbuf_init(struct inbuf *inb, void *base, void *limit) in inbuf_init() argument 571 inb->base = base; in inbuf_init() 573 inb->ptr = inb->base; in inbuf_init() 590 assert(((inb->ptr - inb->base) % sizeof(val)) == 0); in flat_read_word() 599 int off = inb->ptr - inb->base; in flat_realign() 601 inb->ptr = inb->base + ALIGN(off, align); in flat_realign() 648 p = inb->base + offset; in flat_read_stringtable() 650 if (p >= inb->limit || p < inb->base) in flat_read_stringtable() 660 return xstrdup(inb->base + offset); in flat_read_stringtable()
|
D | dt_to_config | 536 my ($dir, $base) = $driver =~ m{(.*)/(.*).c}; 649 ($config) = $line =~ /(CONFIG_[A-Za-z0-9_]+).*\b$base.[co]\b/; 656 ($make_var) = $line =~ /\s*(\S+?)\s*[+:\?]*=.*\b$base.[co]\b/;
|
/scripts/mod/ |
D | sumversion.c | 307 const char *base; in parse_source_files() local 312 base = strrchr(objfile, '/'); in parse_source_files() 313 if (base) { in parse_source_files() 314 base++; in parse_source_files() 315 dirlen = base - objfile; in parse_source_files() 316 sprintf(cmd, "%.*s.%s.cmd", dirlen, objfile, base); in parse_source_files()
|
/scripts/kconfig/ |
D | symbol.c | 106 static long long sym_get_range_val(struct symbol *sym, int base) in sym_get_range_val() argument 111 base = 10; in sym_get_range_val() 114 base = 16; in sym_get_range_val() 119 return strtoll(sym->curr.val, NULL, base); in sym_get_range_val() 126 int base; in sym_validate_range() local 131 base = 10; in sym_validate_range() 134 base = 16; in sym_validate_range() 142 val = strtoll(sym->curr.val, NULL, base); in sym_validate_range() 144 val2 = sym_get_range_val(range_sym, base); in sym_validate_range() 147 val2 = sym_get_range_val(range_sym, base); in sym_validate_range()
|
D | Makefile | 105 $(Q)KCONFIG_ALLCONFIG=kernel/configs/tiny-base.config $(MAKE) -f $(srctree)/Makefile allnoconfig
|
/scripts/gcc-plugins/ |
D | sancov_plugin.c | 97 .base = &sancov_fndecl, in plugin_init()
|
D | stackleak_plugin.c | 530 .base = &track_function_decl, in plugin_init()
|
D | latent_entropy_plugin.c | 588 .base = &latent_entropy_decl, in plugin_init()
|