Lines Matching refs:hexdig
1528 static unsigned char hexdig[256];
1543 htinit(hexdig, USC "0123456789", 0x10);
1544 htinit(hexdig, USC "abcdef", 0x10 + 10);
1545 htinit(hexdig, USC "ABCDEF", 0x10 + 10);
1548 static const unsigned char hexdig[256] = { variable
1624 if ((c1 = hexdig[c]))
1845 if (hexdig[*s])
1860 if (!hexdig[*s])
1864 if (hexdig[*s])
1869 while(hexdig[*s])
1882 while(hexdig[*s])
1900 if ((n = hexdig[*s]) == 0 || n > 0x19) {
1905 while((n = hexdig[*++s]) !=0 && n <= 0x19) {
1988 L |= (hexdig[*s1] & 0x0f) << n;