Searched refs:pos1 (Results 1 – 6 of 6) sorted by relevance
/PHP-5.6/win32/ |
H A D | sendmail.c | 265 ((pos1 == headers_lc) || (*(pos1-1) == '\n')) in TSendMail() 270 pos1 = headers + (pos1 - headers_lc) + 5; in TSendMail() 272 RPath = estrndup(pos1, strlen(pos1)); in TSendMail() 274 RPath = estrndup(pos1, pos2 - pos1); in TSendMail() 477 …else if (headers && (pos1 = strstr(headers_lc, "cc:")) && ((pos1 == headers_lc) || (*(pos1-1) == '… in SendText() 481 pos1 = headers + (pos1 - headers_lc) + 3; in SendText() 483 tempMailTo = estrndup(pos1, strlen(pos1)); in SendText() 485 tempMailTo = estrndup(pos1, pos2 - pos1); in SendText() 536 pos1 = headers + (pos1 - headers_lc) + 4; in SendText() 538 tempMailTo = estrndup(pos1, strlen(pos1)); in SendText() [all …]
|
/PHP-5.6/ext/spl/ |
H A D | php_spl.c | 320 char *copy, *pos1, *pos2; in PHP_FUNCTION() local 330 copy = pos1 = estrndup(SPL_DEFAULT_FILE_EXTENSIONS, sizeof(SPL_DEFAULT_FILE_EXTENSIONS)-1); in PHP_FUNCTION() 332 copy = pos1 = estrndup(file_exts, file_exts_len); in PHP_FUNCTION() 335 while(pos1 && *pos1 && !EG(exception)) { in PHP_FUNCTION() 339 pos2 = strchr(pos1, ','); in PHP_FUNCTION() 341 if (spl_autoload(class_name, lc_name, class_name_len, pos1 TSRMLS_CC)) { in PHP_FUNCTION() 345 pos1 = pos2 ? pos2 + 1 : NULL; in PHP_FUNCTION()
|
/PHP-5.6/Zend/ |
H A D | zend_language_scanner.l | 331 unsigned char *pos1, *pos2; in zend_multibyte_detect_unicode() local 364 if ((pos1 = memchr(LANG_SCNG(script_org), 0, LANG_SCNG(script_org_size)))) { in zend_multibyte_detect_unicode() 368 while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) { in zend_multibyte_detect_unicode() 369 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode()
|
H A D | zend_language_scanner.c | 333 unsigned char *pos1, *pos2; in zend_multibyte_detect_unicode() local 366 if ((pos1 = memchr(LANG_SCNG(script_org), 0, LANG_SCNG(script_org_size)))) { in zend_multibyte_detect_unicode() 370 while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) { in zend_multibyte_detect_unicode() 371 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode()
|
/PHP-5.6/ext/standard/ |
H A D | string.c | 3226 static void php_similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int … argument 3239 *pos1 = p - txt1; 3252 int pos1 = 0, pos2 = 0, max; local 3254 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max); 3256 if (pos1 && pos2) { 3257 sum += php_similar_char(txt1, pos1, 3260 if ((pos1 + max < len1) && (pos2 + max < len2)) { 3261 sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,
|
/PHP-5.6/ext/soap/ |
H A D | soap.c | 1019 HashPosition pos1, pos2; in soap_create_typemap() local 1022 zend_hash_internal_pointer_reset_ex(ht, &pos1); in soap_create_typemap() 1023 while (zend_hash_get_current_data_ex(ht, (void**)&tmp, &pos1) == SUCCESS) { in soap_create_typemap() 1126 zend_hash_move_forward_ex(ht, &pos1); in soap_create_typemap()
|
Completed in 59 milliseconds