Searched defs:hexChars (Results 1 - 1 of 1) sorted by relevance

/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsEscape.cpp87 static const char hexChars[] = "0123456789ABCDEF"; local
114 *dst++ = hexChars[c >> 4]; /* high nibble */
115 *dst++ = hexChars[c & 0x0f]; /* low nibble */
129 *dst++ = hexChars[c >> 4]; /* high nibble */
130 *dst++ = hexChars[c & 0x0f]; /* low nibble */
164 static const char hexChars[] = "0123456789ABCDEFabcdef"; local
179 if (*src != HEX_ESCAPE || PL_strpbrk(pc1, hexChars) == 0 ||
180 PL_strpbrk(pc2, hexChars) == 0 )
379 static const char hexChars[] = "0123456789ABCDEF"; local
423 tempBuffer[tempBufferPos++] = hexChars[
458 static const char hexChars[] = "0123456789ABCDEFabcdef"; local
[all...]

Completed in 102 milliseconds