Searched defs:pos2 (Results 1 - 5 of 5) sorted by relevance
| /PHP_TRUNK/ext/spl/ |
| H A D | php_spl.c | 320 char *copy, *pos1, *pos2; local 339 pos2 = strchr(pos1, ','); 340 if (pos2) *pos2 = '\0'; 345 pos1 = pos2 ? pos2 + 1 : NULL;
|
| /PHP_TRUNK/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 3194 *pos2 = q - txt2; 3206 int pos1, pos2, max; local 3208 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max); 3210 if (pos1 && pos2) { 3212 txt2, pos2); 3214 if ((pos1 + max < len1) && (pos2 + max < len2)) { 3216 txt2 + pos2 + max, len2 - pos2 - max);
|
| /PHP_TRUNK/ext/soap/ |
| H A D | soap.c | 985 HashPosition pos1, pos2; local 1002 zend_hash_internal_pointer_reset_ex(ht2, &pos2); 1003 while (zend_hash_get_current_data_ex(ht2, (void**)&tmp, &pos2) == SUCCESS) { 1008 zend_hash_get_current_key_ex(ht2, &name, &name_len, &index, 0, &pos2); 1030 zend_hash_move_forward_ex(ht2, &pos2);
|
| /PHP_TRUNK/win32/ |
| H A D | sendmail.c | 220 char *pos1 = NULL, *pos2 = NULL; local 271 if (NULL == (pos2 = strstr(pos1, "\r\n"))) { 274 RPath = estrndup(pos1, pos2 - pos1); 387 char *tempMailTo, *token, *pos1, *pos2; local 482 if (NULL == (pos2 = strstr(pos1, "\r\n"))) { 485 tempMailTo = estrndup(pos1, pos2 - pos1); 537 if (NULL == (pos2 = strstr(pos1, "\r\n"))) { 541 pos2 = pos1; 543 tempMailTo = estrndup(pos1, pos2 - pos1); 575 if (pos1 != pos2) { [all...] |
| /PHP_TRUNK/Zend/ |
| H A D | zend_language_scanner.c | 333 unsigned char *pos1, *pos2; local 368 pos2 = LANG_SCNG(script_org); 370 while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) { 371 pos2 = memchr(pos2, '_', pos1 - pos2); 372 if (!pos2) break; 373 pos2++; 374 if (strncasecmp((char*)pos2, "_HALT_COMPILER", sizeof("_HALT_COMPILER")-1) == 0) { 375 pos2 [all...] |
Completed in 26 milliseconds