Searched refs:pos2 (Results 1 – 4 of 4) sorted by relevance
/php-src/win32/ |
H A D | sendmail.c | 391 const char *pos1, *pos2; in SendText() local 493 while (pos2[2] == ' ' || pos2[2] == '\t') { in SendText() 496 pos2 = pos3; in SendText() 498 pos2 += strlen(pos2); in SendText() 558 pos2 = pos1; in SendText() 561 while (pos2[2] == ' ' || pos2[2] == '\t') { in SendText() 564 pos2 = pos3; in SendText() 566 pos2 += strlen(pos2); in SendText() 574 pos2 = pos1; in SendText() 605 if (pos1 != pos2) { in SendText() [all …]
|
/php-src/Zend/ |
H A D | zend_language_scanner.l | 417 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode() 418 if (!pos2) break; in zend_multibyte_detect_unicode() 419 pos2++; in zend_multibyte_detect_unicode() 423 *pos2 == '\t' || in zend_multibyte_detect_unicode() 424 *pos2 == '\r' || in zend_multibyte_detect_unicode() 426 pos2++; in zend_multibyte_detect_unicode() 428 if (*pos2 == '(') { in zend_multibyte_detect_unicode() 429 pos2++; in zend_multibyte_detect_unicode() 434 pos2++; in zend_multibyte_detect_unicode() 437 pos2++; in zend_multibyte_detect_unicode() [all …]
|
/php-src/ext/standard/ |
H A D | string.c | 3585 … *txt1, size_t len1, const char *txt2, size_t len2, size_t *pos1, size_t *pos2, size_t *max, size_… argument 3601 *pos2 = q - txt2; 3612 size_t pos1 = 0, pos2 = 0, max, count; local 3614 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max, &count); 3616 if (pos1 && pos2 && count > 1) { 3618 txt2, pos2); 3620 if ((pos1 + max < len1) && (pos2 + max < len2)) { 3622 txt2 + pos2 + max, len2 - pos2 - max);
|
H A D | array.c | 3380 int pos2 = pos; local 3382 for ( ; pos2 < offset + length && idx < in_hash->nNumUsed; idx++, entry++) { 3384 pos2++; 3454 int pos2 = pos; local 3456 for ( ; pos2 < offset + length && idx < in_hash->nNumUsed; idx++, p++) { 3458 pos2++;
|
Completed in 43 milliseconds