Searched refs:hexdigits (Results 1 – 8 of 8) 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()
55 static const char hexdigits[] = { in spl_bt_u64_to_hex_str() local67 buf[pos++] = hexdigits[d]; in spl_bt_u64_to_hex_str()
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()
1844 static const char hexdigits[16] = "0123456789abcdef"; in Hash() local1894 buf[i] = hexdigits[h & 0x0f]; in Hash()
4840 const uint8_t *hexdigits = "0123456789abcdef"; in nfsrv_putfhname() local4844 bufp[2 * i] = hexdigits[(*cp >> 4) & 0xf]; in nfsrv_putfhname()4845 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];