Home
last modified time | relevance | path

Searched refs:hexchars (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/chrome/browser/resources/cryptotoken/
Dutil.js28 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;
/external/chromium_org/base/
Dguid.cc14 const std::string hexchars = "0123456789ABCDEF"; in IsValidGUID() local
21 if (hexchars.find(current) == std::string::npos) in IsValidGUID()
/external/ppp/pppd/plugins/
Dwinbind.c173 const char *hexchars = "0123456789ABCDEF"; in strhex_to_str() local
177 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()
/external/ppp/pppd/
Dutils.c177 static char hexchars[] = "0123456789abcdef"; local
348 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];
/external/qemu/android/utils/
Dmisc.c193 static const uint8_t hexchars[16] = "0123456789abcdef"; in int2hex() local
195 *hex++ = hexchars[(val >> (len*4)) & 15]; in int2hex()
/external/mdnsresponder/mDNSPosix/
DNetMonitor.c505 static const char hexchars[16] = "0123456789ABCDEF"; in DisplayResourceRecord() local
537 *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()
/external/qemu-pc-bios/bochs/bios/
Drombios32.c246 static const char hexchars[] = "0123456789abcdef"; in vsnprintf() local
347 *--str = hexchars[val % base]; in vsnprintf()