Home
last modified time | relevance | path

Searched refs:toLim (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/mit/expat/dist/lib/
H A Dxmltok.c365 char **toP, const char *toLim) { in utf8_toUtf8() argument
371 const ptrdiff_t bytesStorable = toLim - *toP; in utf8_toUtf8()
404 unsigned short **toP, const unsigned short *toLim) { in utf8_toUtf16() argument
408 while (from < fromLim && to < toLim) { in utf8_toUtf16()
429 if (toLim - to < 2) { in utf8_toUtf16()
502 char **toP, const char *toLim) { in latin1_toUtf8() argument
510 if (toLim - *toP < 2) in latin1_toUtf8()
516 if (*toP == toLim) in latin1_toUtf8()
525 unsigned short **toP, const unsigned short *toLim) { in latin1_toUtf16() argument
527 while (*fromP < fromLim && *toP < toLim) in latin1_toUtf16()
[all …]
H A Dxmltok.h191 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))