pos1              333 Zend/zend_language_scanner.c 	unsigned char *pos1, *pos2;
pos1              366 Zend/zend_language_scanner.c 	if ((pos1 = memchr(LANG_SCNG(script_org), 0, LANG_SCNG(script_org_size)))) {
pos1              370 Zend/zend_language_scanner.c 		while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) {
pos1              371 Zend/zend_language_scanner.c 			pos2 = memchr(pos2, '_', pos1 - pos2);
pos1              998 ext/soap/soap.c 	HashPosition pos1, pos2;
pos1             1001 ext/soap/soap.c 	zend_hash_internal_pointer_reset_ex(ht, &pos1);
pos1             1002 ext/soap/soap.c 	while (zend_hash_get_current_data_ex(ht, (void**)&tmp, &pos1) == SUCCESS) {
pos1             1105 ext/soap/soap.c 		zend_hash_move_forward_ex(ht, &pos1);
pos1              320 ext/spl/php_spl.c 	char *copy, *pos1, *pos2;
pos1              330 ext/spl/php_spl.c 		copy = pos1 = estrndup(SPL_DEFAULT_FILE_EXTENSIONS, sizeof(SPL_DEFAULT_FILE_EXTENSIONS)-1);
pos1              332 ext/spl/php_spl.c 		copy = pos1 = estrndup(file_exts, file_exts_len);
pos1              335 ext/spl/php_spl.c 	while(pos1 && *pos1 && !EG(exception)) {
pos1              339 ext/spl/php_spl.c 		pos2 = strchr(pos1, ',');
pos1              341 ext/spl/php_spl.c 		if (spl_autoload(class_name, lc_name, class_name_len, pos1 TSRMLS_CC)) {
pos1              345 ext/spl/php_spl.c 		pos1 = pos2 ? pos2 + 1 : NULL;
pos1             3206 ext/standard/string.c static void php_similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int *pos2, int *max)
pos1             3219 ext/standard/string.c 				*pos1 = p - txt1;
pos1             3232 ext/standard/string.c 	int pos1 = 0, pos2 = 0, max;
pos1             3234 ext/standard/string.c 	php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max);
pos1             3236 ext/standard/string.c 		if (pos1 && pos2) {
pos1             3237 ext/standard/string.c 			sum += php_similar_char(txt1, pos1,
pos1             3240 ext/standard/string.c 		if ((pos1 + max < len1) && (pos2 + max < len2)) {
pos1             3241 ext/standard/string.c 			sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,
pos1              220 win32/sendmail.c 	char *pos1 = NULL, *pos2 = NULL;
pos1              264 win32/sendmail.c 				(pos1 = strstr(headers_lc, "from:")) &&
pos1              265 win32/sendmail.c 				((pos1 == headers_lc) || (*(pos1-1) == '\n'))
pos1              270 win32/sendmail.c 		pos1 = headers + (pos1 - headers_lc) + 5;
pos1              271 win32/sendmail.c 		if (NULL == (pos2 = strstr(pos1, "\r\n"))) {
pos1              272 win32/sendmail.c 			RPath = estrndup(pos1, strlen(pos1));
pos1              274 win32/sendmail.c 			RPath = estrndup(pos1, pos2 - pos1);
pos1              387 win32/sendmail.c 	char *tempMailTo, *token, *pos1, *pos2;
pos1              477 win32/sendmail.c 	else if (headers && (pos1 = strstr(headers_lc, "cc:")) && ((pos1 == headers_lc) || (*(pos1-1) == '\n'))) {
pos1              481 win32/sendmail.c 		pos1 = headers + (pos1 - headers_lc) + 3;
pos1              482 win32/sendmail.c 		if (NULL == (pos2 = strstr(pos1, "\r\n"))) {
pos1              483 win32/sendmail.c 			tempMailTo = estrndup(pos1, strlen(pos1));
pos1              485 win32/sendmail.c 			tempMailTo = estrndup(pos1, pos2 - pos1);
pos1              532 win32/sendmail.c 		if (pos1 = strstr(headers_lc, "bcc:")) {
pos1              536 win32/sendmail.c 			pos1 = headers + (pos1 - headers_lc) + 4;
pos1              537 win32/sendmail.c 			if (NULL == (pos2 = strstr(pos1, "\r\n"))) {
pos1              538 win32/sendmail.c 				tempMailTo = estrndup(pos1, strlen(pos1));
pos1              541 win32/sendmail.c 				pos2 = pos1;
pos1              543 win32/sendmail.c 				tempMailTo = estrndup(pos1, pos2 - pos1);
pos1              574 win32/sendmail.c 			memcpy(stripped_header, headers, pos1 - headers - 4);
pos1              575 win32/sendmail.c 			if (pos1 != pos2) {
pos1              580 win32/sendmail.c 				memcpy(stripped_header + (pos1 - headers - 4), pos2 + 2, strlen(pos2) - 2);