base               29 kernel/printf.c printint(long long xx, int base, int sign)
base               42 kernel/printf.c     buf[i++] = digits[x % base];
base               43 kernel/printf.c   } while((x /= base) != 0);
base               16 user/printf.c  printint(int fd, int xx, int base, int sgn)
base               32 user/printf.c      buf[i++] = digits[x % base];
base               33 user/printf.c    }while((x /= base) != 0);
base               21 user/umalloc.c static Header base;
base               71 user/umalloc.c     base.s.ptr = freep = prevp = &base;
base               72 user/umalloc.c     base.s.size = 0;