Searched refs:fromP (Results 1 – 2 of 2) sorted by relevance
| /freebsd-14.2/contrib/expat/lib/ |
| H A D | xmltok.c | 393 *fromP += bytesToCopy; in utf8_toUtf8() 456 *fromP = from; in utf8_toUtf16() 509 if (*fromP == fromLim) in latin1_toUtf8() 517 (*fromP)++; in latin1_toUtf8() 705 fromLim = *fromP + (((fromLim - *fromP) >> 1) << 1); /* shrink to even */ \ 712 for (; *fromP < fromLim && *toP < toLim; *fromP += 2) \ 713 *(*toP)++ = (GET_HI(*fromP) << 8) | GET_LO(*fromP); \ 1367 *fromP += (AS_NORMAL_ENCODING(enc)->type[(unsigned char)**fromP] in unknown_toUtf8() 1372 (*fromP)++; in unknown_toUtf8() 1387 *fromP += (AS_NORMAL_ENCODING(enc)->type[(unsigned char)**fromP] in unknown_toUtf16() [all …]
|
| H A D | xmltok.h | 189 const char **fromP, 193 const char **fromP, 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))
|