Searched refs:hex_digits (Results 1 – 4 of 4) sorted by relevance
93 template <typename T> static constexpr size_t hex_digits() { in hex_digits() function108 if (str.size() <= hex_digits<data_t::uuid_t>() || in parseModuleId()109 str.size() > hex_digits<data_t>()) in parseModuleId()114 llvm::StringRef uuid_str = str.take_front(hex_digits<data_t::uuid_t>()); in parseModuleId()115 llvm::StringRef age_str = str.drop_front(hex_digits<data_t::uuid_t>()); in parseModuleId()
77 static const char hex_digits[] = "0123456789ABCDEF";512 if (!CBB_add_u8(&cbb, hex_digits[v >> 4])) in bn_bn2hex_internal() 515 if (!CBB_add_u8(&cbb, hex_digits[v & 0xf])) in bn_bn2hex_internal() 76 static const char hex_digits[] = "0123456789ABCDEF"; global() variable
471 static const char hex_digits[] = "0123456789ABCDEF"; in hex_to_string() 492 if (!CBB_add_u8(&cbb, hex_digits[c >> 4])) in hex_to_string() 494 if (!CBB_add_u8(&cbb, hex_digits[c & 0xf])) in hex_to_string() 464 static const char hex_digits[] = "0123456789ABCDEF"; global() variable
317 static char hex_digits[] = { in get_reverse() local 330 *cp++ = hex_digits[bytes[i] & 0x0f]; in get_reverse() 332 *cp++ = hex_digits[(bytes[i] >> 4) & 0x0f]; in get_reverse()