Searched refs:hexdigits (Results 1 – 9 of 9) sorted by relevance
119 size_t hexdigits = strlen(value); in prepare_from_text() local120 if ((hexdigits % 2) != 0) { in prepare_from_text()125 *buf_n = hexdigits >> 1; in prepare_from_text()
73 static const char hexdigits[] = { in spl_bt_u64_to_hex_str() local85 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";
2011 static char hexdigits[] = { in hex_ntop() local2022 *target++ = hexdigits[src[i] >> 4U]; in hex_ntop()2023 *target++ = hexdigits[src[i] & 0xfU]; in hex_ntop()
1869 static const char hexdigits[] = "0123456789abcdef"; in Hash() local1919 buf[i] = hexdigits[h & 0x0f]; in Hash()
36 o var.c: avoid compiler warning from hexdigits
5098 const uint8_t *hexdigits = "0123456789abcdef"; in nfsrv_putfhname() local5102 bufp[2 * i] = hexdigits[(*cp >> 4) & 0xf]; in nfsrv_putfhname()5103 bufp[2 * i + 1] = hexdigits[*cp++ & 0xf]; in nfsrv_putfhname()
131463 static const char hexdigits[] = {131507 zText[(i*2)+2] = hexdigits[(zBlob[i]>>4)&0x0F];131508 zText[(i*2)+3] = hexdigits[(zBlob[i])&0x0F];131737 *(z++) = hexdigits[(c>>4)&0xf];131738 *(z++) = hexdigits[c&0xf];