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

/PHP_5_4/win32/
H A Dsendmail.c219 char *pos1 = NULL, *pos2 = NULL; local
270 if (NULL == (pos2 = strstr(pos1, "\r\n"))) {
273 RPath = estrndup(pos1, pos2 - pos1);
386 char *tempMailTo, *token, *pos1, *pos2; local
481 if (NULL == (pos2 = strstr(pos1, "\r\n"))) {
484 tempMailTo = estrndup(pos1, pos2 - pos1);
536 if (NULL == (pos2 = strstr(pos1, "\r\n"))) {
540 pos2 = pos1;
542 tempMailTo = estrndup(pos1, pos2 - pos1);
574 if (pos1 != pos2) {
[all...]
/PHP_5_4/ext/spl/
H A Dphp_spl.c320 char *copy, *pos1, *pos2; local
339 pos2 = strchr(pos1, ',');
340 if (pos2) *pos2 = '\0';
345 pos1 = pos2 ? pos2 + 1 : NULL;
/PHP_5_4/ext/standard/
H A Dstring.c3230 static void php_similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int *pos2, int *max) argument
3244 *pos2 = q - txt2;
3256 int pos1, pos2, max; local
3258 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max);
3260 if (pos1 && pos2) {
3262 txt2, pos2);
3264 if ((pos1 + max < len1) && (pos2 + max < len2)) {
3266 txt2 + pos2 + max, len2 - pos2 - max);
/PHP_5_4/Zend/
H A Dzend_language_scanner.c329 unsigned char *pos1, *pos2; local
364 pos2 = LANG_SCNG(script_org);
366 while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) {
367 pos2 = memchr(pos2, '_', pos1 - pos2);
368 if (!pos2) break;
369 pos2++;
370 if (strncasecmp((char*)pos2, "_HALT_COMPILER", sizeof("_HALT_COMPILER")-1) == 0) {
371 pos2
[all...]
H A Dzend_language_scanner.l327 unsigned char *pos1, *pos2;
362 pos2 = LANG_SCNG(script_org);
364 while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) {
365 pos2 = memchr(pos2, '_', pos1 - pos2);
366 if (!pos2) break;
367 pos2++;
368 if (strncasecmp((char*)pos2, "_HALT_COMPILER", sizeof("_HALT_COMPILER")-1) == 0) {
369 pos2
[all...]
/PHP_5_4/ext/soap/
H A Dsoap.c979 HashPosition pos1, pos2; local
996 zend_hash_internal_pointer_reset_ex(ht2, &pos2);
997 while (zend_hash_get_current_data_ex(ht2, (void**)&tmp, &pos2) == SUCCESS) {
1002 zend_hash_get_current_key_ex(ht2, &name, &name_len, &index, 0, &pos2);
1024 zend_hash_move_forward_ex(ht2, &pos2);

Completed in 23 milliseconds