Lines Matching defs:c
98 #define yxml_isChar(c) 1 argument
100 #define yxml_isSP(c) ((c == 0x20) || (c == 0x09) || (c == 0x0a)) argument
101 #define yxml_isAlpha(c) ( ((c|32)-'a') < 26) argument
102 #define yxml_isNum(c) ((c-'0') < 10) argument
103 #define yxml_isHex(c) (yxml_isNum(c) || (((c|32)-'a') < 6)) argument
104 #define yxml_isEncName(c) (yxml_isAlpha(c) || yxml_isNum(c) || (c == '.') || (c == '_') || (c == '-… argument
105 #define yxml_isNameStart(c) (yxml_isAlpha(c) || (c == ':') || (c == '_') || (c >= 128)) argument
106 #define yxml_isName(c) (yxml_isNameStart(c) || yxml_isNum(c) || (c == '-') || (c == '.')) argument
108 #define yxml_isAttValue(c) (yxml_isChar(c) && (c != x->quote) && (c != '<') && (c != '&')) argument
112 #define yxml_isRef(c) (yxml_isNum(c) || yxml_isAlpha(c) || (c == '#')) argument
114 #define INTFROM5CHARS(a, b, c, d, e) ((((uint64_t)(a))<<32) | (((uint64_t)(b))<<24) | (((uint64_t)(… argument