Searched defs:base (Results 1 - 3 of 3) sorted by relevance

/scripts/mod/
H A Dsumversion.c308 const char *base; local
314 base = strrchr(objfile, '/');
315 if (base) {
316 base++;
317 dirlen = base - objfile;
318 sprintf(cmd, "%.*s.%s.cmd", dirlen, objfile, base);
/scripts/kconfig/
H A Dsymbol.c139 static int sym_get_range_val(struct symbol *sym, int base) argument
144 base = 10;
147 base = 16;
152 return strtol(sym->curr.val, NULL, base);
158 int base, val, val2; local
163 base = 10;
166 base = 16;
174 val = strtol(sym->curr.val, NULL, base);
175 val2 = sym_get_range_val(prop->expr->left.sym, base);
177 val2 = sym_get_range_val(prop->expr->right.sym, base);
[all...]
/scripts/dtc/
H A Dflattree.c578 char *base, *limit, *ptr; member in struct:inbuf
581 static void inbuf_init(struct inbuf *inb, void *base, void *limit) argument
583 inb->base = base;
585 inb->ptr = inb->base;
602 assert(((inb->ptr - inb->base) % sizeof(val)) == 0);
611 int off = inb->ptr - inb->base;
613 inb->ptr = inb->base + ALIGN(off, align);
660 p = inb->base + offset;
662 if (p >= inb->limit || p < inb->base)
[all...]

Completed in 199 milliseconds