Lines Matching defs:base
112 int base; /* base argument to strtoimax/strtouimax */
125 base = 0; /* XXX just to keep gcc happy */
216 base = 10;
221 base = 0;
230 base = 8;
236 base = 10;
244 base = 16;
276 base = 16;
311 base = 10;
476 * base==0. In that case, we should set
484 if (base == 0) {
485 base = 8;
497 base = basefix[base];
503 base = basefix[base];
504 if (base <= 8)
514 /* no need to fix base here */
515 if (base <= 10)
536 base = 16; /* if %i */
579 res = strtoumax(buf, NULL, base);
581 res = strtoimax(buf, NULL, base);