Home | History | Annotate | Download | only in src

Lines Matching refs:XDIGIT

74 #define XDIGIT(c)                xdigitab[c]
77 #define XDIGIT(c) (MAX_255(c)? xdigitab[c] : 0xff)
668 cbit_xdigit,-1, 0 /* xdigit */
690 -1, 0 /* xdigit, treat as non-UCP */
1528 if ((cc = XDIGIT(ptr[0])) == 0xff) break; /* Not a hex digit */
1529 if ((xc = XDIGIT(ptr[1])) == 0xff) break; /* Not a hex digit */
1531 if ((xc = XDIGIT(ptr[2])) == 0xff) break; /* Not a hex digit */
1533 if ((xc = XDIGIT(ptr[3])) == 0xff) break; /* Not a hex digit */
1754 if ((cc = XDIGIT(ptr[0])) == 0xff) break; /* Not a hex digit */
1755 if ((xc = XDIGIT(ptr[1])) == 0xff) break; /* Not a hex digit */
1782 while (ptr < ptrend && (cc = XDIGIT(*ptr)) != 0xff)
1799 while (ptr < ptrend && XDIGIT(*ptr) != 0xff) ptr++;
1829 if (ptr >= ptrend || (cc = XDIGIT(*ptr)) == 0xff) break; /* Not a hex digit */
1832 if (ptr >= ptrend || (cc = XDIGIT(*ptr)) == 0xff) break; /* Not a hex digit */
5295 /* For the other POSIX classes (ascii, xdigit) we are going to
5301 [[:^ascii:]... they must all match, whereas for [^[:^xdigit:]...
5607 [^:xdigit:]) were present in a class, we either have to match or not match