Searched refs:toLim (Results 1 – 4 of 4) sorted by relevance
/third_party/skia/third_party/externals/expat/expat/lib/ |
D | xmltok.c | 369 char **toP, const char *toLim) { in utf8_toUtf8() argument 375 const ptrdiff_t bytesStorable = toLim - *toP; in utf8_toUtf8() 408 unsigned short **toP, const unsigned short *toLim) { in utf8_toUtf16() argument 412 while (from < fromLim && to < toLim) { in utf8_toUtf16() 433 if (toLim - to < 2) { in utf8_toUtf16() 506 char **toP, const char *toLim) { in latin1_toUtf8() argument 514 if (toLim - *toP < 2) in latin1_toUtf8() 520 if (*toP == toLim) in latin1_toUtf8() 529 unsigned short **toP, const unsigned short *toLim) { in latin1_toUtf16() argument 531 while (*fromP < fromLim && *toP < toLim) in latin1_toUtf16() [all …]
|
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))
|
/third_party/python/Modules/expat/ |
D | xmltok.c | 369 char **toP, const char *toLim) { in utf8_toUtf8() argument 375 const ptrdiff_t bytesStorable = toLim - *toP; in utf8_toUtf8() 408 unsigned short **toP, const unsigned short *toLim) { in utf8_toUtf16() argument 412 while (from < fromLim && to < toLim) { in utf8_toUtf16() 433 if (toLim - to < 2) { in utf8_toUtf16() 506 char **toP, const char *toLim) { in latin1_toUtf8() argument 514 if (toLim - *toP < 2) in latin1_toUtf8() 520 if (*toP == toLim) in latin1_toUtf8() 529 unsigned short **toP, const unsigned short *toLim) { in latin1_toUtf16() argument 531 while (*fromP < fromLim && *toP < toLim) in latin1_toUtf16() [all …]
|
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))
|