Searched refs:hexdigits (Results 1 – 7 of 7) sorted by relevance
166 static const char hexdigits[] = "0123456789abcdef"; in hex_16() local171 *d++ = hexdigits[(*from >> 4)]; in hex_16()172 *d++ = hexdigits[(*from & 0x0F)]; in hex_16()
328 return str[0] in string.hexdigits and str[1] in string.hexdigits445 0] in string.hexdigits and self.str[1] in string.hexdigits:521 while n < str_len and self.str[n] in string.hexdigits:528 if self.str[i] not in string.hexdigits:
621 static char hexdigits[] = { in hex_ntop() local632 *target++ = hexdigits[src[i] >> 4U]; in hex_ntop()633 *target++ = hexdigits[src[i] & 0xfU]; in hex_ntop()
421 static const char hexdigits[] = { in hex_to_string() local430 buffer_write_u8(output, hexdigits[octet >> 4]); in hex_to_string()431 buffer_write_u8(output, hexdigits[octet & 0x0f]); in hex_to_string()
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()
2194 static const char hexdigits[16] = "0123456789ABCDEF"; in ffetarget_print_hex() local2203 *--p = hexdigits[value & 4]; in ffetarget_print_hex()