Home
last modified time | relevance | path

Searched refs:pos2 (Results 1 – 6 of 6) sorted by relevance

/PHP-5.5/win32/
H A Dsendmail.c220 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.5/Zend/
H A Dzend_language_scanner.l369 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 Dzend_language_scanner.c371 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.5/ext/spl/
H A Dphp_spl.c320 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.5/ext/standard/
H A Dstring.c3220 …similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int *pos2, int *max) argument
3234 *pos2 = q - txt2;
3246 int pos1 = 0, pos2 = 0, max; local
3248 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max);
3250 if (pos1 && pos2) {
3252 txt2, pos2);
3254 if ((pos1 + max < len1) && (pos2 + max < len2)) {
3256 txt2 + pos2 + max, len2 - pos2 - max);
/PHP-5.5/ext/soap/
H A Dsoap.c996 HashPosition pos1, pos2; in soap_create_typemap() local
1013 zend_hash_internal_pointer_reset_ex(ht2, &pos2); in soap_create_typemap()
1014 while (zend_hash_get_current_data_ex(ht2, (void**)&tmp, &pos2) == SUCCESS) { in soap_create_typemap()
1019 zend_hash_get_current_key_ex(ht2, &name, &name_len, &index, 0, &pos2); in soap_create_typemap()
1041 zend_hash_move_forward_ex(ht2, &pos2); in soap_create_typemap()

Completed in 45 milliseconds