Lines Matching defs:toP

366             char **toP, const char *toLim) {
372 const ptrdiff_t bytesStorable = toLim - *toP;
390 memcpy(*toP, *fromP, bytesToCopy);
392 *toP += bytesToCopy;
405 unsigned short **toP, const unsigned short *toLim) {
407 unsigned short *to = *toP;
455 *toP = to;
503 char **toP, const char *toLim) {
511 if (toLim - *toP < 2)
513 *(*toP)++ = (char)((c >> 6) | UTF8_cval2);
514 *(*toP)++ = (char)((c & 0x3f) | 0x80);
517 if (*toP == toLim)
519 *(*toP)++ = *(*fromP)++;
526 unsigned short **toP, const unsigned short *toLim) {
528 while (*fromP < fromLim && *toP < toLim)
529 *(*toP)++ = (unsigned char)*(*fromP)++;
531 if ((*toP == toLim) && (*fromP < fromLim))
561 char **toP, const char *toLim) {
563 while (*fromP < fromLim && *toP < toLim)
564 *(*toP)++ = *(*fromP)++;
566 if ((*toP == toLim) && (*fromP < fromLim))
623 char **toP, const char *toLim) { \
635 if (*toP == toLim) { \
639 *(*toP)++ = lo; \
650 if (toLim - *toP < 2) { \
654 *(*toP)++ = ((lo >> 6) | (hi << 2) | UTF8_cval2); \
655 *(*toP)++ = ((lo & 0x3f) | 0x80); \
658 if (toLim - *toP < 3) { \
663 *(*toP)++ = ((hi >> 4) | UTF8_cval3); \
664 *(*toP)++ = (((hi & 0xf) << 2) | (lo >> 6) | 0x80); \
665 *(*toP)++ = ((lo & 0x3f) | 0x80); \
671 if (toLim - *toP < 4) { \
680 *(*toP)++ = (char)((plane >> 2) | UTF8_cval4); \
681 *(*toP)++ = (((lo >> 2) & 0xF) | ((plane & 0x3) << 4) | 0x80); \
684 *(*toP)++ = (((lo & 0x3) << 4) | ((GET_HI(from) & 0x3) << 2) \
686 *(*toP)++ = ((lo2 & 0x3f) | 0x80); \
700 unsigned short **toP, const unsigned short *toLim) { \
705 if (fromLim - *fromP > ((toLim - *toP) << 1) \
710 for (; *fromP < fromLim && *toP < toLim; *fromP += 2) \
711 *(*toP)++ = (GET_HI(*fromP) << 8) | GET_LO(*fromP); \
712 if ((*toP == toLim) && (*fromP < fromLim)) \
1356 char **toP, const char *toLim) {
1369 if (n > toLim - *toP)
1375 if (n > toLim - *toP)
1379 memcpy(*toP, utf8, n);
1380 *toP += n;
1386 unsigned short **toP, const unsigned short *toLim) {
1388 while (*fromP < fromLim && *toP < toLim) {
1396 *(*toP)++ = c;
1399 if ((*toP == toLim) && (*fromP < fromLim))