Lines Matching full:base
112 int base; /* base argument to strtoimax/strtouimax */
124 base = 0; /* XXX just to keep gcc happy */
207 base = 10;
212 base = 0;
221 base = 8;
227 base = 10;
235 base = 16;
267 base = 16;
301 base = 10;
466 * base==0. In that case, we should set
474 if (base == 0) {
475 base = 8;
487 base = basefix[base];
493 base = basefix[base];
494 if (base <= 8)
504 /* no need to fix base here */
505 if (base <= 10)
526 base = 16; /* if %i */
569 res = strtoumax(buf, NULL, base);
571 res = strtoimax(buf, NULL, base);