Home
last modified time | relevance | path

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

/external/expat/lib/
Dxmltok.c369 const char **fromP, const char *fromLim, in utf8_toUtf8() argument
375 if (fromLim - *fromP > toLim - *toP) { in utf8_toUtf8()
378 fromLim = *fromP + (toLim - *toP); in utf8_toUtf8()
379 align_limit_to_full_utf8_characters(*fromP, &fromLim); in utf8_toUtf8()
381 for (to = *toP, from = *fromP; (from < fromLim) && (to < toLim); from++, to++) in utf8_toUtf8()
383 *fromP = from; in utf8_toUtf8()
394 const char **fromP, const char *fromLim, in utf8_toUtf16() argument
399 const char *from = *fromP; in utf8_toUtf16()
445 *fromP = from; in utf8_toUtf16()
498 const char **fromP, const char *fromLim, in latin1_toUtf8() argument
[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))
/external/python/cpython2/Modules/expat/
Dxmltok.c323 const char **fromP, const char *fromLim, in utf8_toUtf8() argument
328 if (fromLim - *fromP > toLim - *toP) { in utf8_toUtf8()
330 for (fromLim = *fromP + (toLim - *toP); fromLim > *fromP; fromLim--) in utf8_toUtf8()
334 for (to = *toP, from = *fromP; from != fromLim; from++, to++) in utf8_toUtf8()
336 *fromP = from; in utf8_toUtf8()
342 const char **fromP, const char *fromLim, in utf8_toUtf16() argument
346 const char *from = *fromP; in utf8_toUtf16()
378 *fromP = from; in utf8_toUtf16()
430 const char **fromP, const char *fromLim, in latin1_toUtf8() argument
435 if (*fromP == fromLim) in latin1_toUtf8()
[all …]
Dxmltok.h162 const char **fromP,
167 const char **fromP,
255 #define XmlUtf8Convert(enc, fromP, fromLim, toP, toLim) \ argument
256 (((enc)->utf8Convert)(enc, fromP, fromLim, toP, toLim))
258 #define XmlUtf16Convert(enc, fromP, fromLim, toP, toLim) \ argument
259 (((enc)->utf16Convert)(enc, fromP, fromLim, toP, toLim))