Searched refs:pos2 (Results 1 – 6 of 6) sorted by relevance
/PHP-5.6/win32/ |
H A D | sendmail.c | 220 char *pos1 = NULL, *pos2 = NULL; in TSendMail() local 271 if (NULL == (pos2 = strstr(pos1, "\r\n"))) { in TSendMail() 274 RPath = estrndup(pos1, pos2 - pos1); in TSendMail() 387 char *tempMailTo, *token, *pos1, *pos2; in SendText() local 482 if (NULL == (pos2 = strstr(pos1, "\r\n"))) { in SendText() 485 tempMailTo = estrndup(pos1, pos2 - pos1); in SendText() 537 if (NULL == (pos2 = strstr(pos1, "\r\n"))) { in SendText() 541 pos2 = pos1; in SendText() 543 tempMailTo = estrndup(pos1, pos2 - pos1); in SendText() 575 if (pos1 != pos2) { in SendText() [all …]
|
/PHP-5.6/Zend/ |
H A D | zend_language_scanner.l | 369 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode() 370 if (!pos2) break; in zend_multibyte_detect_unicode() 371 pos2++; in zend_multibyte_detect_unicode() 375 *pos2 == '\t' || in zend_multibyte_detect_unicode() 376 *pos2 == '\r' || in zend_multibyte_detect_unicode() 378 pos2++; in zend_multibyte_detect_unicode() 380 if (*pos2 == '(') { in zend_multibyte_detect_unicode() 381 pos2++; in zend_multibyte_detect_unicode() 386 pos2++; in zend_multibyte_detect_unicode() 389 pos2++; in zend_multibyte_detect_unicode() [all …]
|
H A D | zend_language_scanner.c | 371 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode() 372 if (!pos2) break; in zend_multibyte_detect_unicode() 373 pos2++; in zend_multibyte_detect_unicode() 377 *pos2 == '\t' || in zend_multibyte_detect_unicode() 378 *pos2 == '\r' || in zend_multibyte_detect_unicode() 380 pos2++; in zend_multibyte_detect_unicode() 382 if (*pos2 == '(') { in zend_multibyte_detect_unicode() 383 pos2++; in zend_multibyte_detect_unicode() 388 pos2++; in zend_multibyte_detect_unicode() 391 pos2++; in zend_multibyte_detect_unicode() [all …]
|
/PHP-5.6/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.6/ext/standard/ |
H A D | string.c | 3226 …similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int *pos2, int *max) argument 3240 *pos2 = q - txt2; 3252 int pos1 = 0, pos2 = 0, max; local 3254 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max); 3256 if (pos1 && pos2) { 3258 txt2, pos2); 3260 if ((pos1 + max < len1) && (pos2 + max < len2)) { 3262 txt2 + pos2 + max, len2 - pos2 - max);
|
/PHP-5.6/ext/soap/ |
H A D | soap.c | 1019 HashPosition pos1, pos2; in soap_create_typemap() local 1036 zend_hash_internal_pointer_reset_ex(ht2, &pos2); in soap_create_typemap() 1037 while (zend_hash_get_current_data_ex(ht2, (void**)&tmp, &pos2) == SUCCESS) { in soap_create_typemap() 1042 zend_hash_get_current_key_ex(ht2, &name, &name_len, &index, 0, &pos2); in soap_create_typemap() 1064 zend_hash_move_forward_ex(ht2, &pos2); in soap_create_typemap()
|
Completed in 61 milliseconds