Searched refs:pos1 (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_5/ext/spl/ |
| H A D | php_spl.c | 320 char *copy, *pos1, *pos2; local 330 copy = pos1 = estrndup(SPL_DEFAULT_FILE_EXTENSIONS, sizeof(SPL_DEFAULT_FILE_EXTENSIONS)-1); 332 copy = pos1 = estrndup(file_exts, file_exts_len); 335 while(pos1 && *pos1 && !EG(exception)) { 339 pos2 = strchr(pos1, ','); 341 if (spl_autoload(class_name, lc_name, class_name_len, pos1 TSRMLS_CC)) { 345 pos1 = pos2 ? pos2 + 1 : NULL;
|
| /PHP_5_5/ext/standard/ |
| H A D | string.c | 3180 static void php_similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int *pos2, int *max) argument 3193 *pos1 = p - txt1; 3206 int pos1, pos2, max; local 3208 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max); 3210 if (pos1 && pos2) { 3211 sum += php_similar_char(txt1, pos1, 3214 if ((pos1 + max < len1) && (pos2 + max < len2)) { 3215 sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,
|
| /PHP_5_5/ext/soap/ |
| H A D | soap.c | 985 HashPosition pos1, pos2; local 988 zend_hash_internal_pointer_reset_ex(ht, &pos1); 989 while (zend_hash_get_current_data_ex(ht, (void**)&tmp, &pos1) == SUCCESS) { 1092 zend_hash_move_forward_ex(ht, &pos1);
|
| /PHP_5_5/win32/ |
| H A D | sendmail.c | 220 char *pos1 = NULL, *pos2 = NULL; local 264 (pos1 = strstr(headers_lc, "from:")) && 265 ((pos1 == headers_lc) || (*(pos1-1) == '\n')) 270 pos1 = headers + (pos1 - headers_lc) + 5; 271 if (NULL == (pos2 = strstr(pos1, "\r\n"))) { 272 RPath = estrndup(pos1, strlen(pos1)); 274 RPath = estrndup(pos1, pos 387 char *tempMailTo, *token, *pos1, *pos2; local [all...] |
| /PHP_5_5/Zend/ |
| H A D | zend_language_scanner.c | 333 unsigned char *pos1, *pos2; local 366 if ((pos1 = memchr(LANG_SCNG(script_org), 0, LANG_SCNG(script_org_size)))) { 370 while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) { 371 pos2 = memchr(pos2, '_', pos1 - pos2);
|
| H A D | zend_language_scanner.l | 331 unsigned char *pos1, *pos2; 364 if ((pos1 = memchr(LANG_SCNG(script_org), 0, LANG_SCNG(script_org_size)))) { 368 while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) { 369 pos2 = memchr(pos2, '_', pos1 - pos2);
|
Completed in 34 milliseconds