digits            405 common/libc/printf/__printf.c 	const char *const digits = "0123456789abcdef";
digits            431 common/libc/printf/__printf.c 		*x = digits[xnum % pf->base];
digits             52 common/libc/stdlib/atoi.c 	static const char digits[] = "0123456789";  /* legal digits in order */
digits             76 common/libc/stdlib/atoi.c 		where = strchr(digits, *s);
digits             83 common/libc/stdlib/atoi.c 		digit = (where - digits);
digits             66 user/testbin/malloctest/malloctest.c 	int ch, digits=0;
digits             74 user/testbin/malloctest/malloctest.c 		else if ((ch=='\b' || ch==127) && digits>0) {
digits             77 user/testbin/malloctest/malloctest.c 			digits--;
digits             82 user/testbin/malloctest/malloctest.c 			digits++;
digits             89 user/testbin/malloctest/malloctest.c 	if (digits==0) {