xdigits           137 lib/replace/inet_pton.c 	const char *xdigits, *curtok;
xdigits           154 lib/replace/inet_pton.c 		if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
xdigits           155 lib/replace/inet_pton.c 			pch = strchr((xdigits = xdigits_u), ch);
xdigits           158 lib/replace/inet_pton.c 			val |= (pch - xdigits);
xdigits            84 source4/heimdal/lib/roken/inet_ntop.c     const char xdigits[] = "0123456789abcdef";
xdigits            98 source4/heimdal/lib/roken/inet_ntop.c 	    *dst++ = xdigits[ptr[0] >> 4];
xdigits           102 source4/heimdal/lib/roken/inet_ntop.c 	    *dst++ = xdigits[ptr[0] & 0x0F];
xdigits           106 source4/heimdal/lib/roken/inet_ntop.c 	    *dst++ = xdigits[ptr[1] >> 4];
xdigits           109 source4/heimdal/lib/roken/inet_ntop.c 	*dst++ = xdigits[ptr[1] & 0x0F];