base 128 common/libc/printf/__printf.c int base;
base 165 common/libc/printf/__printf.c pf->base = 0;
base 317 common/libc/printf/__printf.c pf->base = 10;
base 321 common/libc/printf/__printf.c pf->base = 16;
base 324 common/libc/printf/__printf.c pf->base = 8;
base 431 common/libc/printf/__printf.c *x = digits[xnum % pf->base];
base 441 common/libc/printf/__printf.c xnum = xnum / pf->base;
base 459 common/libc/printf/__printf.c if (pf->baseprefix && pf->base==16) {
base 462 common/libc/printf/__printf.c else if (pf->baseprefix && pf->base==8) {
base 106 user/testbin/zero/zero.c char *base;
base 112 user/testbin/zero/zero.c base = sbrk(SBRK_SIZE);
base 113 user/testbin/zero/zero.c if (base == (void *)-1) {
base 122 user/testbin/zero/zero.c if (base[i] != 0) {
base 124 user/testbin/zero/zero.c i, &base[i]);
base 125 user/testbin/zero/zero.c warnx("Got: 0x%x", (unsigned char)base[i]);
base 126 user/testbin/zero/zero.c warnx("Base of sbrk region: %p", base);