Home
last modified time | relevance | path

Searched refs:XDIGIT (Results 1 – 5 of 5) sorted by relevance

/third_party/libsoup/libsoup/
Dsoup-form.c48 #define XDIGIT(c) ((c) <= '9' ? (c) - '0' : ((c) & 0x4F) - 'A' + 10) macro
49 #define HEXCHAR(s) ((XDIGIT (s[1]) << 4) + XDIGIT (s[2]))
Dsoup-uri.c754 #define XDIGIT(c) ((c) <= '9' ? (c) - '0' : ((c) & 0x4F) - 'A' + 10) macro
755 #define HEXCHAR(s) ((XDIGIT (s[1]) << 4) + XDIGIT (s[2]))
/third_party/gstreamer/gstplugins_good/gst/goom/
Dgoomsl_lex.l18 XDIGIT [0-9a-f]
76 <INITIAL>"0x"{XDIGIT}+ { strncpy(yylval.strValue, yytext, 2047); return LTYPE_INTEGER; }
/third_party/pcre2/pcre2/src/
Dpcre2_compile.c74 #define XDIGIT(c) xdigitab[c] macro
77 #define XDIGIT(c) (MAX_255(c)? xdigitab[c] : 0xff) macro
1645 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 …]
/third_party/glib/glib/
Dguri.c279 #define XDIGIT(c) ((c) <= '9' ? (c) - '0' : ((c) & 0x4F) - 'A' + 10) macro
280 #define HEXCHAR(s) ((XDIGIT (s[1]) << 4) + XDIGIT (s[2]))