Searched refs:hexdigits (Results 1 – 4 of 4) sorted by relevance
595 static const char hexdigits[] = "0123456789abcdef"; in util_hexdump() local603 str[((i % 16) * 3)] = hexdigits[buf[i] >> 4]; in util_hexdump()604 str[((i % 16) * 3) + 1] = hexdigits[buf[i] & 0xf]; in util_hexdump()
394 static const char hexdigits[] = "0123456789abcdef"; in util_hexdump() local402 str[((i % 16) * 3)] = hexdigits[buf[i] >> 4]; in util_hexdump()403 str[((i % 16) * 3) + 1] = hexdigits[buf[i] & 0xf]; in util_hexdump()
60 1) If the criterion string is of the form "id:<hexdigits>" then the match70 2) If the criterion string is of the form "<subtype>:<hexdigits>" then the
465 static const char hexdigits[] = "0123456789abcdef"; in util_hexdump() local473 str[((i % 16) * 3)] = hexdigits[buf[i] >> 4]; in util_hexdump()474 str[((i % 16) * 3) + 1] = hexdigits[buf[i] & 0xf]; in util_hexdump()