Searched refs:pos2 (Results 1 – 6 of 6) sorted by relevance
/PHP-5.4/win32/ |
H A D | sendmail.c | 219 char *pos1 = NULL, *pos2 = NULL; in TSendMail() local 270 if (NULL == (pos2 = strstr(pos1, "\r\n"))) { in TSendMail() 273 RPath = estrndup(pos1, pos2 - pos1); in TSendMail() 386 char *tempMailTo, *token, *pos1, *pos2; in SendText() local 481 if (NULL == (pos2 = strstr(pos1, "\r\n"))) { in SendText() 484 tempMailTo = estrndup(pos1, pos2 - pos1); in SendText() 536 if (NULL == (pos2 = strstr(pos1, "\r\n"))) { in SendText() 540 pos2 = pos1; in SendText() 542 tempMailTo = estrndup(pos1, pos2 - pos1); in SendText() 574 if (pos1 != pos2) { in SendText() [all …]
|
/PHP-5.4/Zend/ |
H A D | zend_language_scanner.l | 366 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode() 367 if (!pos2) break; in zend_multibyte_detect_unicode() 368 pos2++; in zend_multibyte_detect_unicode() 372 *pos2 == '\t' || in zend_multibyte_detect_unicode() 373 *pos2 == '\r' || in zend_multibyte_detect_unicode() 375 pos2++; in zend_multibyte_detect_unicode() 377 if (*pos2 == '(') { in zend_multibyte_detect_unicode() 378 pos2++; in zend_multibyte_detect_unicode() 383 pos2++; in zend_multibyte_detect_unicode() 386 pos2++; in zend_multibyte_detect_unicode() [all …]
|
H A D | zend_language_scanner.c | 368 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode() 369 if (!pos2) break; in zend_multibyte_detect_unicode() 370 pos2++; in zend_multibyte_detect_unicode() 374 *pos2 == '\t' || in zend_multibyte_detect_unicode() 375 *pos2 == '\r' || in zend_multibyte_detect_unicode() 377 pos2++; in zend_multibyte_detect_unicode() 379 if (*pos2 == '(') { in zend_multibyte_detect_unicode() 380 pos2++; in zend_multibyte_detect_unicode() 385 pos2++; in zend_multibyte_detect_unicode() 388 pos2++; in zend_multibyte_detect_unicode() [all …]
|
/PHP-5.4/ext/spl/ |
H A D | php_spl.c | 320 char *copy, *pos1, *pos2; in PHP_FUNCTION() local 339 pos2 = strchr(pos1, ','); in PHP_FUNCTION() 340 if (pos2) *pos2 = '\0'; in PHP_FUNCTION() 345 pos1 = pos2 ? pos2 + 1 : NULL; in PHP_FUNCTION()
|
/PHP-5.4/ext/standard/ |
H A D | string.c | 3250 …similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int *pos2, int *max) argument 3264 *pos2 = q - txt2; 3276 int pos1 = 0, pos2 = 0, max; local 3278 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max); 3280 if (pos1 && pos2) { 3282 txt2, pos2); 3284 if ((pos1 + max < len1) && (pos2 + max < len2)) { 3286 txt2 + pos2 + max, len2 - pos2 - max);
|
/PHP-5.4/ext/soap/ |
H A D | soap.c | 990 HashPosition pos1, pos2; in soap_create_typemap() local 1007 zend_hash_internal_pointer_reset_ex(ht2, &pos2); in soap_create_typemap() 1008 while (zend_hash_get_current_data_ex(ht2, (void**)&tmp, &pos2) == SUCCESS) { in soap_create_typemap() 1013 zend_hash_get_current_key_ex(ht2, &name, &name_len, &index, 0, &pos2); in soap_create_typemap() 1035 zend_hash_move_forward_ex(ht2, &pos2); in soap_create_typemap()
|
Completed in 57 milliseconds