Home
last modified time | relevance | path

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

/scripts/
A Dcoreboot.sed7 s/REG_RES_WRITE32(\(.*\), \(.*\), \(.*\)),/writel(\3, base + \2);/
8 s/REG_RES_POLL32(\(.*\), \(.*\), \(.*\), \(.*\), \(.*\)),/ret = poll32(base + \2, \3, \4, \5);/
9 s/REG_RES_OR32(\(.*\), \(.*\), \(.*\)),/setbits_le32(base + \2, \3);/
10 s/REG_RES_RMW32(\(.*\), \(.*\), \(.*\), \(.*\)),/clrsetbits_le32(base + \2, ~\3, \4);/
A Dobjdiff59 base=${1##*/}
60 stripped=$dir/${base%.o}.stripped
61 dis=$dir/${base%.o}.dis
A Dgen_compile_commands.py110 dir, base = os.path.split(path)
111 return os.path.join(dir, '.' + base + '.cmd')
144 base, ext = os.path.splitext(obj)
147 mod = base + '.mod'
A Ddocumentation-file-ref-check97 my $base = $2;
120 $base =~ s,.*/,,;
A DMakefile.lib67 base-dtb-y := $(foreach m, $(multi-dtb-y), $(firstword $(call suffix-search, $m, .dtb, -dtbs)))
/scripts/dtc/libfdt/
A Dfdt.c51 uint32_t base, uint32_t size) in check_block_() argument
53 if (!check_off_(hdrsize, totalsize, base)) in check_block_()
55 if ((base + size) < base) in check_block_()
57 if (!check_off_(hdrsize, totalsize, base + size)) in check_block_()
/scripts/dtc/
A Dflattree.c581 char *base, *limit, *ptr; member
584 static void inbuf_init(struct inbuf *inb, void *base, void *limit) in inbuf_init() argument
586 inb->base = base; in inbuf_init()
588 inb->ptr = inb->base; in inbuf_init()
605 assert(((inb->ptr - inb->base) % sizeof(val)) == 0); in flat_read_word()
614 int off = inb->ptr - inb->base; in flat_realign()
616 inb->ptr = inb->base + ALIGN(off, align); in flat_realign()
663 p = inb->base + offset; in flat_read_stringtable()
665 if (p >= inb->limit || p < inb->base) in flat_read_stringtable()
675 return xstrdup(inb->base + offset); in flat_read_stringtable()
/scripts/kconfig/
A Dsymbol.c103 static long long sym_get_range_val(struct symbol *sym, int base) in sym_get_range_val() argument
108 base = 10; in sym_get_range_val()
111 base = 16; in sym_get_range_val()
116 return strtoll(sym->curr.val, NULL, base); in sym_get_range_val()
122 int base; in sym_validate_range() local
128 base = 10; in sym_validate_range()
131 base = 16; in sym_validate_range()
139 val = strtoll(sym->curr.val, NULL, base); in sym_validate_range()
140 val2 = sym_get_range_val(prop->expr->left.sym, base); in sym_validate_range()
142 val2 = sym_get_range_val(prop->expr->right.sym, base); in sym_validate_range()
/scripts/dtc/pylibfdt/
A Dlibfdt.i_shipped131 This is a base class used by FdtRw (read-write access) and FdtSw

Completed in 10 milliseconds