Searched refs:XDIGIT (Results 1 – 5 of 5) sorted by relevance
48 #define XDIGIT(c) ((c) <= '9' ? (c) - '0' : ((c) & 0x4F) - 'A' + 10) macro49 #define HEXCHAR(s) ((XDIGIT (s[1]) << 4) + XDIGIT (s[2]))
754 #define XDIGIT(c) ((c) <= '9' ? (c) - '0' : ((c) & 0x4F) - 'A' + 10) macro755 #define HEXCHAR(s) ((XDIGIT (s[1]) << 4) + XDIGIT (s[2]))
18 XDIGIT [0-9a-f]76 <INITIAL>"0x"{XDIGIT}+ { strncpy(yylval.strValue, yytext, 2047); return LTYPE_INTEGER; }
74 #define XDIGIT(c) xdigitab[c] macro77 #define XDIGIT(c) (MAX_255(c)? xdigitab[c] : 0xff) macro1645 while (hptr < ptrend && (xc = XDIGIT(*hptr)) != 0xff) in PRIV()1669 if ((cc = XDIGIT(ptr[0])) == 0xff) break; /* Not a hex digit */ in PRIV()1670 if ((xc = XDIGIT(ptr[1])) == 0xff) break; /* Not a hex digit */ in PRIV()1672 if ((xc = XDIGIT(ptr[2])) == 0xff) break; /* Not a hex digit */ in PRIV()1674 if ((xc = XDIGIT(ptr[3])) == 0xff) break; /* Not a hex digit */ in PRIV()1901 if ((cc = XDIGIT(ptr[0])) == 0xff) break; /* Not a hex digit */ in PRIV()1902 if ((xc = XDIGIT(ptr[1])) == 0xff) break; /* Not a hex digit */ in PRIV()1929 while (ptr < ptrend && (cc = XDIGIT(*ptr)) != 0xff) in PRIV()[all …]
279 #define XDIGIT(c) ((c) <= '9' ? (c) - '0' : ((c) & 0x4F) - 'A' + 10) macro280 #define HEXCHAR(s) ((XDIGIT (s[1]) << 4) + XDIGIT (s[2]))