Searched refs:HAS_CHARS (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Modules/expat/ |
D | xmltok_impl.c | 120 #define HAS_CHARS(enc, ptr, end, count) \ macro 124 HAS_CHARS(enc, ptr, end, 1) 128 if (! HAS_CHARS(enc, ptr, end, count)) { \ 874 if (HAS_CHARS(enc, ptr, end, 2)) { in PREFIX() 879 if (HAS_CHARS(enc, ptr, end, 3)) { in PREFIX()
|
/external/python/cpython3/Modules/expat/ |
D | xmltok_impl.c | 119 # define HAS_CHARS(enc, ptr, end, count) (end - ptr >= count * MINBPC(enc)) macro 121 # define HAS_CHAR(enc, ptr, end) HAS_CHARS(enc, ptr, end, 1) 125 if (! HAS_CHARS(enc, ptr, end, count)) { \ 877 if (HAS_CHARS(enc, ptr, end, 2)) { in PREFIX() 882 if (HAS_CHARS(enc, ptr, end, 3)) { in PREFIX()
|
/external/expat/lib/ |
D | xmltok_impl.c | 119 # define HAS_CHARS(enc, ptr, end, count) (end - ptr >= count * MINBPC(enc)) macro 121 # define HAS_CHAR(enc, ptr, end) HAS_CHARS(enc, ptr, end, 1) 125 if (! HAS_CHARS(enc, ptr, end, count)) { \ 877 if (HAS_CHARS(enc, ptr, end, 2)) { in PREFIX() 882 if (HAS_CHARS(enc, ptr, end, 3)) { in PREFIX()
|