Lines Matching defs:hexChars
87 static const char hexChars[] = "0123456789ABCDEF";
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";
179 if (*src != HEX_ESCAPE || PL_strpbrk(pc1, hexChars) == 0 ||
180 PL_strpbrk(pc2, hexChars) == 0 )
379 static const char hexChars[] = "0123456789ABCDEF";
423 tempBuffer[tempBufferPos++] = hexChars[c >> 4]; /* high nibble */
424 tempBuffer[tempBufferPos++] = hexChars[c & 0x0f]; /* low nibble */
442 #define ISHEX(c) memchr(hexChars, c, sizeof(hexChars)-1)
458 static const char hexChars[] = "0123456789ABCDEFabcdef";