Home
last modified time | relevance | path

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

/external/expat/lib/
Dxmltok.c323 const char **fromP, const char *fromLim, 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()
338 *fromP = from; in utf8_toUtf8()
349 const char **fromP, const char *fromLim, in utf8_toUtf16() argument
354 const char *from = *fromP; in utf8_toUtf16()
400 *fromP = from; in utf8_toUtf16()
453 const char **fromP, const char *fromLim, in latin1_toUtf8() argument
458 if (*fromP == fromLim) in latin1_toUtf8()
[all …]
Dxmltok.h168 const char **fromP,
173 const char **fromP,
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))