Searched refs:hexchars (Results 1 – 6 of 6) sorted by relevance
17 std::string hexchars = "0123456789ABCDEF"; in IsValidGUID() local24 if (hexchars.find(current) == std::string::npos) in IsValidGUID()
173 const char *hexchars = "0123456789ABCDEF"; in strhex_to_str() local177 if (strncmp(hexchars, "0x", 2) == 0) { in strhex_to_str()182 if (!(p1 = strchr(hexchars, toupper(strhex[i])))) in strhex_to_str()187 if (!(p2 = strchr(hexchars, toupper(strhex[i])))) in strhex_to_str()191 hinybble = (p1 - hexchars); in strhex_to_str()192 lonybble = (p2 - hexchars); in strhex_to_str()
190 static const uint8_t hexchars[16] = "0123456789abcdef"; in int2hex() local192 *hex++ = hexchars[(val >> (len*4)) & 15]; in int2hex()
174 static char hexchars[] = "0123456789abcdef"; local345 OUTCHAR(hexchars[c >> 4]);346 OUTCHAR(hexchars[c & 0xf]);375 OUTCHAR(hexchars[(c >> 4) & 0xf]);376 OUTCHAR(hexchars[c & 0xf]);390 *--str = hexchars[val % base];
25 std::string hexchars = "0123456789ABCDEF"; in TEST() local31 EXPECT_TRUE(std::string::npos != hexchars.find(current)); in TEST()
246 static const char hexchars[] = "0123456789abcdef"; in vsnprintf() local347 *--str = hexchars[val % base]; in vsnprintf()