Searched refs:hexchars (Results 1 – 7 of 7) sorted by relevance
28 var hexchars = '0123456789ABCDEF';32 hexrep[i * 2 + 0] = hexchars.charAt((b[i] >> 4) & 15);33 hexrep[i * 2 + 1] = hexchars.charAt(b[i] & 15);39 var hexchars = '0123456789ABCDEF';45 hexrep[i * stride + stride - 2] = hexchars.charAt((b[i] >> 4) & 15);46 hexrep[i * stride + stride - 1] = hexchars.charAt(b[i] & 15);52 var hexchars = '0123456789ABCDEFabcdef';55 if (hexchars.indexOf(h.substring(i, i + 1)) == -1) break;
14 const std::string hexchars = "0123456789ABCDEF"; in IsValidGUID() local21 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()
177 static char hexchars[] = "0123456789abcdef"; local348 OUTCHAR(hexchars[c >> 4]);349 OUTCHAR(hexchars[c & 0xf]);378 OUTCHAR(hexchars[(c >> 4) & 0xf]);379 OUTCHAR(hexchars[c & 0xf]);393 *--str = hexchars[val % base];
193 static const uint8_t hexchars[16] = "0123456789abcdef"; in int2hex() local195 *hex++ = hexchars[(val >> (len*4)) & 15]; in int2hex()
505 static const char hexchars[16] = "0123456789ABCDEF"; in DisplayResourceRecord() local537 *p++ = hexchars[t[i] >> 4]; in DisplayResourceRecord()538 *p++ = hexchars[t[i] & 0xF]; in DisplayResourceRecord()575 *p++ = hexchars[*s >> 4]; in DisplayResourceRecord()576 *p++ = hexchars[*s & 0xF]; in DisplayResourceRecord()
246 static const char hexchars[] = "0123456789abcdef"; in vsnprintf() local347 *--str = hexchars[val % base]; in vsnprintf()