Searched refs:toLim (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/expat/lib/ |
H A D | xmltok.c | 368 char **toP, const char *toLim) { in utf8_toUtf8() argument 374 const ptrdiff_t bytesStorable = toLim - *toP; in utf8_toUtf8() 407 unsigned short **toP, const unsigned short *toLim) { in utf8_toUtf16() argument 411 while (from < fromLim && to < toLim) { in utf8_toUtf16() 432 if (toLim - to < 2) { in utf8_toUtf16() 505 char **toP, const char *toLim) { in latin1_toUtf8() argument 513 if (toLim - *toP < 2) in latin1_toUtf8() 519 if (*toP == toLim) in latin1_toUtf8() 528 unsigned short **toP, const unsigned short *toLim) { in latin1_toUtf16() argument 530 while (*fromP < fromLim && *toP < toLim) in latin1_toUtf16() [all …]
|
H A D | xmltok.h | 191 const char *toLim); 196 const unsigned short *toLim); 275 #define XmlUtf8Convert(enc, fromP, fromLim, toP, toLim) \ argument 276 (((enc)->utf8Convert)(enc, fromP, fromLim, toP, toLim)) 278 #define XmlUtf16Convert(enc, fromP, fromLim, toP, toLim) \ argument 279 (((enc)->utf16Convert)(enc, fromP, fromLim, toP, toLim))
|