isdigit           105 bsp/drv/include/ddi.h int	 isdigit(int c);
isdigit            37 bsp/drv/lib/ctype.c 	return (isalpha(c) || isdigit(c));
isdigit            79 bsp/drv/lib/ctype.c 	return (isdigit(c) || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f'));
isdigit            76 bsp/drv/lib/strtoul.c 		if (isdigit(c))
isdigit            52 sys/lib/vsprintf.c 	while (isdigit((int)**s))
isdigit            93 sys/lib/vsprintf.c 		if (isdigit(*fmt)) {
isdigit            65 usr/bin/kill/kill.c 			if (isdigit((unsigned char)**argv) == 0)
isdigit            98 usr/bin/kill/kill.c 		} else if (isdigit(**argv)) {
isdigit            58 usr/bin/nice/nice.c 	    isdigit((unsigned char)argv[1][1])) {
isdigit            40 usr/include/ctype.h int	isdigit(int c);
isdigit            35 usr/lib/libc/ctype/isalnum.c 	return (isalpha(c) || isdigit(c));
isdigit            35 usr/lib/libc/ctype/isxdigit.c 	return (isdigit(c) || (c >= 'A' && c <= 'F') || (c >= 'a' && c <= 'f'));
isdigit           111 usr/lib/libc/stdio/mktemp.c 				if (isdigit((unsigned char)*trv))
isdigit           107 usr/lib/libc/stdlib/strtol.c 		if (isdigit(c))
isdigit            79 usr/lib/libc/stdlib/strtoul.c 		if (isdigit(c))
isdigit            68 usr/lib/libsa/vsprintf.c 	while (isdigit((int)**s))
isdigit           112 usr/lib/libsa/vsprintf.c 		if (isdigit((int)*fmt)) {
isdigit           134 usr/sbin/lock/lock.c 		for (t = p; *t && isdigit(*t); ++t);