Searched refs:hexdigits (Results 1 – 7 of 7) sorted by relevance
121 size_t hexdigits = strlen(value); in prepare_from_text() local122 if ((hexdigits % 2) != 0) { in prepare_from_text()127 *buf_n = hexdigits >> 1; in prepare_from_text()
616 static char hexdigits[] = "0123456789abcdef"; in hex2n() local619 p = strchr (hexdigits, tolower((unsigned char)c)); in hex2n()623 return p - hexdigits; in hex2n()
31 static const char hexdigits[] = "0123456789abcdef";
1879 static char hexdigits[] = { in hex_ntop() local1890 *target++ = hexdigits[src[i] >> 4U]; in hex_ntop()1891 *target++ = hexdigits[src[i] & 0xfU]; in hex_ntop()
1831 static const char hexdigits[16] = "0123456789abcdef"; in Hash() local1881 buf[i] = hexdigits[h & 0x0f]; in Hash()
4818 const uint8_t *hexdigits = "0123456789abcdef"; in nfsrv_putfhname() local4822 bufp[2 * i] = hexdigits[(*cp >> 4) & 0xf]; in nfsrv_putfhname()4823 bufp[2 * i + 1] = hexdigits[*cp++ & 0xf]; in nfsrv_putfhname()
129732 static const char hexdigits[] = {129776 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];129777 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];129903 *(z++) = hexdigits[(c>>4)&0xf];129904 *(z++) = hexdigits[c&0xf];