Lines Matching defs:toLim
366 char **toP, const char *toLim) {
372 const ptrdiff_t bytesStorable = toLim - *toP;
405 unsigned short **toP, const unsigned short *toLim) {
409 while (from < fromLim && to < toLim) {
430 if (toLim - to < 2) {
503 char **toP, const char *toLim) {
511 if (toLim - *toP < 2)
517 if (*toP == toLim)
526 unsigned short **toP, const unsigned short *toLim) {
528 while (*fromP < fromLim && *toP < toLim)
531 if ((*toP == toLim) && (*fromP < fromLim))
561 char **toP, const char *toLim) {
563 while (*fromP < fromLim && *toP < toLim)
566 if ((*toP == toLim) && (*fromP < fromLim))
623 char **toP, const char *toLim) { \
635 if (*toP == toLim) { \
650 if (toLim - *toP < 2) { \
658 if (toLim - *toP < 3) { \
671 if (toLim - *toP < 4) { \
700 unsigned short **toP, const unsigned short *toLim) { \
705 if (fromLim - *fromP > ((toLim - *toP) << 1) \
710 for (; *fromP < fromLim && *toP < toLim; *fromP += 2) \
712 if ((*toP == toLim) && (*fromP < fromLim)) \
1356 char **toP, const char *toLim) {
1369 if (n > toLim - *toP)
1375 if (n > toLim - *toP)
1386 unsigned short **toP, const unsigned short *toLim) {
1388 while (*fromP < fromLim && *toP < toLim) {
1399 if ((*toP == toLim) && (*fromP < fromLim))