Searched refs:toLim (Results 1 – 2 of 2) sorted by relevance
/external/expat/lib/ |
D | xmltok.c | 324 char **toP, const char *toLim) in utf8_toUtf8() argument 329 if (fromLim - *fromP > toLim - *toP) { in utf8_toUtf8() 332 for (fromLim = *fromP + (toLim - *toP); fromLim > *fromP; fromLim--) in utf8_toUtf8() 336 for (to = *toP, from = *fromP; (from < fromLim) && (to < toLim); from++, to++) in utf8_toUtf8() 341 if ((to == toLim) && (from < fromLim)) in utf8_toUtf8() 350 unsigned short **toP, const unsigned short *toLim) in utf8_toUtf16() argument 355 while (from < fromLim && to < toLim) { in utf8_toUtf16() 377 if (toLim - to < 2) { in utf8_toUtf16() 454 char **toP, const char *toLim) in latin1_toUtf8() argument 462 if (toLim - *toP < 2) in latin1_toUtf8() [all …]
|
D | xmltok.h | 171 const char *toLim); 176 const unsigned short *toLim); 261 #define XmlUtf8Convert(enc, fromP, fromLim, toP, toLim) \ argument 262 (((enc)->utf8Convert)(enc, fromP, fromLim, toP, toLim)) 264 #define XmlUtf16Convert(enc, fromP, fromLim, toP, toLim) \ argument 265 (((enc)->utf16Convert)(enc, fromP, fromLim, toP, toLim))
|