Home
last modified time | relevance | path

Searched refs:base (Results 1 – 24 of 24) sorted by relevance

/scripts/atomic/
A Datomics.tbl8 # * 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)
A Datomic-tbl.sh54 local base=""
62 for base in "${pfx}${name}${sfx}${order}" "${pfx}${name}${sfx}" "${name}"; do
63 file="${ATOMICDIR}/${tmpltype}/${base}"
/scripts/
A Dgenerate_builtin_ranges.awk225 base = $2;
226 sub(addr_prefix, "0x", base);
227 base = strtonum(base);
230 sect_base[sect] = base;
234 printf "[%s] BASE %016x\n", sect, base >"/dev/stderr";
266 addr = strtonum(addr) - base;
291 sect_base[$1] = base;
294 printf "[%s] BASE %016x\n", $1, base >"/dev/stderr";
304 printf "[%s] ADDEND %016x - %016x = %016x\n", $1, addr, base, sect_addend[$1] >"/dev/stderr";
A Dobjdiff59 base=${1##*/}
60 stripped=$dir/${base%.o}.stripped
61 dis=$dir/${base%.o}.dis
A Dspdxcheck.py247 base = os.path.dirname(fname)
249 parts = base.split('/')
251 base = '.'
253 base += '/' + parts[i]
256 base = self.basedir
258 base = './' + base.rstrip('/')
259 base += '/'
261 di = self.spdx_dirs.get(base, dirinfo())
262 di.update(fname, base, fail)
263 self.spdx_dirs[base] = di
A Ddocumentation-file-ref-check109 my $base = $2;
132 $base =~ s,.*/,,;
A DMakefile.dtbs11 base-dtb-y := $(filter %.dtb, $(call real-search, $(multi-dtb-y), .dtb, -dtbs))
114 DTC_FLAGS += $(if $(filter $(patsubst $(obj)/%,%,$@), $(base-dtb-y)), -@)
A Dcheck-uapi.sh463 if ! git merge-base --is-ancestor "$past_ref" "$base_ref" > /dev/null 2>&1; then
/scripts/gdb/linux/
A Dtimerlist.py45 def print_active_timers(base): argument
46 curr = base['active']['rb_root']['rb_leftmost']
54 def print_base(base): argument
55 text = " .base: {}\n".format(base.address)
56 text += " .index: {}\n".format(base['index'])
60 text += " .get_time: {}\n".format(base['get_time'])
62 text += " .offset: {} nsecs\n".format(base['offset'])
64 text += "".join([x for x in print_active_timers(base)])
A Dpage_owner.py76 def get_entry(self, base, index): argument
77 …return (base.cast(utils.get_ulong_type()) + self.page_ext_size * index).cast(page_ext_t.get_type()…
/scripts/clang-tools/
A Dgen_compile_commands.py108 dir, base = os.path.split(path)
109 return os.path.join(dir, '.' + base + '.cmd')
142 base, ext = os.path.splitext(obj)
145 mod = base + '.mod'
/scripts/dtc/libfdt/
A Dfdt.c58 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/
A Dfdtoverlay.c43 static void *apply_one(char *base, const char *overlay, size_t *buf_len, in apply_one() argument
58 ret = fdt_open_into(base, tmp, *buf_len); in apply_one()
80 free(base); in apply_one()
A Dflattree.c567 char *base, *limit, *ptr; member
570 static void inbuf_init(struct inbuf *inb, void *base, void *limit) in inbuf_init() argument
572 inb->base = base; in inbuf_init()
574 inb->ptr = inb->base; in inbuf_init()
591 assert(((inb->ptr - inb->base) % sizeof(val)) == 0); in flat_read_word()
600 int off = inb->ptr - inb->base; in flat_realign()
602 inb->ptr = inb->base + ALIGN(off, align); in flat_realign()
649 p = inb->base + offset; in flat_read_stringtable()
651 if (p >= inb->limit || p < inb->base) in flat_read_stringtable()
661 return xstrdup(inb->base + offset); in flat_read_stringtable()
A Ddt_to_config536 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/kconfig/
A Dsymbol.c144 static long long sym_get_range_val(struct symbol *sym, int base) in sym_get_range_val() argument
149 base = 10; in sym_get_range_val()
152 base = 16; in sym_get_range_val()
157 return strtoll(sym->curr.val, NULL, base); in sym_get_range_val()
164 int base; in sym_validate_range() local
169 base = 10; in sym_validate_range()
172 base = 16; in sym_validate_range()
180 val = strtoll(sym->curr.val, NULL, base); in sym_validate_range()
182 val2 = sym_get_range_val(range_sym, base); in sym_validate_range()
185 val2 = sym_get_range_val(range_sym, base); in sym_validate_range()
A DMakefile117 $(Q)KCONFIG_ALLCONFIG=kernel/configs/tiny-base.config $(MAKE) -f $(srctree)/Makefile allnoconfig
/scripts/mod/
A Dsumversion.c307 const char *base; in parse_source_files() local
312 base = get_basename(objfile); in parse_source_files()
313 dirlen = base - objfile; in parse_source_files()
314 sprintf(cmd, "%.*s.%s.cmd", dirlen, objfile, base); in parse_source_files()
A Dmodpost.c1475 const char *base; in extract_crcs_for_object() local
1478 base = get_basename(object); in extract_crcs_for_object()
1479 dirlen = base - object; in extract_crcs_for_object()
1482 dirlen, object, base); in extract_crcs_for_object()
/scripts/gendwarfksyms/
A Dgendwarfksyms.c51 Dwarf_Addr base, void *arg) in process_module() argument
A Ddwarf.c936 PROCESS_TYPE(base) in process_type()
/scripts/gcc-plugins/
A Dstackleak_plugin.c536 .base = &track_function_decl, in plugin_init()
A Dlatent_entropy_plugin.c588 .base = &latent_entropy_decl, in plugin_init()
/scripts/lib/abi/
A Dabi_parser.py516 base = os.path.basename(ref[0])

Completed in 33 milliseconds