pos              1061 Zend/zend_API.c 			HashPosition pos;
pos              1065 Zend/zend_API.c 				for (zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos);
pos              1066 Zend/zend_API.c 				     zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop_info, &pos) == SUCCESS;
pos              1067 Zend/zend_API.c 				     zend_hash_move_forward_ex(&ce->properties_info, &pos)) {
pos              1806 Zend/zend_API.c 	HashPosition pos;
pos              1815 Zend/zend_API.c 	for (zend_hash_internal_pointer_reset_ex(&module_registry, &pos);
pos              1816 Zend/zend_API.c 	     zend_hash_get_current_data_ex(&module_registry, (void *) &module, &pos) == SUCCESS;
pos              1817 Zend/zend_API.c 	     zend_hash_move_forward_ex(&module_registry, &pos)) {
pos              1840 Zend/zend_API.c 	for (zend_hash_internal_pointer_reset_ex(&module_registry, &pos);
pos              1841 Zend/zend_API.c 	     zend_hash_get_current_data_ex(&module_registry, (void *) &module, &pos) == SUCCESS;
pos              1842 Zend/zend_API.c 	     zend_hash_move_forward_ex(&module_registry, &pos)) {
pos              1855 Zend/zend_API.c 	for (zend_hash_internal_pointer_reset_ex(CG(class_table), &pos);
pos              1856 Zend/zend_API.c 	     zend_hash_get_current_data_ex(CG(class_table), (void *) &pce, &pos) == SUCCESS;
pos              1857 Zend/zend_API.c 	     zend_hash_move_forward_ex(CG(class_table), &pos)) {
pos              1870 Zend/zend_API.c 		for (zend_hash_internal_pointer_reset_ex(CG(class_table), &pos);
pos              1871 Zend/zend_API.c 		     zend_hash_get_current_data_ex(CG(class_table), (void *) &pce, &pos) == SUCCESS;
pos              1872 Zend/zend_API.c 	    	 zend_hash_move_forward_ex(CG(class_table), &pos)) {
pos              3300 Zend/zend_API.c 	HashPosition pos;
pos              3316 Zend/zend_API.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(args), &pos);
pos              3317 Zend/zend_API.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(args), (void *) &arg, &pos) == SUCCESS) {
pos              3319 Zend/zend_API.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(args), &pos);
pos               909 Zend/zend_builtin_functions.c 	HashPosition pos;
pos               916 Zend/zend_builtin_functions.c 	zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos);
pos               917 Zend/zend_builtin_functions.c 	while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop_info, &pos) == SUCCESS) {
pos               918 Zend/zend_builtin_functions.c 		zend_hash_get_current_key_ex(&ce->properties_info, &key, &key_len, &num_index, 0, &pos);
pos               919 Zend/zend_builtin_functions.c 		zend_hash_move_forward_ex(&ce->properties_info, &pos);
pos               990 Zend/zend_builtin_functions.c 	HashPosition pos;
pos              1015 Zend/zend_builtin_functions.c 	zend_hash_internal_pointer_reset_ex(properties, &pos);
pos              1017 Zend/zend_builtin_functions.c 	while (zend_hash_get_current_data_ex(properties, (void **) &value, &pos) == SUCCESS) {
pos              1018 Zend/zend_builtin_functions.c 		if (zend_hash_get_current_key_ex(properties, &key, &key_len, &num_index, 0, &pos) == HASH_KEY_IS_STRING) {
pos              1033 Zend/zend_builtin_functions.c 		zend_hash_move_forward_ex(properties, &pos);
pos              1053 Zend/zend_builtin_functions.c 	HashPosition pos;
pos              1077 Zend/zend_builtin_functions.c 	zend_hash_internal_pointer_reset_ex(&ce->function_table, &pos);
pos              1079 Zend/zend_builtin_functions.c 	while (zend_hash_get_current_data_ex(&ce->function_table, (void **) &mptr, &pos) == SUCCESS) {
pos              1092 Zend/zend_builtin_functions.c 			if (zend_hash_get_current_key_ex(&ce->function_table, &key, &key_len, &num_index, 0, &pos) != HASH_KEY_IS_STRING) {
pos              1114 Zend/zend_builtin_functions.c 		zend_hash_move_forward_ex(&ce->function_table, &pos);
pos              1965 Zend/zend_builtin_functions.c 		HashPosition pos;
pos              1977 Zend/zend_builtin_functions.c 		zend_hash_internal_pointer_reset_ex(&module_registry, &pos);
pos              1978 Zend/zend_builtin_functions.c 		while (zend_hash_get_current_data_ex(&module_registry, (void *) &module, &pos) != FAILURE) {
pos              1981 Zend/zend_builtin_functions.c 			zend_hash_move_forward_ex(&module_registry, &pos);
pos              1985 Zend/zend_builtin_functions.c 		zend_hash_internal_pointer_reset_ex(EG(zend_constants), &pos);
pos              1986 Zend/zend_builtin_functions.c 		while (zend_hash_get_current_data_ex(EG(zend_constants), (void **) &val, &pos) != FAILURE) {
pos              2016 Zend/zend_builtin_functions.c 			zend_hash_move_forward_ex(EG(zend_constants), &pos);
pos               984 Zend/zend_hash.c 	ptr->pos = ht->pInternalPointer;
pos               996 Zend/zend_hash.c 	if (ptr->pos == NULL) {
pos               998 Zend/zend_hash.c 	} else if (ht->pInternalPointer != ptr->pos) {
pos              1004 Zend/zend_hash.c 			if (p == ptr->pos) {
pos              1015 Zend/zend_hash.c ZEND_API void zend_hash_internal_pointer_reset_ex(HashTable *ht, HashPosition *pos)
pos              1019 Zend/zend_hash.c 	if (pos)
pos              1020 Zend/zend_hash.c 		*pos = ht->pListHead;
pos              1029 Zend/zend_hash.c ZEND_API void zend_hash_internal_pointer_end_ex(HashTable *ht, HashPosition *pos)
pos              1033 Zend/zend_hash.c 	if (pos)
pos              1034 Zend/zend_hash.c 		*pos = ht->pListTail;
pos              1040 Zend/zend_hash.c ZEND_API int zend_hash_move_forward_ex(HashTable *ht, HashPosition *pos)
pos              1042 Zend/zend_hash.c 	HashPosition *current = pos ? pos : &ht->pInternalPointer;
pos              1053 Zend/zend_hash.c ZEND_API int zend_hash_move_backwards_ex(HashTable *ht, HashPosition *pos)
pos              1055 Zend/zend_hash.c 	HashPosition *current = pos ? pos : &ht->pInternalPointer;
pos              1068 Zend/zend_hash.c ZEND_API int zend_hash_get_current_key_ex(const HashTable *ht, char **str_index, uint *str_length, ulong *num_index, zend_bool duplicate, HashPosition *pos)
pos              1072 Zend/zend_hash.c 	p = pos ? (*pos) : ht->pInternalPointer;
pos              1095 Zend/zend_hash.c ZEND_API void zend_hash_get_current_key_zval_ex(const HashTable *ht, zval *key, HashPosition *pos) {
pos              1100 Zend/zend_hash.c 	p = pos ? (*pos) : ht->pInternalPointer;
pos              1114 Zend/zend_hash.c ZEND_API int zend_hash_get_current_key_type_ex(HashTable *ht, HashPosition *pos)
pos              1118 Zend/zend_hash.c 	p = pos ? (*pos) : ht->pInternalPointer;
pos              1133 Zend/zend_hash.c ZEND_API int zend_hash_get_current_data_ex(HashTable *ht, void **pData, HashPosition *pos)
pos              1137 Zend/zend_hash.c 	p = pos ? (*pos) : ht->pInternalPointer;
pos              1152 Zend/zend_hash.c ZEND_API int zend_hash_update_current_key_ex(HashTable *ht, int key_type, const char *str_index, uint str_length, ulong num_index, int mode, HashPosition *pos)
pos              1160 Zend/zend_hash.c 	p = pos ? (*pos) : ht->pInternalPointer;
pos              1263 Zend/zend_hash.c 			if (pos) {
pos              1264 Zend/zend_hash.c 				*pos = q;
pos              1303 Zend/zend_hash.c 	int pos;
pos              1310 Zend/zend_hash.c 	for (pos = 0, p = ht->pListHead; pos < offset && p; pos++, p = p->pListNext);
pos              1312 Zend/zend_hash.c 	while (pos < offset + length && p) {
pos              1335 Zend/zend_hash.c 		pos++;
pos               175 Zend/zend_hash.h #define zend_hash_has_more_elements_ex(ht, pos) \
pos               176 Zend/zend_hash.h 	(zend_hash_get_current_key_type_ex(ht, pos) == HASH_KEY_NON_EXISTENT ? FAILURE : SUCCESS)
pos               177 Zend/zend_hash.h ZEND_API int zend_hash_move_forward_ex(HashTable *ht, HashPosition *pos);
pos               178 Zend/zend_hash.h ZEND_API int zend_hash_move_backwards_ex(HashTable *ht, HashPosition *pos);
pos               179 Zend/zend_hash.h ZEND_API int zend_hash_get_current_key_ex(const HashTable *ht, char **str_index, uint *str_length, ulong *num_index, zend_bool duplicate, HashPosition *pos);
pos               180 Zend/zend_hash.h ZEND_API void zend_hash_get_current_key_zval_ex(const HashTable *ht, zval *key, HashPosition *pos);
pos               181 Zend/zend_hash.h ZEND_API int zend_hash_get_current_key_type_ex(HashTable *ht, HashPosition *pos);
pos               182 Zend/zend_hash.h ZEND_API int zend_hash_get_current_data_ex(HashTable *ht, void **pData, HashPosition *pos);
pos               183 Zend/zend_hash.h ZEND_API void zend_hash_internal_pointer_reset_ex(HashTable *ht, HashPosition *pos);
pos               184 Zend/zend_hash.h ZEND_API void zend_hash_internal_pointer_end_ex(HashTable *ht, HashPosition *pos);
pos               185 Zend/zend_hash.h ZEND_API int zend_hash_update_current_key_ex(HashTable *ht, int key_type, const char *str_index, uint str_length, ulong num_index, int mode, HashPosition *pos);
pos               188 Zend/zend_hash.h 	HashPosition pos;
pos               383 Zend/zend_hash.h static inline int zend_symtable_update_current_key_ex(HashTable *ht, const char *arKey, uint nKeyLength, int mode, HashPosition *pos)
pos               385 Zend/zend_hash.h 	ZEND_HANDLE_NUMERIC(arKey, nKeyLength, zend_hash_update_current_key_ex(ht, HASH_KEY_IS_LONG, NULL, 0, idx, mode, pos));
pos               386 Zend/zend_hash.h 	return zend_hash_update_current_key_ex(ht, HASH_KEY_IS_STRING, arKey, nKeyLength, 0, mode, pos);
pos               318 Zend/zend_list.c 	HashPosition pos;
pos               320 Zend/zend_list.c 	zend_hash_internal_pointer_reset_ex(&list_destructors, &pos);
pos               321 Zend/zend_list.c 	while (zend_hash_get_current_data_ex(&list_destructors, (void **)&lde, &pos) == SUCCESS) {
pos               328 Zend/zend_list.c 		zend_hash_move_forward_ex(&list_destructors, &pos);
pos               258 Zend/zend_llist.c ZEND_API void *zend_llist_get_first_ex(zend_llist *l, zend_llist_position *pos)
pos               260 Zend/zend_llist.c 	zend_llist_position *current = pos ? pos : &l->traverse_ptr;
pos               271 Zend/zend_llist.c ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos)
pos               273 Zend/zend_llist.c 	zend_llist_position *current = pos ? pos : &l->traverse_ptr;
pos               284 Zend/zend_llist.c ZEND_API void *zend_llist_get_next_ex(zend_llist *l, zend_llist_position *pos)
pos               286 Zend/zend_llist.c 	zend_llist_position *current = pos ? pos : &l->traverse_ptr;
pos               298 Zend/zend_llist.c ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos)
pos               300 Zend/zend_llist.c 	zend_llist_position *current = pos ? pos : &l->traverse_ptr;
pos                66 Zend/zend_llist.h ZEND_API void *zend_llist_get_first_ex(zend_llist *l, zend_llist_position *pos);
pos                67 Zend/zend_llist.h ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos);
pos                68 Zend/zend_llist.h ZEND_API void *zend_llist_get_next_ex(zend_llist *l, zend_llist_position *pos);
pos                69 Zend/zend_llist.h ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos);
pos                69 Zend/zend_object_handlers.c 		HashPosition pos;
pos                76 Zend/zend_object_handlers.c 			for (zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos);
pos                77 Zend/zend_object_handlers.c 			     zend_hash_get_current_data_ex(&ce->properties_info, (void**)&prop_info, &pos) == SUCCESS;
pos                78 Zend/zend_object_handlers.c 			     zend_hash_move_forward_ex(&ce->properties_info, &pos)) {
pos                88 Zend/zend_object_handlers.c 				for (zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos);
pos                89 Zend/zend_object_handlers.c 				     zend_hash_get_current_data_ex(&ce->properties_info, (void**)&prop_info, &pos) == SUCCESS;
pos                90 Zend/zend_object_handlers.c 				     zend_hash_move_forward_ex(&ce->properties_info, &pos)) {
pos               190 Zend/zend_objects.c 			HashPosition pos;
pos               192 Zend/zend_objects.c 			for (zend_hash_internal_pointer_reset_ex(&old_object->ce->properties_info, &pos);
pos               193 Zend/zend_objects.c 			     zend_hash_get_current_data_ex(&old_object->ce->properties_info, (void**)&prop_info, &pos) == SUCCESS;
pos               194 Zend/zend_objects.c 			     zend_hash_move_forward_ex(&old_object->ce->properties_info, &pos)) {
pos              1915 Zend/zend_operators.c 	int pos=Z_STRLEN_P(str)-1;
pos              1932 Zend/zend_operators.c 	while (pos >= 0) {
pos              1933 Zend/zend_operators.c 		ch = s[pos];
pos              1936 Zend/zend_operators.c 				s[pos] = 'a';
pos              1939 Zend/zend_operators.c 				s[pos]++;
pos              1945 Zend/zend_operators.c 				s[pos] = 'A';
pos              1948 Zend/zend_operators.c 				s[pos]++;
pos              1954 Zend/zend_operators.c 				s[pos] = '0';
pos              1957 Zend/zend_operators.c 				s[pos]++;
pos              1968 Zend/zend_operators.c 		pos--;
pos                27 Zend/zend_static_allocator.c 	block->pos = block->bp = (char *) emalloc(block_size);
pos                33 Zend/zend_static_allocator.c 	char *retval = block->pos;
pos                34 Zend/zend_static_allocator.c 	if ((block->pos += size) >= block->end) {
pos                33 Zend/zend_static_allocator.h 	char *pos;
pos                89 Zend/zend_stream.c 	stream->mmap.pos = 0;
pos               213 Zend/zend_stream.c 			file_handle->handle.stream.mmap.pos = 0;
pos               291 Zend/zend_stream.c 	file_handle->handle.stream.mmap.pos        = 0;
pos                46 Zend/zend_stream.h 	size_t      pos;
pos              3246 Zend/zend_vm_def.h 			HashPosition pos;
pos              3251 Zend/zend_vm_def.h 			for (zend_hash_internal_pointer_reset_ex(ht, &pos);
pos              3252 Zend/zend_vm_def.h 			     zend_hash_get_current_data_ex(ht, (void **) &arg_ptr, &pos) == SUCCESS;
pos              3253 Zend/zend_vm_def.h 			     zend_hash_move_forward_ex(ht, &pos), ++arg_num
pos              3259 Zend/zend_vm_def.h 				if (zend_hash_get_current_key_ex(ht, &name, &name_len, &index, 0, &pos) == HASH_KEY_IS_STRING) {
pos               722 Zend/zend_vm_execute.h 			HashPosition pos;
pos               727 Zend/zend_vm_execute.h 			for (zend_hash_internal_pointer_reset_ex(ht, &pos);
pos               728 Zend/zend_vm_execute.h 			     zend_hash_get_current_data_ex(ht, (void **) &arg_ptr, &pos) == SUCCESS;
pos               729 Zend/zend_vm_execute.h 			     zend_hash_move_forward_ex(ht, &pos), ++arg_num
pos               735 Zend/zend_vm_execute.h 				if (zend_hash_get_current_key_ex(ht, &name, &name_len, &index, 0, &pos) == HASH_KEY_IS_STRING) {
pos                39 ext/com_dotnet/com_variant.c 	HashPosition pos;
pos                49 ext/com_dotnet/com_variant.c 	zend_hash_internal_pointer_reset_ex(HASH_OF(z), &pos);
pos                50 ext/com_dotnet/com_variant.c 	for (;; zend_hash_move_forward_ex(HASH_OF(z), &pos)) {
pos                52 ext/com_dotnet/com_variant.c 		keytype = zend_hash_get_current_key_ex(HASH_OF(z), &strindex, &strindexlen, &intindex, 0, &pos);
pos                74 ext/com_dotnet/com_variant.c 	zend_hash_internal_pointer_reset_ex(HASH_OF(z), &pos);
pos                75 ext/com_dotnet/com_variant.c 	for (;; zend_hash_move_forward_ex(HASH_OF(z), &pos)) {
pos                76 ext/com_dotnet/com_variant.c 		if (FAILURE == zend_hash_get_current_data_ex(HASH_OF(z), (void**)&item, &pos)) {
pos                79 ext/com_dotnet/com_variant.c 		zend_hash_get_current_key_ex(HASH_OF(z), &strindex, &strindexlen, &intindex, 0, &pos);
pos               453 ext/com_dotnet/com_wrapper.c 	HashPosition pos;
pos               469 ext/com_dotnet/com_wrapper.c 		zend_hash_internal_pointer_reset_ex(Z_OBJPROP_P(disp->object), &pos);
pos               472 ext/com_dotnet/com_wrapper.c 			   	&namelen, &pid, 0, &pos))) {
pos               480 ext/com_dotnet/com_wrapper.c 			zend_hash_move_forward_ex(Z_OBJPROP_P(disp->object), &pos);
pos               500 ext/com_dotnet/com_wrapper.c 		zend_hash_internal_pointer_reset_ex(&Z_OBJCE_P(disp->object)->function_table, &pos);
pos               503 ext/com_dotnet/com_wrapper.c 			 	&name, &namelen, &pid, 0, &pos))) {
pos               512 ext/com_dotnet/com_wrapper.c 			zend_hash_move_forward_ex(Z_OBJPROP_P(disp->object), &pos);
pos               585 ext/com_dotnet/com_wrapper.c 	HashPosition pos;
pos               600 ext/com_dotnet/com_wrapper.c 	zend_hash_internal_pointer_reset_ex(id_to_name, &pos);
pos               602 ext/com_dotnet/com_wrapper.c 				zend_hash_get_current_key_ex(id_to_name, &name, &namelen, &pid, 0, &pos))) {
pos               606 ext/com_dotnet/com_wrapper.c 			zend_hash_get_current_data_ex(id_to_name, (void**)&ntmp, &pos);
pos               614 ext/com_dotnet/com_wrapper.c 		zend_hash_move_forward_ex(id_to_name, &pos);
pos              2926 ext/curl/interface.c 	HashPosition	pos;
pos              2936 ext/curl/interface.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(arr), &pos);
pos              2937 ext/curl/interface.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(arr), (void **)&entry, &pos) == SUCCESS) {
pos              2938 ext/curl/interface.c 		if (zend_hash_get_current_key_ex(Z_ARRVAL_P(arr), &string_key, &str_key_len, &option, 0, &pos) != HASH_KEY_IS_LONG) {
pos              2945 ext/curl/interface.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(arr), &pos);
pos               213 ext/curl/multi.c 		zend_llist_position pos;
pos               217 ext/curl/multi.c 		for(pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch;
pos               218 ext/curl/multi.c 			pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) {
pos               290 ext/curl/multi.c 		zend_llist_position pos;
pos               295 ext/curl/multi.c 		for(pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch;
pos               296 ext/curl/multi.c 			pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) {
pos               343 ext/curl/multi.c 		zend_llist_position pos;
pos               347 ext/curl/multi.c 		for(pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch;
pos               348 ext/curl/multi.c 			pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) {
pos               158 ext/date/lib/parse_date.c 	uchar        *lim, *str, *ptr, *cur, *tok, *pos;
pos               322 ext/date/lib/parse_date.c 			s->pos -= cnt;
pos               331 ext/date/lib/parse_date.c 			s->pos = &buf[s->pos - s->bot];
pos              2358 ext/date/lib/parse_date.c 		s->pos = cursor; s->line++;
pos                97 ext/date/lib/parse_iso_intervals.c 	uchar        *lim, *str, *ptr, *cur, *tok, *pos;
pos               400 ext/date/lib/parse_iso_intervals.c 		s->pos = cursor; s->line++;
pos               327 ext/date/lib/parse_tz.c 			(*tzf) = &(tzdb->data[tzdb->index[mid].pos]);
pos               289 ext/date/lib/timelib_structs.h 	unsigned int pos;
pos              4623 ext/date/php_date.c 			if (tzdb->data[table[i].pos + 5] == option[0] && tzdb->data[table[i].pos + 6] == option[1]) {
pos              4626 ext/date/php_date.c 		} else if (what == PHP_DATE_TIMEZONE_GROUP_ALL_W_BC || (check_id_allowed(table[i].id, what) && (tzdb->data[table[i].pos + 4] == '\1'))) {
pos               207 ext/dba/dba.c  		HashPosition pos;
pos               214 ext/dba/dba.c  		zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(key), &pos);
pos               215 ext/dba/dba.c  		zend_hash_get_current_data_ex(Z_ARRVAL_P(key), (void **) &group, &pos);
pos               216 ext/dba/dba.c  		zend_hash_move_forward_ex(Z_ARRVAL_P(key), &pos);
pos               217 ext/dba/dba.c  		zend_hash_get_current_data_ex(Z_ARRVAL_P(key), (void **) &name, &pos);
pos                60 ext/dba/dba_cdb.c 	uint32 pos; /* current position for traversing */
pos               140 ext/dba/dba_cdb.c # define php_cdb_read(cdb, buf, len, pos) cdb_read(cdb, buf, len, pos TSRMLS_CC)
pos               144 ext/dba/dba_cdb.c # define php_cdb_read(cdb, buf, len, pos) cdb_read(cdb, buf, len, pos)
pos               281 ext/dba/dba_cdb.c 	cdb->pos = 2048 + 4       + 4       + klen + dlen;
pos               298 ext/dba/dba_cdb.c 	CSEEK(cdb->pos);
pos               312 ext/dba/dba_cdb.c 	cdb->pos += 8 + klen + dlen;
pos                46 ext/dba/libcdb/cdb.c static int cdb_match(struct cdb *c, char *key, unsigned int len, uint32 pos TSRMLS_DC)
pos                55 ext/dba/libcdb/cdb.c 		if (cdb_read(c, buf, n, pos TSRMLS_CC) == -1) 
pos                59 ext/dba/libcdb/cdb.c 		pos += n;
pos               104 ext/dba/libcdb/cdb.c int cdb_read(struct cdb *c, char *buf, unsigned int len, uint32 pos TSRMLS_DC)
pos               106 ext/dba/libcdb/cdb.c 	if (php_stream_seek(c->fp, pos, SEEK_SET) == -1) {
pos               132 ext/dba/libcdb/cdb.c 	uint32 pos;
pos               153 ext/dba/libcdb/cdb.c 		uint32_unpack(buf + 4, &pos);
pos               154 ext/dba/libcdb/cdb.c 		if (!pos) 
pos               162 ext/dba/libcdb/cdb.c 			if (cdb_read(c, buf, 8, pos TSRMLS_CC) == -1) 
pos               166 ext/dba/libcdb/cdb.c 			switch(cdb_match(c, key, len, pos + 8 TSRMLS_CC)) {
pos               171 ext/dba/libcdb/cdb.c 				c->dpos = pos + 8 + len;
pos                48 ext/dba/libcdb/cdb_make.c 	uint32 newpos = c->pos + len;
pos                53 ext/dba/libcdb/cdb_make.c 	c->pos = newpos;
pos                66 ext/dba/libcdb/cdb_make.c 	c->pos = sizeof(c->final);
pos                67 ext/dba/libcdb/cdb_make.c 	if (php_stream_seek(f, c->pos, SEEK_SET) == -1) {
pos                90 ext/dba/libcdb/cdb_make.c 	head->hp[head->num].p = c->pos;
pos               196 ext/dba/libcdb/cdb_make.c 		uint32_pack(c->final + 8 * i,c->pos);
pos                52 ext/dba/libcdb/cdb_make.h 	uint32 pos;
pos               112 ext/dba/libflatfile/flatfile.c 	size_t pos;
pos               125 ext/dba/libflatfile/flatfile.c 		pos = php_stream_tell(dba->fp);
pos               131 ext/dba/libflatfile/flatfile.c 			php_stream_seek(dba->fp, pos, SEEK_SET);
pos                77 ext/dba/libinifile/inifile.c 	ln->pos = 0;
pos               169 ext/dba/libinifile/inifile.c 	char *pos;
pos               178 ext/dba/libinifile/inifile.c 				pos = strchr(fline+1, ']');
pos               179 ext/dba/libinifile/inifile.c 				if (pos) {
pos               180 ext/dba/libinifile/inifile.c 					*pos = '\0';
pos               184 ext/dba/libinifile/inifile.c 					ln->pos = php_stream_tell(dba->fp);
pos               192 ext/dba/libinifile/inifile.c 				pos = strchr(fline, '=');
pos               193 ext/dba/libinifile/inifile.c 				if (pos) {
pos               194 ext/dba/libinifile/inifile.c 					*pos = '\0';
pos               203 ext/dba/libinifile/inifile.c 					ln->val.value = etrim(pos+1);
pos               204 ext/dba/libinifile/inifile.c 					ln->pos = php_stream_tell(dba->fp);
pos               252 ext/dba/libinifile/inifile.c 		php_stream_seek(dba->fp, dba->next.pos, SEEK_SET);
pos               269 ext/dba/libinifile/inifile.c 				dba->next.pos = php_stream_tell(dba->fp);
pos               281 ext/dba/libinifile/inifile.c 	dba->next.pos = php_stream_tell(dba->fp);
pos               290 ext/dba/libinifile/inifile.c 	dba->curr.pos = 0;
pos               301 ext/dba/libinifile/inifile.c 	php_stream_seek(dba->fp, dba->curr.pos, SEEK_SET);
pos                36 ext/dba/libinifile/inifile.h 	size_t pos;
pos               476 ext/dom/php_dom.c 	HashPosition		pos;
pos               500 ext/dom/php_dom.c 	for (zend_hash_internal_pointer_reset_ex(prop_handlers, &pos);
pos               501 ext/dom/php_dom.c 			zend_hash_get_current_data_ex(prop_handlers, (void **)&entry, &pos)
pos               503 ext/dom/php_dom.c 			zend_hash_move_forward_ex(prop_handlers, &pos)) {
pos               514 ext/dom/php_dom.c 			&string_length, &num_key, 0, &pos) != HASH_KEY_IS_STRING) {
pos               538 ext/enchant/enchant.c 	int pos;
pos               553 ext/enchant/enchant.c 		pos = pbroker->dictcnt++;
pos               558 ext/enchant/enchant.c 			pos = 0;
pos               561 ext/enchant/enchant.c 		dict = pbroker->dict[pos] = (enchant_dict *)emalloc(sizeof(enchant_dict));
pos               562 ext/enchant/enchant.c 		dict->id = pos;
pos               565 ext/enchant/enchant.c 		dict->prev = pos ? pbroker->dict[pos-1] : NULL;
pos               567 ext/enchant/enchant.c 		pbroker->dict[pos] = dict;
pos               569 ext/enchant/enchant.c 		if (pos) {
pos               570 ext/enchant/enchant.c 			pbroker->dict[pos-1]->next = dict;
pos               591 ext/enchant/enchant.c 	int pos;
pos               609 ext/enchant/enchant.c 		pos = pbroker->dictcnt++;
pos               614 ext/enchant/enchant.c 			pos = 0;
pos               617 ext/enchant/enchant.c 		dict = pbroker->dict[pos] = (enchant_dict *)emalloc(sizeof(enchant_dict));
pos               618 ext/enchant/enchant.c 		dict->id = pos;
pos               621 ext/enchant/enchant.c 		dict->prev = pos?pbroker->dict[pos-1]:NULL;
pos               623 ext/enchant/enchant.c 		pbroker->dict[pos] = dict;
pos               624 ext/enchant/enchant.c 		if (pos) {
pos               625 ext/enchant/enchant.c 			pbroker->dict[pos-1]->next = dict;
pos               413 ext/ereg/ereg.c 	int pos, tmp, string_len, new_l;
pos               440 ext/ereg/ereg.c 	err = pos = 0;
pos               443 ext/ereg/ereg.c 		err = regexec(&re, &string[pos], re.re_nsub+1, subs, (pos ? REG_NOTBOL : 0));
pos               484 ext/ereg/ereg.c 			strncat(buf, &string[pos], subs[0].rm_so);
pos               496 ext/ereg/ereg.c 						memcpy (walkbuf, &string[pos + subs[walk[1] - '0'].rm_so], tmp);
pos               508 ext/ereg/ereg.c 				if (subs[0].rm_so + pos >= string_len) {
pos               519 ext/ereg/ereg.c 				pos += subs[0].rm_eo + 1;
pos               520 ext/ereg/ereg.c 				buf [new_l-1] = string [pos-1];
pos               523 ext/ereg/ereg.c 				pos += subs[0].rm_eo;
pos               526 ext/ereg/ereg.c 			new_l = strlen(buf) + strlen(&string[pos]);
pos               535 ext/ereg/ereg.c 			strlcat(buf, &string[pos], buf_len);
pos                61 ext/ereg/regex/regcomp.c #define	INSERT(op, pos)	doinsert(p, (sop)(op), HERE()-(pos)+1, pos)
pos                62 ext/ereg/regex/regcomp.c #define	AHEAD(pos)		dofwd(p, pos, HERE()-(pos))
pos                63 ext/ereg/regex/regcomp.c #define	ASTERN(sop, pos)	EMIT(sop, HERE()-pos)
pos               250 ext/ereg/regex/regcomp.c 	register sopno pos;
pos               259 ext/ereg/regex/regcomp.c 	pos = HERE();
pos               343 ext/ereg/regex/regcomp.c 		INSERT(OPLUS_, pos);
pos               344 ext/ereg/regex/regcomp.c 		ASTERN(O_PLUS, pos);
pos               345 ext/ereg/regex/regcomp.c 		INSERT(OQUEST_, pos);
pos               346 ext/ereg/regex/regcomp.c 		ASTERN(O_QUEST, pos);
pos               349 ext/ereg/regex/regcomp.c 		INSERT(OPLUS_, pos);
pos               350 ext/ereg/regex/regcomp.c 		ASTERN(O_PLUS, pos);
pos               354 ext/ereg/regex/regcomp.c 		INSERT(OCH_, pos);		/* offset slightly wrong */
pos               355 ext/ereg/regex/regcomp.c 		ASTERN(OOR1, pos);		/* this one's right */
pos               356 ext/ereg/regex/regcomp.c 		AHEAD(pos);			/* fix the OCH_ */
pos               371 ext/ereg/regex/regcomp.c 		repeat(p, pos, count, count2);
pos               456 ext/ereg/regex/regcomp.c 	register sopno pos;
pos               461 ext/ereg/regex/regcomp.c 	pos = HERE();		/* repetion op, if any, covers from here */
pos               535 ext/ereg/regex/regcomp.c 		INSERT(OPLUS_, pos);
pos               536 ext/ereg/regex/regcomp.c 		ASTERN(O_PLUS, pos);
pos               537 ext/ereg/regex/regcomp.c 		INSERT(OQUEST_, pos);
pos               538 ext/ereg/regex/regcomp.c 		ASTERN(O_QUEST, pos);
pos               549 ext/ereg/regex/regcomp.c 		repeat(p, pos, count, count2);
pos              1406 ext/ereg/regex/regcomp.c doinsert(p, op, opnd, pos)
pos              1410 ext/ereg/regex/regcomp.c sopno pos;
pos              1426 ext/ereg/regex/regcomp.c 	assert(pos > 0);
pos              1428 ext/ereg/regex/regcomp.c 		if (p->pbegin[i] >= pos) {
pos              1431 ext/ereg/regex/regcomp.c 		if (p->pend[i] >= pos) {
pos              1436 ext/ereg/regex/regcomp.c 	memmove((char *)&p->strip[pos+1], (char *)&p->strip[pos],
pos              1437 ext/ereg/regex/regcomp.c 						(HERE()-pos-1)*sizeof(sop));
pos              1438 ext/ereg/regex/regcomp.c 	p->strip[pos] = s;
pos              1446 ext/ereg/regex/regcomp.c dofwd(p, pos, value)
pos              1448 ext/ereg/regex/regcomp.c register sopno pos;
pos              1456 ext/ereg/regex/regcomp.c 	p->strip[pos] = OP(p->strip[pos]) | value;
pos              3438 ext/exif/exif.c 	size_t          length=2, pos=0;
pos              3451 ext/exif/exif.c 		pos += length;
pos              3452 ext/exif/exif.c 		if (pos>=ImageInfo->Thumbnail.size)
pos              3454 ext/exif/exif.c 		c = data[pos++];
pos              3455 ext/exif/exif.c 		if (pos>=ImageInfo->Thumbnail.size)
pos              3461 ext/exif/exif.c 		while ((c = data[pos++]) == 0xFF && n--) {
pos              3462 ext/exif/exif.c 			if (pos+3>=ImageInfo->Thumbnail.size)
pos              3469 ext/exif/exif.c 		length = php_jpg_get16(data+pos);
pos              3470 ext/exif/exif.c 		if (pos+length>=ImageInfo->Thumbnail.size) {
pos              3474 ext/exif/exif.c 		exif_error_docref(NULL EXIFERR_CC, ImageInfo, E_NOTICE, "Thumbnail: process section(x%02X=%s) @ x%04X + x%04X", marker, exif_get_markername(marker), pos, length);
pos              3491 ext/exif/exif.c 				exif_process_SOFn(data+pos, marker, &sof_info);
pos               358 ext/fileinfo/libmagic/cdf.c 	size_t pos = CDF_SEC_POS(h, id);
pos               360 ext/fileinfo/libmagic/cdf.c 	return cdf_read(info, (off_t)pos, ((char *)buf) + offs, len);
pos               368 ext/fileinfo/libmagic/cdf.c 	size_t pos = CDF_SHORT_SEC_POS(h, id);
pos               370 ext/fileinfo/libmagic/cdf.c 	if (pos + len > CDF_SEC_SIZE(h) * sst->sst_len) {
pos               373 ext/fileinfo/libmagic/cdf.c 		    pos + len, CDF_SEC_SIZE(h) * sst->sst_len));
pos               377 ext/fileinfo/libmagic/cdf.c 	    ((const char *)sst->sst_tab) + pos, len);
pos               501 ext/filter/filter.c 		HashPosition pos;
pos               507 ext/filter/filter.c 		for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_PP(value), &pos);
pos               508 ext/filter/filter.c 			 zend_hash_get_current_data_ex(Z_ARRVAL_PP(value), (void **) &element, &pos) == SUCCESS;
pos               509 ext/filter/filter.c 			 zend_hash_move_forward_ex(Z_ARRVAL_PP(value), &pos)
pos               686 ext/filter/filter.c 	HashPosition pos;
pos               701 ext/filter/filter.c 		for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_PP(op), &pos);
pos               702 ext/filter/filter.c 			zend_hash_get_current_data_ex(Z_ARRVAL_PP(op), (void **) &arg_elm, &pos) == SUCCESS;
pos               703 ext/filter/filter.c 			zend_hash_move_forward_ex(Z_ARRVAL_PP(op), &pos))
pos               705 ext/filter/filter.c 			if (zend_hash_get_current_key_ex(Z_ARRVAL_PP(op), &arg_key, &arg_key_len, &index, 0, &pos) != HASH_KEY_IS_STRING) {
pos              1541 ext/gd/gd.c    	HashPosition pos;
pos              1552 ext/gd/gd.c    	zend_hash_internal_pointer_reset_ex(HASH_OF(styles), &pos);
pos              1554 ext/gd/gd.c    	for (index = 0;; zend_hash_move_forward_ex(HASH_OF(styles), &pos))	{
pos              1557 ext/gd/gd.c    		if (zend_hash_get_current_data_ex(HASH_OF(styles), (void **) &item, &pos) == FAILURE) {
pos              3853 ext/gd/gd.c    		HashPosition pos;
pos              3856 ext/gd/gd.c    		zend_hash_internal_pointer_reset_ex(HASH_OF(EXT), &pos);
pos              3862 ext/gd/gd.c    			if (zend_hash_get_current_key_ex(HASH_OF(EXT), &key, NULL, &num_key, 0, &pos) != HASH_KEY_IS_STRING) {
pos              3866 ext/gd/gd.c    			if (zend_hash_get_current_data_ex(HASH_OF(EXT), (void **) &item, &pos) == FAILURE) {
pos              3876 ext/gd/gd.c    		} while (zend_hash_move_forward_ex(HASH_OF(EXT), &pos) == SUCCESS);
pos               134 ext/gd/libgd/gd_io.c int gdSeek (gdIOCtx * ctx, const int pos)
pos               137 ext/gd/libgd/gd_io.c 	return ((ctx->seek) (ctx, pos));
pos                35 ext/gd/libgd/gd_io_dp.c 	int pos;
pos               146 ext/gd/libgd/gd_io_dp.c 	return (dctx->dp->pos);
pos               149 ext/gd/libgd/gd_io_dp.c static int dynamicSeek (struct gdIOCtx *ctx, const int pos)
pos               162 ext/gd/libgd/gd_io_dp.c 	bytesNeeded = pos;
pos               174 ext/gd/libgd/gd_io_dp.c 	if (pos > dp->logicalSize) {
pos               175 ext/gd/libgd/gd_io_dp.c 		dp->logicalSize = pos;
pos               178 ext/gd/libgd/gd_io_dp.c 	dp->pos = pos;
pos               191 ext/gd/libgd/gd_io_dp.c 	dp->pos = 0;
pos               236 ext/gd/libgd/gd_io_dp.c 	remain = dp->logicalSize - dp->pos;
pos               246 ext/gd/libgd/gd_io_dp.c 	memcpy(buf, (void *) ((char *) dp->data + dp->pos), rlen);
pos               247 ext/gd/libgd/gd_io_dp.c 	dp->pos += rlen;
pos               287 ext/gd/libgd/gd_io_dp.c 	dp->pos = 0;
pos               303 ext/gd/libgd/gd_io_dp.c 	bytesNeeded = dp->pos + size;
pos               317 ext/gd/libgd/gd_io_dp.c 	memcpy((void *) (tmp + (dp->pos)), src, size);
pos               318 ext/gd/libgd/gd_io_dp.c 	dp->pos += size;
pos               320 ext/gd/libgd/gd_io_dp.c 	if (dp->pos > dp->logicalSize) {
pos               321 ext/gd/libgd/gd_io_dp.c 		dp->logicalSize = dp->pos;
pos               114 ext/gd/libgd/gd_io_file.c static int fileSeek (struct gdIOCtx *ctx, const int pos)
pos               119 ext/gd/libgd/gd_io_file.c 	return (fseek (fctx->f, pos, SEEK_SET) == 0);
pos                96 ext/gd/libgd/gd_wbmp.c 	int x, y, pos;
pos               105 ext/gd/libgd/gd_wbmp.c 	pos = 0;
pos               109 ext/gd/libgd/gd_wbmp.c 				wbmp->bitmap[pos] = WBMP_BLACK;
pos               111 ext/gd/libgd/gd_wbmp.c 			pos++;
pos               133 ext/gd/libgd/gd_wbmp.c 	int col, row, pos;
pos               150 ext/gd/libgd/gd_wbmp.c 	pos = 0;
pos               153 ext/gd/libgd/gd_wbmp.c 			if (wbmp->bitmap[pos++] == WBMP_WHITE) {
pos               153 ext/gd/libgd/wbmp.c   int row, col, byte, pel, pos;
pos               205 ext/gd/libgd/wbmp.c   pos = 0;
pos               218 ext/gd/libgd/wbmp.c 		      wbmp->bitmap[pos] = WBMP_WHITE;
pos               222 ext/gd/libgd/wbmp.c 		      wbmp->bitmap[pos] = WBMP_BLACK;
pos               224 ext/gd/libgd/wbmp.c 		  pos++;
pos               597 ext/hash/hash.c 	HashPosition pos;
pos               604 ext/hash/hash.c 	for(zend_hash_internal_pointer_reset_ex(&php_hash_hashtable, &pos);
pos               605 ext/hash/hash.c 		(type = zend_hash_get_current_key_ex(&php_hash_hashtable, &str, &str_len, &idx, 0, &pos)) != HASH_KEY_NON_EXISTENT;
pos               606 ext/hash/hash.c 		zend_hash_move_forward_ex(&php_hash_hashtable, &pos)) {
pos              1085 ext/hash/hash.c 	HashPosition pos;
pos              1091 ext/hash/hash.c 	for(zend_hash_internal_pointer_reset_ex(&php_hash_hashtable, &pos);
pos              1092 ext/hash/hash.c 		(type = zend_hash_get_current_key_ex(&php_hash_hashtable, &str, NULL, &idx, 0, &pos)) != HASH_KEY_NON_EXISTENT;
pos              1093 ext/hash/hash.c 		zend_hash_move_forward_ex(&php_hash_hashtable, &pos)) {
pos               285 ext/hash/hash_whirlpool.c     int bufferPos    = context->buffer.pos;
pos               374 ext/hash/hash_whirlpool.c     context->buffer.pos    = bufferPos;
pos               383 ext/hash/hash_whirlpool.c     int bufferPos   = context->buffer.pos;
pos                29 ext/hash/php_hash_whirlpool.h 		int pos;
pos               599 ext/iconv/iconv.c 		size_t pos = out_p - out_buffer;
pos               601 ext/iconv/iconv.c 		out_p = out_buffer+pos;
pos               202 ext/intl/converter/converter.c 			HashPosition pos;
pos               205 ext/intl/converter/converter.c 			for(zend_hash_internal_pointer_reset_ex(ht, &pos);
pos               206 ext/intl/converter/converter.c 				zend_hash_get_current_data_ex(ht, (void**)&tmpzval, &pos) == SUCCESS;
pos               207 ext/intl/converter/converter.c 				zend_hash_move_forward_ex(ht, &pos)) {
pos               294 ext/intl/converter/converter.c 			HashPosition pos;
pos               296 ext/intl/converter/converter.c 			for(zend_hash_internal_pointer_reset_ex(ht, &pos);
pos               297 ext/intl/converter/converter.c 				zend_hash_get_current_data_ex(ht, (void**)&tmpzval, &pos) == SUCCESS;
pos               298 ext/intl/converter/converter.c 				zend_hash_move_forward_ex(ht, &pos)) {
pos               703 ext/intl/grapheme/grapheme_string.c 	int pos = 0, prev_pos = 0;
pos               707 ext/intl/grapheme/grapheme_string.c 		pos = ubrk_next(bi);
pos               709 ext/intl/grapheme/grapheme_string.c 		if ( UBRK_DONE == pos ) {
pos               714 ext/intl/grapheme/grapheme_string.c 		if ( pos > csize ) {
pos               722 ext/intl/grapheme/grapheme_string.c 		U8_FWD_N(pstr, ret_pos, str_len, pos - prev_pos);
pos               729 ext/intl/grapheme/grapheme_string.c 		prev_pos = pos;
pos               740 ext/intl/grapheme/grapheme_string.c 	int pos = 0, prev_pos = 0;
pos               744 ext/intl/grapheme/grapheme_string.c 		pos = ubrk_next(bi);
pos               746 ext/intl/grapheme/grapheme_string.c 		if ( UBRK_DONE == pos ) {
pos               751 ext/intl/grapheme/grapheme_string.c 		U8_FWD_N(pstr, ret_pos, str_len, pos - prev_pos);
pos               763 ext/intl/grapheme/grapheme_string.c 		prev_pos = pos;
pos               774 ext/intl/grapheme/grapheme_string.c 	int pos = 0, next_pos = 0;
pos               783 ext/intl/grapheme/grapheme_string.c 		pos = next_pos;
pos               791 ext/intl/grapheme/grapheme_string.c 	U8_FWD_N(pstr, ret_pos, str_len, pos);
pos               238 ext/intl/grapheme/grapheme_util.c 	int ret_len, pos;
pos               249 ext/intl/grapheme/grapheme_util.c 	pos = 0;
pos               251 ext/intl/grapheme/grapheme_util.c 	for ( ret_len = 0; pos != UBRK_DONE; ) {
pos               253 ext/intl/grapheme/grapheme_util.c 		pos = ubrk_next(bi);
pos               255 ext/intl/grapheme/grapheme_util.c 		if ( pos != UBRK_DONE ) {
pos               258 ext/intl/grapheme/grapheme_util.c 				boundary_array[ret_len] = pos;
pos               275 ext/intl/grapheme/grapheme_util.c 	int pos = 0;
pos               282 ext/intl/grapheme/grapheme_util.c 		pos = ubrk_next(bi);
pos               284 ext/intl/grapheme/grapheme_util.c 		if ( UBRK_DONE != pos ) {
pos               288 ext/intl/grapheme/grapheme_util.c 	} while ( UBRK_DONE != pos );
pos               298 ext/intl/grapheme/grapheme_util.c 	int32_t pos;
pos               316 ext/intl/grapheme/grapheme_util.c 	pos = 0;
pos               318 ext/intl/grapheme/grapheme_util.c 	while ( pos != UBRK_DONE && offset != 0 ) {
pos               320 ext/intl/grapheme/grapheme_util.c 		pos = iter_op(bi);
pos               322 ext/intl/grapheme/grapheme_util.c 		if ( UBRK_DONE != pos ) {
pos               331 ext/intl/grapheme/grapheme_util.c 	return pos;
pos               818 ext/intl/locale/locale_methods.c 			HashPosition pos;
pos               822 ext/intl/locale/locale_methods.c 			zend_hash_internal_pointer_reset_ex(arr, &pos);
pos               823 ext/intl/locale/locale_methods.c 			while(zend_hash_get_current_data_ex(arr, (void **)&data, &pos) != FAILURE) {
pos               832 ext/intl/locale/locale_methods.c 				zend_hash_move_forward_ex(arr, &pos);
pos               191 ext/json/json.c 		HashPosition pos;
pos               193 ext/json/json.c 		zend_hash_internal_pointer_reset_ex(myht, &pos);
pos               195 ext/json/json.c 		for (;; zend_hash_move_forward_ex(myht, &pos)) {
pos               196 ext/json/json.c 			i = zend_hash_get_current_key_ex(myht, &key, &key_len, &index, 0, &pos);
pos               275 ext/json/json.c 		HashPosition pos;
pos               278 ext/json/json.c 		zend_hash_internal_pointer_reset_ex(myht, &pos);
pos               279 ext/json/json.c 		for (;; zend_hash_move_forward_ex(myht, &pos)) {
pos               280 ext/json/json.c 			i = zend_hash_get_current_key_ex(myht, &key, &key_len, &index, 0, &pos);
pos               284 ext/json/json.c 			if (zend_hash_get_current_data_ex(myht, (void **) &data, &pos) == SUCCESS) {
pos               374 ext/json/json.c 	size_t pos = 0, us;
pos               379 ext/json/json.c 		for (j=0 ; pos < len ; j++) {
pos               380 ext/json/json.c 			us = php_next_utf8_char((const unsigned char *)utf8, len, &pos, &status);
pos               395 ext/json/json.c 		for (j=0 ; pos < len ; j++) {
pos               396 ext/json/json.c 			us = php_next_utf8_char((const unsigned char *)utf8, len, &pos, &status);
pos               412 ext/json/json.c 	int pos = 0, ulen = 0;
pos               471 ext/json/json.c 	while (pos < len)
pos               473 ext/json/json.c 		us = (options & PHP_JSON_UNESCAPED_UNICODE) ? s[pos++] : utf16[pos++];
pos               181 ext/mbstring/libmbfl/filters/mbfilter_htmlent.c 	int  pos, ent = 0;
pos               198 ext/mbstring/libmbfl/filters/mbfilter_htmlent.c 						for (pos=3; pos<filter->status; pos++) {
pos               199 ext/mbstring/libmbfl/filters/mbfilter_htmlent.c 							int v =  buffer[pos];
pos               218 ext/mbstring/libmbfl/filters/mbfilter_htmlent.c 						for (pos=2; pos<filter->status; pos++) {
pos               219 ext/mbstring/libmbfl/filters/mbfilter_htmlent.c 							int v = buffer[pos];
pos               235 ext/mbstring/libmbfl/filters/mbfilter_htmlent.c 					for (pos = 0; pos < filter->status; pos++) {
pos               236 ext/mbstring/libmbfl/filters/mbfilter_htmlent.c 						CK((*filter->output_function)(buffer[pos], filter->data));
pos               290 ext/mbstring/libmbfl/filters/mbfilter_htmlent.c 	int status, pos = 0;
pos               300 ext/mbstring/libmbfl/filters/mbfilter_htmlent.c 		int e = (*filter->output_function)(buffer[pos++], filter->data);
pos               275 ext/mbstring/libmbfl/mbfl/mbfilter.c 	mbfl_memory_device_realloc(&convd->device, convd->device.pos + string->len, string->len/4);
pos               323 ext/mbstring/libmbfl/mbfl/mbfilter.c 		result->len = convd->device.pos;
pos              1225 ext/mbstring/libmbfl/mbfl/mbfilter.c 	pc.needle_len = pc.needle.pos;
pos              1580 ext/mbstring/libmbfl/mbfl/mbfilter.c 			int pos;
pos              1621 ext/mbstring/libmbfl/mbfl/mbfilter.c 		_bk.pos = device.pos;
pos              1636 ext/mbstring/libmbfl/mbfl/mbfilter.c 			if (device.pos > length) {
pos              1638 ext/mbstring/libmbfl/mbfl/mbfilter.c 				device.pos = _bk.pos;
pos              1649 ext/mbstring/libmbfl/mbfl/mbfilter.c 				bk.pos = device.pos;
pos              1656 ext/mbstring/libmbfl/mbfl/mbfilter.c 				if (device.pos > length) {
pos              1661 ext/mbstring/libmbfl/mbfl/mbfilter.c 					device.pos = _bk.pos;
pos              1672 ext/mbstring/libmbfl/mbfl/mbfilter.c 					device.pos = bk.pos;
pos              1687 ext/mbstring/libmbfl/mbfl/mbfilter.c 			if (device.pos > length) {
pos              1690 ext/mbstring/libmbfl/mbfl/mbfilter.c 				device.pos = bk.pos;
pos              1703 ext/mbstring/libmbfl/mbfl/mbfilter.c 			_bk.pos = device.pos;
pos              1708 ext/mbstring/libmbfl/mbfl/mbfilter.c 			if (device.pos > length) {
pos              1714 ext/mbstring/libmbfl/mbfl/mbfilter.c 				device.pos = bk.pos;
pos              1726 ext/mbstring/libmbfl/mbfl/mbfilter.c 			device.pos = _bk.pos;
pos              1842 ext/mbstring/libmbfl/mbfl/mbfilter.c 					pc->endpos = pc->device.pos;
pos              1933 ext/mbstring/libmbfl/mbfl/mbfilter.c 				pc.device.pos = pc.endpos;
pos              1947 ext/mbstring/libmbfl/mbfl/mbfilter.c 			pc.device.pos = pc.endpos;
pos              2097 ext/mbstring/libmbfl/mbfl/mbfilter.c 		pe->prevpos = pe->outdev.pos;
pos              2103 ext/mbstring/libmbfl/mbfl/mbfilter.c 		n = pe->outdev.pos - pe->linehead + pe->firstindent;
pos              2104 ext/mbstring/libmbfl/mbfl/mbfilter.c 		pe->outdev.pos = pe->prevpos;
pos              2112 ext/mbstring/libmbfl/mbfl/mbfilter.c 			pe->linehead = pe->outdev.pos;
pos              2168 ext/mbstring/libmbfl/mbfl/mbfilter.c 			if (pe->tmpdev.pos < 74 && c == 0x20) {
pos              2169 ext/mbstring/libmbfl/mbfl/mbfilter.c 				n = pe->outdev.pos - pe->linehead + pe->tmpdev.pos + pe->firstindent;
pos              2172 ext/mbstring/libmbfl/mbfl/mbfilter.c 					pe->linehead = pe->outdev.pos;
pos              2174 ext/mbstring/libmbfl/mbfl/mbfilter.c 				} else if (pe->outdev.pos > 0) {
pos              2181 ext/mbstring/libmbfl/mbfl/mbfilter.c 				n = pe->outdev.pos - pe->linehead + pe->encnamelen + pe->firstindent;
pos              2184 ext/mbstring/libmbfl/mbfl/mbfilter.c 					pe->linehead = pe->outdev.pos;
pos              2186 ext/mbstring/libmbfl/mbfl/mbfilter.c 				} else if (pe->outdev.pos > 0)  {
pos              2208 ext/mbstring/libmbfl/mbfl/mbfilter.c 	} else if (pe->tmpdev.pos > 0) {
pos              2209 ext/mbstring/libmbfl/mbfl/mbfilter.c 		if (pe->outdev.pos > 0) {
pos              2210 ext/mbstring/libmbfl/mbfl/mbfilter.c 			if ((pe->outdev.pos - pe->linehead + pe->tmpdev.pos) > 74) {
pos              2414 ext/mbstring/libmbfl/mbfl/mbfilter.c 			pd->cspos = pd->tmpdev.pos;
pos              2442 ext/mbstring/libmbfl/mbfl/mbfilter.c 			if (pd->tmpdev.pos > 100) {		/* too long charset string */
pos               442 ext/mbstring/libmbfl/mbfl/mbfl_convert.c 	n = src->pos;
pos                58 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 		device->pos= 0;
pos                97 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 		device->pos = 0;
pos               105 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 		device->pos = 0;
pos               112 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	if (device->pos > 0) {
pos               113 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 		device->pos--;
pos               121 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 		result->len = device->pos;
pos               126 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 		device->pos= 0;
pos               143 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	if (device->pos >= device->length) {
pos               157 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	device->buffer[device->pos++] = (unsigned char)c;
pos               166 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	if ((device->pos + 2) >= device->length) {
pos               180 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	device->buffer[device->pos++] = (unsigned char)((c >> 8) & 0xff);
pos               181 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	device->buffer[device->pos++] = (unsigned char)(c & 0xff);
pos               191 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	if ((device->pos + 4) >= device->length) {
pos               205 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	device->buffer[device->pos++] = (unsigned char)((c >> 24) & 0xff);
pos               206 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	device->buffer[device->pos++] = (unsigned char)((c >> 16) & 0xff);
pos               207 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	device->buffer[device->pos++] = (unsigned char)((c >> 8) & 0xff);
pos               208 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	device->buffer[device->pos++] = (unsigned char)(c & 0xff);
pos               227 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	if ((device->pos + len) >= device->length) {
pos               239 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	w = &device->buffer[device->pos];
pos               240 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	device->pos += len;
pos               254 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	if ((device->pos + len) >= device->length) {
pos               265 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	w = &device->buffer[device->pos];
pos               266 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	device->pos += len;
pos               281 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	if ((dest->pos + src->pos) >= dest->length) {
pos               283 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 		int newlen = dest->length + src->pos + MBFL_MEMORY_DEVICE_ALLOC_SIZE;
pos               293 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	w = &dest->buffer[dest->pos];
pos               294 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	n = src->pos;
pos               295 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	dest->pos += n;
pos               310 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 		device->pos= 0;
pos               324 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 		device->pos = 0;
pos               333 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	if (device->pos >= device->length) {
pos               347 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.c 	device->buffer[device->pos++] = c;
pos                42 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.h 	int pos;
pos                49 ext/mbstring/libmbfl/mbfl/mbfl_memory_device.h 	int pos;
pos                80 ext/mbstring/libmbfl/tests/conv_encoding.c 			if (dev.pos >= dev.length) {
pos                90 ext/mbstring/libmbfl/tests/conv_encoding.c 			dev.buffer[dev.pos++] = (unsigned char)c;
pos               126 ext/mbstring/libmbfl/tests/conv_kana.c 			if (dev.pos >= dev.length) {
pos               136 ext/mbstring/libmbfl/tests/conv_kana.c 			dev.buffer[dev.pos++] = (unsigned char)c;
pos                75 ext/mbstring/libmbfl/tests/emoji.c 	dev.pos += strlen(str);
pos               104 ext/mbstring/libmbfl/tests/emoji.c 	dev2.pos += strlen(dev2.buffer);
pos                89 ext/mbstring/libmbfl/tests/strcut.c 			if (dev.pos >= dev.length) {
pos                99 ext/mbstring/libmbfl/tests/strcut.c 			dev.buffer[dev.pos++] = (unsigned char)c;
pos                60 ext/mbstring/libmbfl/tests/strwidth.c 			if (dev.pos >= dev.length) {
pos                70 ext/mbstring/libmbfl/tests/strwidth.c 			dev.buffer[dev.pos++] = (unsigned char)c;
pos              1119 ext/mbstring/mbstring.c 	char *pos = *line, quote;
pos              1122 ext/mbstring/mbstring.c 	while (*pos && *pos != stop) {
pos              1123 ext/mbstring/mbstring.c 		if ((quote = *pos) == '"' || quote == '\'') {
pos              1124 ext/mbstring/mbstring.c 			++pos;
pos              1125 ext/mbstring/mbstring.c 			while (*pos && *pos != quote) {
pos              1126 ext/mbstring/mbstring.c 				if (*pos == '\\' && pos[1] && pos[1] == quote) {
pos              1127 ext/mbstring/mbstring.c 					pos += 2;
pos              1129 ext/mbstring/mbstring.c 					++pos;
pos              1132 ext/mbstring/mbstring.c 			if (*pos) {
pos              1133 ext/mbstring/mbstring.c 				++pos;
pos              1136 ext/mbstring/mbstring.c 			pos += php_mb_mbchar_bytes_ex(pos, (const mbfl_encoding *)encoding);
pos              1140 ext/mbstring/mbstring.c 	if (*pos == '\0') {
pos              1146 ext/mbstring/mbstring.c 	res = estrndup(*line, pos - *line);
pos              1148 ext/mbstring/mbstring.c 	while (*pos == stop) {
pos              1149 ext/mbstring/mbstring.c 		pos += php_mb_mbchar_bytes_ex(pos, (const mbfl_encoding *)encoding);
pos              1152 ext/mbstring/mbstring.c 	*line = pos;
pos              3828 ext/mbstring/mbstring.c #define SKIP_LONG_HEADER_SEP_MBSTRING(str, pos)										\
pos              3829 ext/mbstring/mbstring.c 	if (str[pos] == '\r' && str[pos + 1] == '\n' && (str[pos + 2] == ' ' || str[pos + 2] == '\t')) {	\
pos              3830 ext/mbstring/mbstring.c 		pos += 2;											\
pos              3831 ext/mbstring/mbstring.c 		while (str[pos + 1] == ' ' || str[pos + 1] == '\t') {							\
pos              3832 ext/mbstring/mbstring.c 			pos++;											\
pos              1584 ext/mbstring/oniguruma/regcomp.c   int n, type, len, pos, r = 0;
pos              1604 ext/mbstring/oniguruma/regcomp.c       pos = reg->used + len;  /* goal position */
pos              1615 ext/mbstring/oniguruma/regcomp.c 	  len = pos - (reg->used + SIZE_OP_JUMP);
pos              1807 ext/mbstring/oniguruma/regcomp.c   int i, pos, n, old_num;
pos              1820 ext/mbstring/oniguruma/regcomp.c   for (i = 0, pos = 0; i < old_num; i++) {
pos              1823 ext/mbstring/oniguruma/regcomp.c       backs[pos] = n;
pos              1824 ext/mbstring/oniguruma/regcomp.c       pos++;
pos              1828 ext/mbstring/oniguruma/regcomp.c   bn->back_num = pos;
pos              1896 ext/mbstring/oniguruma/regcomp.c   int r, i, pos, counter;
pos              1912 ext/mbstring/oniguruma/regcomp.c   for (i = 1, pos = 1; i <= env->num_mem; i++) {
pos              1914 ext/mbstring/oniguruma/regcomp.c       SCANENV_MEM_NODES(env)[pos] = SCANENV_MEM_NODES(env)[i];
pos              1915 ext/mbstring/oniguruma/regcomp.c       pos++;
pos                64 ext/mbstring/oniguruma/reggnu.c re_match(regex_t* reg, const char* str, int size, int pos,
pos                68 ext/mbstring/oniguruma/reggnu.c 		    (UChar* )(str + pos), regs, ONIG_OPTION_NONE);
pos               334 ext/mbstring/oniguruma/regint.h #define BS_ROOM(bs,pos)            (bs)[pos / BITS_IN_ROOM]
pos               335 ext/mbstring/oniguruma/regint.h #define BS_BIT(pos)                (1 << (pos % BITS_IN_ROOM))
pos               337 ext/mbstring/oniguruma/regint.h #define BITSET_AT(bs, pos)         (BS_ROOM(bs,pos) & BS_BIT(pos))
pos               338 ext/mbstring/oniguruma/regint.h #define BITSET_SET_BIT(bs, pos)     BS_ROOM(bs,pos) |= BS_BIT(pos)
pos               339 ext/mbstring/oniguruma/regint.h #define BITSET_CLEAR_BIT(bs, pos)   BS_ROOM(bs,pos) &= ~(BS_BIT(pos))
pos               340 ext/mbstring/oniguruma/regint.h #define BITSET_INVERT_BIT(bs, pos)  BS_ROOM(bs,pos) ^= BS_BIT(pos)
pos               373 ext/mbstring/oniguruma/regint.h #define BBUF_WRITE(buf,pos,bytes,n) do{\
pos               374 ext/mbstring/oniguruma/regint.h   int used = (pos) + (n);\
pos               376 ext/mbstring/oniguruma/regint.h   xmemcpy((buf)->p + (pos), (bytes), (n));\
pos               380 ext/mbstring/oniguruma/regint.h #define BBUF_WRITE1(buf,pos,byte) do{\
pos               381 ext/mbstring/oniguruma/regint.h   int used = (pos) + 1;\
pos               383 ext/mbstring/oniguruma/regint.h   (buf)->p[(pos)] = (byte);\
pos               410 ext/mbstring/oniguruma/regint.h #define BBUF_INSERT(buf,pos,bytes,n) do {\
pos               411 ext/mbstring/oniguruma/regint.h   if (pos >= (buf)->used) {\
pos               412 ext/mbstring/oniguruma/regint.h     BBUF_WRITE(buf,pos,bytes,n);\
pos               415 ext/mbstring/oniguruma/regint.h     BBUF_MOVE_RIGHT((buf),(pos),(pos) + (n),((buf)->used - (pos)));\
pos               416 ext/mbstring/oniguruma/regint.h     xmemcpy((buf)->p + (pos), (bytes), (n));\
pos               420 ext/mbstring/oniguruma/regint.h #define BBUF_GET_BYTE(buf, pos) (buf)->p[(pos)]
pos              1671 ext/mbstring/oniguruma/regparse.c #define BBUF_WRITE_CODE_POINT(bbuf,pos,code) \
pos              1672 ext/mbstring/oniguruma/regparse.c     BBUF_WRITE(bbuf, pos, &(code), SIZE_CODE_POINT)
pos              1699 ext/mbstring/oniguruma/regparse.c   int r, inc_n, pos;
pos              1761 ext/mbstring/oniguruma/regparse.c   pos = SIZE_CODE_POINT * (1 + low * 2);
pos              1762 ext/mbstring/oniguruma/regparse.c   BBUF_ENSURE_SIZE(bbuf, pos + SIZE_CODE_POINT * 2);
pos              1763 ext/mbstring/oniguruma/regparse.c   BBUF_WRITE_CODE_POINT(bbuf, pos, from);
pos              1764 ext/mbstring/oniguruma/regparse.c   BBUF_WRITE_CODE_POINT(bbuf, pos + SIZE_CODE_POINT, to);
pos               811 ext/mbstring/php_mbregex.c 	OnigUChar *pos;
pos               892 ext/mbstring/php_mbregex.c 	pos = (OnigUChar *)string;
pos               896 ext/mbstring/php_mbregex.c 		err = onig_search(re, (OnigUChar *)string, (OnigUChar *)string_lim, pos, (OnigUChar *)string_lim, regs, 0);
pos               911 ext/mbstring/php_mbregex.c 			smart_str_appendl(&out_buf, pos, (size_t)((OnigUChar *)(string + regs->beg[0]) - pos));
pos               990 ext/mbstring/php_mbregex.c 			if ((pos - (OnigUChar *)string) < n) {
pos               991 ext/mbstring/php_mbregex.c 				pos = (OnigUChar *)string + n;
pos               993 ext/mbstring/php_mbregex.c 				if (pos < string_lim) {
pos               994 ext/mbstring/php_mbregex.c 					smart_str_appendl(&out_buf, pos, 1); 
pos               996 ext/mbstring/php_mbregex.c 				pos++;
pos              1000 ext/mbstring/php_mbregex.c 			if (string_lim - pos > 0) {
pos              1001 ext/mbstring/php_mbregex.c 				smart_str_appendl(&out_buf, pos, string_lim - pos);
pos              1058 ext/mbstring/php_mbregex.c 	OnigUChar *pos, *chunk_pos;
pos              1079 ext/mbstring/php_mbregex.c 	chunk_pos = pos = (OnigUChar *)string;
pos              1083 ext/mbstring/php_mbregex.c 	while (count != 0 && (pos - (OnigUChar *)string) < string_len) {
pos              1085 ext/mbstring/php_mbregex.c 		err = onig_search(re, (OnigUChar *)string, (OnigUChar *)(string + string_len), pos, (OnigUChar *)(string + string_len), regs, 0);
pos              1091 ext/mbstring/php_mbregex.c 		if ((pos - (OnigUChar *)string) < end) {
pos              1100 ext/mbstring/php_mbregex.c 			chunk_pos = pos = (OnigUChar *)string + end;
pos              1102 ext/mbstring/php_mbregex.c 			pos++;
pos              1183 ext/mbstring/php_mbregex.c 	int n, i, err, pos, len, beg, end;
pos              1206 ext/mbstring/php_mbregex.c 	pos = MBREX(search_pos);
pos              1229 ext/mbstring/php_mbregex.c 	err = onig_search(MBREX(search_re), str, str + len, str + pos, str  + len, MBREX(search_regs), 0);
pos              1268 ext/mbstring/php_mbregex.c 		if (pos < end) {
pos              1271 ext/mbstring/php_mbregex.c 			MBREX(search_pos) = pos + 1;
pos               461 ext/mysqli/mysqli.c 	HashPosition pos;
pos               467 ext/mysqli/mysqli.c 	zend_hash_internal_pointer_reset_ex(props, &pos);
pos               468 ext/mysqli/mysqli.c 	while (zend_hash_get_current_data_ex(props, (void **)&entry, &pos) == SUCCESS) {
pos               478 ext/mysqli/mysqli.c 		zend_hash_move_forward_ex(props, &pos);
pos                42 ext/mysqli/mysqli_embedded.c 	HashPosition pos;
pos                58 ext/mysqli/mysqli_embedded.c 		zend_hash_internal_pointer_reset_ex(HASH_OF(args), &pos);
pos                60 ext/mysqli/mysqli_embedded.c 		for (index = 0;; zend_hash_move_forward_ex(HASH_OF(args), &pos))	{
pos                63 ext/mysqli/mysqli_embedded.c 			if (zend_hash_get_current_data_ex(HASH_OF(args), (void **) &item, &pos) == FAILURE) {
pos                79 ext/mysqli/mysqli_embedded.c 		zend_hash_internal_pointer_reset_ex(HASH_OF(grps), &pos);
pos                81 ext/mysqli/mysqli_embedded.c 		for (index = 0;; zend_hash_move_forward_ex(HASH_OF(grps), &pos))	{
pos                84 ext/mysqli/mysqli_embedded.c 			if (zend_hash_get_current_data_ex(HASH_OF(grps), (void **) &item, &pos) == FAILURE) {
pos               436 ext/mysqli/mysqli_nonapi.c 		zend_llist_position pos;
pos               437 ext/mysqli/mysqli_nonapi.c 		for (message = (MYSQLND_ERROR_LIST_ELEMENT *) zend_llist_get_first_ex(mysql->mysql->data->error_info->error_list, &pos);
pos               439 ext/mysqli/mysqli_nonapi.c 			 message = (MYSQLND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(mysql->mysql->data->error_info->error_list, &pos)) 
pos               480 ext/mysqli/mysqli_nonapi.c 		zend_llist_position pos;
pos               481 ext/mysqli/mysqli_nonapi.c 		for (message = (MYSQLND_ERROR_LIST_ELEMENT *) zend_llist_get_first_ex(stmt->stmt->data->error_info->error_list, &pos);
pos               483 ext/mysqli/mysqli_nonapi.c 			 message = (MYSQLND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(stmt->stmt->data->error_info->error_list, &pos)) 
pos               210 ext/mysqli/mysqli_prop.c 			zend_llist_position pos;
pos               211 ext/mysqli/mysqli_prop.c 			for (message = (MYSQLND_ERROR_LIST_ELEMENT *) zend_llist_get_first_ex(mysql->mysql->data->error_info->error_list, &pos);
pos               213 ext/mysqli/mysqli_prop.c 				 message = (MYSQLND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(mysql->mysql->data->error_info->error_list, &pos)) 
pos               409 ext/mysqli/mysqli_prop.c 			zend_llist_position pos;
pos               410 ext/mysqli/mysqli_prop.c 			for (message = (MYSQLND_ERROR_LIST_ELEMENT *) zend_llist_get_first_ex(stmt->stmt->data->error_info->error_list, &pos);
pos               412 ext/mysqli/mysqli_prop.c 				 message = (MYSQLND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(stmt->stmt->data->error_info->error_list, &pos)) 
pos               110 ext/mysqlnd/php_mysqlnd.c 	HashPosition pos;
pos               113 ext/mysqlnd/php_mysqlnd.c 	for (zend_hash_internal_pointer_reset_ex(ht, &pos);
pos               114 ext/mysqlnd/php_mysqlnd.c 	     zend_hash_get_current_data_ex(ht, (void **) &ext, &pos) == SUCCESS;
pos               115 ext/mysqlnd/php_mysqlnd.c 	     zend_hash_move_forward_ex(ht, &pos)
pos                93 ext/opcache/Optimizer/compact_literals.c 	int i, j, n, *pos, *map, cache_slots;
pos               329 ext/opcache/Optimizer/compact_literals.c 					if (zend_hash_index_find(&hash, Z_LVAL(op_array->literals[i].constant), (void**)&pos) == SUCCESS) {
pos               330 ext/opcache/Optimizer/compact_literals.c 						map[i] = *pos;
pos               342 ext/opcache/Optimizer/compact_literals.c 					if (zend_hash_find(&hash, (char*)&Z_DVAL(op_array->literals[i].constant), sizeof(double), (void**)&pos) == SUCCESS) {
pos               343 ext/opcache/Optimizer/compact_literals.c 						map[i] = *pos;
pos               378 ext/opcache/Optimizer/compact_literals.c 						zend_hash_quick_find(&hash, key, key_len, h, (void**)&pos) == SUCCESS &&
pos               379 ext/opcache/Optimizer/compact_literals.c 					   	Z_TYPE(op_array->literals[i].constant) == Z_TYPE(op_array->literals[*pos].constant) &&
pos               380 ext/opcache/Optimizer/compact_literals.c 						info[i].flags == info[*pos].flags) {
pos               385 ext/opcache/Optimizer/compact_literals.c 						map[i] = *pos;
pos                55 ext/opcache/shared_alloc_mmap.c 	shared_segment->pos = 0;
pos                74 ext/opcache/shared_alloc_posix.c 	shared_segment->common.pos = 0;
pos               121 ext/opcache/shared_alloc_shm.c 		shared_segments[i].common.pos = 0;
pos               362 ext/opcache/shared_alloc_win32.c 	shared_segment->pos = 0;
pos                62 ext/opcache/zend_accelerator_blacklist.c 	blacklist->pos = 0;
pos                97 ext/opcache/zend_accelerator_blacklist.c 	if (blacklist->pos == 0) {
pos               109 ext/opcache/zend_accelerator_blacklist.c 	for (i = 0; i < blacklist->pos; ) {
pos               177 ext/opcache/zend_accelerator_blacklist.c 		if (*c || i == blacklist->pos - 1) {
pos               213 ext/opcache/zend_accelerator_blacklist.c 	zend_blacklist_entry *p = blacklist->entries, *end = blacklist->entries + blacklist->pos;
pos               234 ext/opcache/zend_accelerator_blacklist.c 	if (blacklist->pos == blacklist->size) {
pos               313 ext/opcache/zend_accelerator_blacklist.c 		blacklist->entries[blacklist->pos].path_length = path_length;
pos               314 ext/opcache/zend_accelerator_blacklist.c 		blacklist->entries[blacklist->pos].path = (char *)malloc(path_length + 1);
pos               315 ext/opcache/zend_accelerator_blacklist.c 		if (!blacklist->entries[blacklist->pos].path) {
pos               320 ext/opcache/zend_accelerator_blacklist.c 		blacklist->entries[blacklist->pos].id = blacklist->pos;
pos               321 ext/opcache/zend_accelerator_blacklist.c 		memcpy(blacklist->entries[blacklist->pos].path, real_path, path_length + 1);
pos               322 ext/opcache/zend_accelerator_blacklist.c 		blacklist->pos++;
pos               378 ext/opcache/zend_accelerator_blacklist.c 	for (i = 0; i < blacklist->pos; i++) {
pos                36 ext/opcache/zend_accelerator_blacklist.h 	int                   pos;
pos               279 ext/opcache/zend_shared_alloc.c 		size_t block_size = ZSMMG(shared_segments)[i]->size - ZSMMG(shared_segments)[i]->pos;
pos               313 ext/opcache/zend_shared_alloc.c 		if (ZSMMG(shared_segments)[i]->size - ZSMMG(shared_segments)[i]->pos >= block_size) { /* found a valid block */
pos               314 ext/opcache/zend_shared_alloc.c 			void *retval = (void *) (((char *) ZSMMG(shared_segments)[i]->p) + ZSMMG(shared_segments)[i]->pos);
pos               316 ext/opcache/zend_shared_alloc.c 			ZSMMG(shared_segments)[i]->pos += block_size;
pos               457 ext/opcache/zend_shared_alloc.c 		ZSMMG(shared_memory_state).positions[i] = ZSMMG(shared_segments)[i]->pos;
pos               467 ext/opcache/zend_shared_alloc.c 		ZSMMG(shared_segments)[i]->pos = ZSMMG(shared_memory_state).positions[i];
pos                74 ext/opcache/zend_shared_alloc.h     size_t  pos;  /* position for simple stack allocator */
pos              2213 ext/openssl/openssl.c 	HashPosition pos;
pos              2223 ext/openssl/openssl.c 		zend_hash_internal_pointer_reset_ex(HASH_OF(calist), &pos);
pos              2224 ext/openssl/openssl.c 		for (;; zend_hash_move_forward_ex(HASH_OF(calist), &pos)) {
pos              2228 ext/openssl/openssl.c 			if (zend_hash_get_current_data_ex(HASH_OF(calist), (void**)&item, &pos) == FAILURE) {
pos              4851 ext/openssl/openssl.c 	HashPosition pos;
pos              4895 ext/openssl/openssl.c 	zend_hash_internal_pointer_reset_ex(pubkeysht, &pos);
pos              4898 ext/openssl/openssl.c 				&pos) == SUCCESS) {
pos              4906 ext/openssl/openssl.c 		zend_hash_move_forward_ex(pubkeysht, &pos);
pos               303 ext/openssl/xp_ssl.c 		HashPosition pos;
pos               314 ext/openssl/xp_ssl.c 		for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(val), &pos);
pos               315 ext/openssl/xp_ssl.c 			zend_hash_get_current_data_ex(Z_ARRVAL_P(val), (void **)&current, &pos) == SUCCESS;
pos               316 ext/openssl/xp_ssl.c 			zend_hash_move_forward_ex(Z_ARRVAL_P(val), &pos)
pos               318 ext/openssl/xp_ssl.c 			int key_type = zend_hash_get_current_key_ex(Z_ARRVAL_P(val), &key, &key_len, &key_index, 0, &pos);
pos              1325 ext/openssl/xp_ssl.c 	HashPosition pos;
pos              1359 ext/openssl/xp_ssl.c 	for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_PP(val), &pos);
pos              1360 ext/openssl/xp_ssl.c 		zend_hash_get_current_data_ex(Z_ARRVAL_PP(val), (void **)&current, &pos) == SUCCESS;
pos              1361 ext/openssl/xp_ssl.c 		zend_hash_move_forward_ex(Z_ARRVAL_PP(val), &pos)
pos              1363 ext/openssl/xp_ssl.c 		key_type = zend_hash_get_current_key_ex(Z_ARRVAL_PP(val), &key, &key_len, &key_index, 0, &pos);
pos               923 ext/pcntl/pcntl.c 	HashPosition  pos;
pos               935 ext/pcntl/pcntl.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(user_set), &pos);
pos               936 ext/pcntl/pcntl.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(user_set), (void **)&user_signo, &pos) == SUCCESS)
pos               948 ext/pcntl/pcntl.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(user_set), &pos);
pos               983 ext/pcntl/pcntl.c 	HashPosition     pos;
pos              1004 ext/pcntl/pcntl.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(user_set), &pos);
pos              1005 ext/pcntl/pcntl.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(user_set), (void **)&user_signo, &pos) == SUCCESS)
pos              1017 ext/pcntl/pcntl.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(user_set), &pos);
pos               103 ext/pdo/pdo.c  	HashPosition pos;
pos               112 ext/pdo/pdo.c  	zend_hash_internal_pointer_reset_ex(&pdo_driver_hash, &pos);
pos               113 ext/pdo/pdo.c  	while (SUCCESS == zend_hash_get_current_data_ex(&pdo_driver_hash, (void**)&pdriver, &pos)) {
pos               115 ext/pdo/pdo.c  		zend_hash_move_forward_ex(&pdo_driver_hash, &pos);
pos               398 ext/pdo/pdo.c  	HashPosition pos;
pos               405 ext/pdo/pdo.c  	zend_hash_internal_pointer_reset_ex(&pdo_driver_hash, &pos);
pos               406 ext/pdo/pdo.c  	while (SUCCESS == zend_hash_get_current_data_ex(&pdo_driver_hash, (void**)&pdriver, &pos)) {
pos               408 ext/pdo/pdo.c  		zend_hash_move_forward_ex(&pdo_driver_hash, &pos);
pos              1208 ext/pdo/pdo_dbh.c 	HashPosition pos;
pos              1217 ext/pdo/pdo_dbh.c 	zend_hash_internal_pointer_reset_ex(&pdo_driver_hash, &pos);
pos              1218 ext/pdo/pdo_dbh.c 	while (SUCCESS == zend_hash_get_current_data_ex(&pdo_driver_hash, (void**)&pdriver, &pos)) {
pos              1220 ext/pdo/pdo_dbh.c 		zend_hash_move_forward_ex(&pdo_driver_hash, &pos);
pos               408 ext/pdo/pdo_sql_parser.c 	char *pos;
pos               451 ext/pdo/pdo_sql_parser.c 			plc->pos = s.tok;
pos               506 ext/pdo/pdo_sql_parser.c 				if (zend_hash_find(params, plc->pos, plc->len, (void**) &param) == FAILURE) {
pos               531 ext/pdo/pdo_sql_parser.c 				ret = zend_hash_find(params, plc->pos, plc->len, (void**) &param);
pos               620 ext/pdo/pdo_sql_parser.c 			t = plc->pos - ptr;
pos               627 ext/pdo/pdo_sql_parser.c 			ptr = plc->pos + plc->len;
pos               659 ext/pdo/pdo_sql_parser.c 			name = estrndup(plc->pos, plc->len);
pos               700 ext/pdo/pdo_sql_parser.c 			name = estrndup(plc->pos, plc->len);
pos              2131 ext/pdo/pdo_stmt.c 	HashPosition pos;
pos              2147 ext/pdo/pdo_stmt.c 		zend_hash_internal_pointer_reset_ex(stmt->bound_params, &pos);
pos              2149 ext/pdo/pdo_stmt.c 				(void**)&param, &pos)) {
pos              2155 ext/pdo/pdo_stmt.c 			res = zend_hash_get_current_key_ex(stmt->bound_params, &str, &len, &num, 0, &pos);
pos              2167 ext/pdo/pdo_stmt.c 			zend_hash_move_forward_ex(stmt->bound_params, &pos);
pos               171 ext/pdo_pgsql/pgsql_driver.c 	int pos = lo_lseek(self->conn, self->lfd, offset, whence);
pos               172 ext/pdo_pgsql/pgsql_driver.c 	*newoffset = pos;
pos               173 ext/pdo_pgsql/pgsql_driver.c 	return pos >= 0 ? 0 : -1;
pos               601 ext/pdo_pgsql/pgsql_driver.c 		HashPosition pos;
pos               604 ext/pdo_pgsql/pgsql_driver.c 		zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(pg_rows), &pos);
pos               605 ext/pdo_pgsql/pgsql_driver.c 		while (zend_hash_get_current_data_ex(Z_ARRVAL_P(pg_rows), (void **) &tmp, &pos) == SUCCESS) {
pos               625 ext/pdo_pgsql/pgsql_driver.c 			zend_hash_move_forward_ex(Z_ARRVAL_P(pg_rows), &pos);
pos              4167 ext/pgsql/pgsql.c 	HashPosition pos;
pos              4211 ext/pgsql/pgsql.c 				zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(pg_rows), &pos);
pos              4213 ext/pgsql/pgsql.c 				while (zend_hash_get_current_data_ex(Z_ARRVAL_P(pg_rows), (void **) &tmp, &pos) == SUCCESS) {
pos              4234 ext/pgsql/pgsql.c 					zend_hash_move_forward_ex(Z_ARRVAL_P(pg_rows), &pos);
pos              4241 ext/pgsql/pgsql.c 				while (zend_hash_get_current_data_ex(Z_ARRVAL_P(pg_rows), (void **) &tmp, &pos) == SUCCESS) {
pos              4262 ext/pgsql/pgsql.c 					zend_hash_move_forward_ex(Z_ARRVAL_P(pg_rows), &pos);
pos              5788 ext/pgsql/pgsql.c 	HashPosition pos;
pos              5813 ext/pgsql/pgsql.c 	for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(values), &pos);
pos              5814 ext/pgsql/pgsql.c 		 zend_hash_get_current_data_ex(Z_ARRVAL_P(values), (void **)&val, &pos) == SUCCESS;
pos              5815 ext/pgsql/pgsql.c 		 zend_hash_move_forward_ex(Z_ARRVAL_P(values), &pos)) {
pos              5819 ext/pgsql/pgsql.c 		if ((key_type = zend_hash_get_current_key_ex(Z_ARRVAL_P(values), &field, &field_len, &num_idx, 0, &pos)) == HASH_KEY_NON_EXISTENT) {
pos              6548 ext/pgsql/pgsql.c 	HashPosition pos;
pos              6576 ext/pgsql/pgsql.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(var_array), &pos);
pos              6578 ext/pgsql/pgsql.c 					&fld_len, &num_idx, 0, &pos)) != HASH_KEY_NON_EXISTENT) {
pos              6591 ext/pgsql/pgsql.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(var_array), &pos);
pos              6597 ext/pgsql/pgsql.c 	for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(var_array), &pos);
pos              6598 ext/pgsql/pgsql.c 		 zend_hash_get_current_data_ex(Z_ARRVAL_P(var_array), (void **)&val, &pos) == SUCCESS;
pos              6599 ext/pgsql/pgsql.c 		 zend_hash_move_forward_ex(Z_ARRVAL_P(var_array), &pos)) {
pos              6749 ext/pgsql/pgsql.c 	HashPosition pos;
pos              6757 ext/pgsql/pgsql.c 	for (zend_hash_internal_pointer_reset_ex(ht, &pos);
pos              6758 ext/pgsql/pgsql.c 		 zend_hash_get_current_data_ex(ht, (void **)&val, &pos) == SUCCESS;
pos              6759 ext/pgsql/pgsql.c 		 zend_hash_move_forward_ex(ht, &pos)) {
pos              6760 ext/pgsql/pgsql.c 		 key_type = zend_hash_get_current_key_ex(ht, &fld, &fld_len, &num_idx, 0, &pos);
pos              1568 ext/phar/phar.c 	char *pos, test = '\0';
pos              1598 ext/phar/phar.c 			pos = buffer+tokenlen;
pos              1599 ext/phar/phar.c 			if (!memcmp(pos, gz_magic, 3)) {
pos              1659 ext/phar/phar.c 			} else if (!memcmp(pos, bz_magic, 3)) {
pos              1699 ext/phar/phar.c 			if (!memcmp(pos, zip_magic, 4)) {
pos              1705 ext/phar/phar.c 				if (phar_is_tar(pos, fname)) {
pos              1712 ext/phar/phar.c 		if (got > 0 && (pos = phar_strnstr(buffer, got + sizeof(token), token, sizeof(token)-1)) != NULL) {
pos              1713 ext/phar/phar.c 			halt_offset += (pos - buffer); /* no -tokenlen+tokenlen here */
pos              1842 ext/phar/phar.c 	const char *pos;
pos              1854 ext/phar/phar.c 		pos = strstr(test, ".phar");
pos              1856 ext/phar/phar.c 		if (pos && (*(pos - 1) != '/')
pos              1857 ext/phar/phar.c 				&& (pos += 5) && (*pos == '\0' || *pos == '/' || *pos == '.')) {
pos              1866 ext/phar/phar.c 		pos = strstr(ext_str, ".phar");
pos              1867 ext/phar/phar.c 		if (!(pos && (*(pos - 1) != '/')
pos              1868 ext/phar/phar.c 					&& (pos += 5) && (*pos == '\0' || *pos == '/' || *pos == '.')) && *(ext_str + 1) != '.' && *(ext_str + 1) != '/' && *(ext_str + 1) != '\0') {
pos              1896 ext/phar/phar.c 	const char *pos, *slash;
pos              1907 ext/phar/phar.c 	pos = memchr(filename, '/', filename_len);
pos              1909 ext/phar/phar.c 	if (pos && pos != filename) {
pos              1911 ext/phar/phar.c 		if (*(pos - 1) == ':' && (pos - filename) < filename_len - 1 && *(pos + 1) == '/') {
pos              1916 ext/phar/phar.c 		if (zend_hash_exists(&(PHAR_GLOBALS->phar_alias_map), (char *) filename, pos - filename)) {
pos              1917 ext/phar/phar.c 			*ext_str = pos;
pos              1922 ext/phar/phar.c 		if (PHAR_G(manifest_cached) && zend_hash_exists(&cached_alias, (char *) filename, pos - filename)) {
pos              1923 ext/phar/phar.c 			*ext_str = pos;
pos              2002 ext/phar/phar.c 	pos = memchr(filename + 1, '.', filename_len);
pos              2004 ext/phar/phar.c 	if (!pos) {
pos              2008 ext/phar/phar.c 	while (pos != filename && (*(pos - 1) == '/' || *(pos - 1) == '\0')) {
pos              2009 ext/phar/phar.c 		pos = memchr(pos + 1, '.', filename_len - (pos - filename) + 1);
pos              2010 ext/phar/phar.c 		if (!pos) {
pos              2015 ext/phar/phar.c 	slash = memchr(pos, '/', filename_len - (pos - filename));
pos              2019 ext/phar/phar.c 		*ext_str = pos;
pos              2020 ext/phar/phar.c 		*ext_len = strlen(pos);
pos              2033 ext/phar/phar.c 	*ext_str = pos;
pos              2034 ext/phar/phar.c 	*ext_len = slash - pos;
pos              2041 ext/phar/phar.c 			pos = strchr(pos + 1, '.');
pos              2042 ext/phar/phar.c 			if (pos) {
pos              2555 ext/phar/phar.c 	char *pos, has_dirs = 0;
pos              2652 ext/phar/phar.c 		if ((pos = php_stristr(tmp, halt_stub, len, sizeof(halt_stub) - 1)) == NULL) {
pos              2666 ext/phar/phar.c 		pos = user_stub + (pos - tmp);
pos              2668 ext/phar/phar.c 		len = pos - user_stub + 18;
pos               633 ext/phar/stream.c 		HashPosition pos;
pos               635 ext/phar/stream.c 		for (zend_hash_internal_pointer_reset_ex(&phar->mounted_dirs, &pos);
pos               636 ext/phar/stream.c 			HASH_KEY_NON_EXISTENT != zend_hash_get_current_key_ex(&phar->mounted_dirs, &str_key, &keylen, &unused, 0, &pos);
pos               637 ext/phar/stream.c 			zend_hash_move_forward_ex(&phar->mounted_dirs, &pos)
pos               209 ext/phar/tar.c 	size_t pos = 0, read, totalsize;
pos               252 ext/phar/tar.c 	pos += sizeof(buf);
pos               257 ext/phar/tar.c 		pos = php_stream_tell(fp);
pos               466 ext/phar/tar.c 		entry.offset = entry.offset_abs = pos; /* header_offset unused in tar */
pos               557 ext/phar/tar.c 				php_stream_seek(fp, pos, SEEK_SET);
pos               703 ext/phar/tar.c 	size_t pos;
pos               793 ext/phar/tar.c 	pos = php_stream_tell(fp->new); /* save start of file within tar */
pos               844 ext/phar/tar.c 	entry->offset = entry->offset_abs = pos;
pos              1005 ext/phar/tar.c 		char *pos;
pos              1033 ext/phar/tar.c 		if ((pos = php_stristr(tmp, halt_stub, len, sizeof(halt_stub) - 1)) == NULL) {
pos              1043 ext/phar/tar.c 		pos = user_stub + (pos - tmp);
pos              1046 ext/phar/tar.c 		len = pos - user_stub + 18;
pos              1392 ext/phar/util.c 	int pos = -1;
pos              1398 ext/phar/util.c 		(*signature)[++pos] = hexChars[((const unsigned char *)digest)[len] >> 4];
pos              1399 ext/phar/util.c 		(*signature)[++pos] = hexChars[((const unsigned char *)digest)[len] & 0x0F];
pos              1401 ext/phar/util.c 	(*signature)[++pos] = '\0';
pos              1402 ext/phar/util.c 	return pos;
pos              1159 ext/phar/zip.c 	char *pos;
pos              1259 ext/phar/zip.c 		if ((pos = php_stristr(tmp, halt_stub, len, sizeof(halt_stub) - 1)) == NULL) {
pos              1269 ext/phar/zip.c 		pos = user_stub + (pos - tmp);
pos              1272 ext/phar/zip.c 		len = pos - user_stub + 18;
pos               593 ext/readline/readline_cli.c 	size_t size = 4096, pos = 0, len;
pos               624 ext/readline/readline_cli.c 		if (!pos && !*line) {
pos               651 ext/readline/readline_cli.c 		if (pos + len + 2 > size) {
pos               652 ext/readline/readline_cli.c 			size = pos + len + 2;
pos               655 ext/readline/readline_cli.c 		memcpy(&code[pos], line, len);
pos               656 ext/readline/readline_cli.c 		pos += len;
pos               657 ext/readline/readline_cli.c 		code[pos] = '\n';
pos               658 ext/readline/readline_cli.c 		code[++pos] = '\0';
pos               668 ext/readline/readline_cli.c 		if (!cli_is_valid_code(code, pos, &prompt TSRMLS_CC)) {
pos               682 ext/readline/readline_cli.c 			zend_eval_stringl(code, pos, NULL, "php shell code" TSRMLS_CC);
pos               685 ext/readline/readline_cli.c 		pos = 0;
pos               454 ext/reflection/php_reflection.c 			HashPosition pos;
pos               460 ext/reflection/php_reflection.c 			zend_hash_internal_pointer_reset_ex(&ce->constants_table, &pos);
pos               462 ext/reflection/php_reflection.c 			while (zend_hash_get_current_data_ex(&ce->constants_table, (void **) &value, &pos) == SUCCESS) {
pos               463 ext/reflection/php_reflection.c 				zend_hash_get_current_key_ex(&ce->constants_table, &key, &key_len, &num_index, 0, &pos);
pos               466 ext/reflection/php_reflection.c 				zend_hash_move_forward_ex(&ce->constants_table, &pos);
pos               477 ext/reflection/php_reflection.c 			HashPosition pos;
pos               480 ext/reflection/php_reflection.c 			zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos);
pos               482 ext/reflection/php_reflection.c 			while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop, &pos) == SUCCESS) {
pos               488 ext/reflection/php_reflection.c 				zend_hash_move_forward_ex(&ce->properties_info, &pos);
pos               495 ext/reflection/php_reflection.c 			HashPosition pos;
pos               498 ext/reflection/php_reflection.c 			zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos);
pos               500 ext/reflection/php_reflection.c 			while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop, &pos) == SUCCESS) {
pos               505 ext/reflection/php_reflection.c 				zend_hash_move_forward_ex(&ce->properties_info, &pos);
pos               516 ext/reflection/php_reflection.c 			HashPosition pos;
pos               519 ext/reflection/php_reflection.c 			zend_hash_internal_pointer_reset_ex(&ce->function_table, &pos);
pos               521 ext/reflection/php_reflection.c 			while (zend_hash_get_current_data_ex(&ce->function_table, (void **) &mptr, &pos) == SUCCESS) {
pos               527 ext/reflection/php_reflection.c 				zend_hash_move_forward_ex(&ce->function_table, &pos);
pos               534 ext/reflection/php_reflection.c 			HashPosition pos;
pos               537 ext/reflection/php_reflection.c 			zend_hash_internal_pointer_reset_ex(&ce->function_table, &pos);
pos               539 ext/reflection/php_reflection.c 			while (zend_hash_get_current_data_ex(&ce->function_table, (void **) &mptr, &pos) == SUCCESS) {
pos               546 ext/reflection/php_reflection.c 				zend_hash_move_forward_ex(&ce->function_table, &pos);
pos               559 ext/reflection/php_reflection.c 			HashPosition pos;
pos               562 ext/reflection/php_reflection.c 			zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos);
pos               564 ext/reflection/php_reflection.c 			while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop, &pos) == SUCCESS) {
pos               568 ext/reflection/php_reflection.c 				zend_hash_move_forward_ex(&ce->properties_info, &pos);
pos               577 ext/reflection/php_reflection.c 		HashPosition pos;
pos               584 ext/reflection/php_reflection.c 			zend_hash_internal_pointer_reset_ex(properties, &pos);
pos               586 ext/reflection/php_reflection.c 			while (zend_hash_get_current_data_ex(properties, (void **) &prop, &pos) == SUCCESS) {
pos               591 ext/reflection/php_reflection.c 				if (zend_hash_get_current_key_ex(properties, &prop_name, &prop_name_size, &index, 1, &pos) == HASH_KEY_IS_STRING) {
pos               600 ext/reflection/php_reflection.c 				zend_hash_move_forward_ex(properties, &pos);
pos               614 ext/reflection/php_reflection.c 			HashPosition pos;
pos               620 ext/reflection/php_reflection.c 			zend_hash_internal_pointer_reset_ex(&ce->function_table, &pos);
pos               622 ext/reflection/php_reflection.c 			while (zend_hash_get_current_data_ex(&ce->function_table, (void **) &mptr, &pos) == SUCCESS) {
pos               634 ext/reflection/php_reflection.c 						|| zend_hash_get_current_key_ex(&ce->function_table, &key, &key_len, &num_index, 0, &pos) != HASH_KEY_IS_STRING
pos               653 ext/reflection/php_reflection.c 				zend_hash_move_forward_ex(&ce->function_table, &pos);
pos               828 ext/reflection/php_reflection.c 	HashPosition pos;
pos               843 ext/reflection/php_reflection.c 	zend_hash_internal_pointer_reset_ex(static_variables, &pos);
pos               846 ext/reflection/php_reflection.c 		zend_hash_get_current_key_ex(static_variables, &key, &key_len, &num_index, 0, &pos);
pos               848 ext/reflection/php_reflection.c 		zend_hash_move_forward_ex(static_variables, &pos);
pos              3420 ext/reflection/php_reflection.c 	HashPosition pos;
pos              3427 ext/reflection/php_reflection.c 	zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos);
pos              3428 ext/reflection/php_reflection.c 	while (zend_hash_get_current_data_ex(&ce->properties_info, (void **) &prop_info, &pos) == SUCCESS) {
pos              3429 ext/reflection/php_reflection.c 		zend_hash_get_current_key_ex(&ce->properties_info, &key, &key_len, &num_index, 0, &pos);
pos              3430 ext/reflection/php_reflection.c 		zend_hash_move_forward_ex(&ce->properties_info, &pos);
pos              1793 ext/session/session.c 		HashPosition pos;
pos              1804 ext/session/session.c 		zend_hash_internal_pointer_reset_ex(&php_session_iface_entry->function_table, &pos);
pos              1806 ext/session/session.c 		while (zend_hash_get_current_data_ex(&php_session_iface_entry->function_table, (void **) &default_mptr, &pos) == SUCCESS) {
pos              1807 ext/session/session.c 			zend_hash_get_current_key_ex(&php_session_iface_entry->function_table, &func_name, &func_name_len, &func_index, 0, &pos);
pos              1825 ext/session/session.c 			zend_hash_move_forward_ex(&php_session_iface_entry->function_table, &pos);
pos              1830 ext/session/session.c 		zend_hash_internal_pointer_reset_ex(&php_session_id_iface_entry->function_table, &pos);
pos              1831 ext/session/session.c 		while (zend_hash_get_current_data_ex(&php_session_id_iface_entry->function_table, (void **) &default_mptr, &pos) == SUCCESS) {
pos              1832 ext/session/session.c 			zend_hash_get_current_key_ex(&php_session_id_iface_entry->function_table, &func_name, &func_name_len, &func_index, 0, &pos);
pos              1847 ext/session/session.c 			zend_hash_move_forward_ex(&php_session_id_iface_entry->function_table, &pos);
pos              2106 ext/snmp/snmp.c 	HashPosition pos;
pos              2112 ext/snmp/snmp.c 	zend_hash_internal_pointer_reset_ex(&php_snmp_properties, &pos);
pos              2114 ext/snmp/snmp.c 	while (zend_hash_get_current_data_ex(&php_snmp_properties, (void**)&hnd, &pos) == SUCCESS) {
pos              2115 ext/snmp/snmp.c 		zend_hash_get_current_key_ex(&php_snmp_properties, &key, &key_len, &num_key, 0, &pos);
pos              2121 ext/snmp/snmp.c 		zend_hash_move_forward_ex(&php_snmp_properties, &pos);
pos               252 ext/soap/php_encoding.c 	xmlChar *pos;
pos               255 ext/soap/php_encoding.c 	pos = str;
pos               263 ext/soap/php_encoding.c 			*pos = *str;
pos               264 ext/soap/php_encoding.c 			pos++;
pos               270 ext/soap/php_encoding.c 	 	--pos;
pos               272 ext/soap/php_encoding.c 	*pos = '\0';
pos               278 ext/soap/php_encoding.c 		HashPosition pos;
pos               281 ext/soap/php_encoding.c 		for (zend_hash_internal_pointer_reset_ex(sdl->encoders, &pos);
pos               282 ext/soap/php_encoding.c 		     zend_hash_get_current_data_ex(sdl->encoders, (void **) &enc, &pos) == SUCCESS;
pos               283 ext/soap/php_encoding.c 		     zend_hash_move_forward_ex(sdl->encoders, &pos)) {
pos               474 ext/soap/php_encoding.c 			HashPosition pos;
pos               480 ext/soap/php_encoding.c 			for (zend_hash_internal_pointer_reset_ex(SOAP_GLOBAL(class_map), &pos);
pos               481 ext/soap/php_encoding.c 			     zend_hash_get_current_data_ex(SOAP_GLOBAL(class_map), (void **) &tmp, &pos) == SUCCESS;
pos               482 ext/soap/php_encoding.c 			     zend_hash_move_forward_ex(SOAP_GLOBAL(class_map), &pos)) {
pos               486 ext/soap/php_encoding.c 				    zend_hash_get_current_key_ex(SOAP_GLOBAL(class_map), &type_name, &type_len, &idx, 0, &pos) == HASH_KEY_IS_STRING) {
pos              1451 ext/soap/php_encoding.c 			HashPosition pos;
pos              1454 ext/soap/php_encoding.c 			zend_hash_internal_pointer_reset_ex(model->u.content, &pos);
pos              1455 ext/soap/php_encoding.c 			while (zend_hash_get_current_data_ex(model->u.content, (void**)&tmp, &pos) == SUCCESS) {
pos              1461 ext/soap/php_encoding.c 				zend_hash_move_forward_ex(model->u.content, &pos);
pos              1604 ext/soap/php_encoding.c 			HashPosition pos;
pos              1606 ext/soap/php_encoding.c 			zend_hash_internal_pointer_reset_ex(sdlType->attributes, &pos);
pos              1607 ext/soap/php_encoding.c 			while (zend_hash_get_current_data_ex(sdlType->attributes, (void**)&attr, &pos) == SUCCESS) {
pos              1634 ext/soap/php_encoding.c 				zend_hash_move_forward_ex(sdlType->attributes, &pos);
pos              1822 ext/soap/php_encoding.c 			HashPosition pos;
pos              1824 ext/soap/php_encoding.c 			zend_hash_internal_pointer_reset_ex(model->u.content, &pos);
pos              1825 ext/soap/php_encoding.c 			while (zend_hash_get_current_data_ex(model->u.content, (void**)&tmp, &pos) == SUCCESS) {
pos              1832 ext/soap/php_encoding.c 				zend_hash_move_forward_ex(model->u.content, &pos);
pos              1838 ext/soap/php_encoding.c 			HashPosition pos;
pos              1841 ext/soap/php_encoding.c 			zend_hash_internal_pointer_reset_ex(model->u.content, &pos);
pos              1842 ext/soap/php_encoding.c 			while (zend_hash_get_current_data_ex(model->u.content, (void**)&tmp, &pos) == SUCCESS) {
pos              1849 ext/soap/php_encoding.c 				zend_hash_move_forward_ex(model->u.content, &pos);
pos              1876 ext/soap/php_encoding.c 			HashPosition pos;
pos              1881 ext/soap/php_encoding.c 			zend_hash_internal_pointer_reset_ex(model->u.content, &pos);
pos              1882 ext/soap/php_encoding.c 			zend_hash_get_current_data_ex(model->u.content, (void**)&tmp, &pos);
pos              2008 ext/soap/php_encoding.c 				HashPosition pos;
pos              2010 ext/soap/php_encoding.c 				zend_hash_internal_pointer_reset_ex(sdlType->attributes, &pos);
pos              2011 ext/soap/php_encoding.c 				while (zend_hash_get_current_data_ex(sdlType->attributes, (void**)&attr, &pos) == SUCCESS) {
pos              2039 ext/soap/php_encoding.c 					zend_hash_move_forward_ex(sdlType->attributes, &pos);
pos              2141 ext/soap/php_encoding.c 	int *pos;
pos              2144 ext/soap/php_encoding.c 	pos = safe_emalloc(sizeof(int), dimension, 0);
pos              2145 ext/soap/php_encoding.c 	memset(pos,0,sizeof(int)*dimension);
pos              2159 ext/soap/php_encoding.c 			pos[i] = (pos[i]*10)+(*str-'0');
pos              2167 ext/soap/php_encoding.c 	return pos;
pos              2182 ext/soap/php_encoding.c static void get_position_ex(int dimension, const char* str, int** pos)
pos              2186 ext/soap/php_encoding.c 	memset(*pos,0,sizeof(int)*dimension);
pos              2189 ext/soap/php_encoding.c 			(*pos)[i] = ((*pos)[i]*10)+(*str-'0');
pos              2199 ext/soap/php_encoding.c 	int *pos;
pos              2201 ext/soap/php_encoding.c 	pos = safe_emalloc(sizeof(int), dimension, 0);
pos              2202 ext/soap/php_encoding.c 	get_position_ex(dimension, str, &pos);
pos              2203 ext/soap/php_encoding.c 	return pos;
pos              2569 ext/soap/php_encoding.c 	int* pos = NULL;
pos              2706 ext/soap/php_encoding.c 	pos = safe_emalloc(sizeof(int), dimension, 0);
pos              2707 ext/soap/php_encoding.c 	memset(pos,0,sizeof(int)*dimension);
pos              2716 ext/soap/php_encoding.c 		get_position_ex(dimension, tmp, &pos);
pos              2733 ext/soap/php_encoding.c 				get_position_ex(dimension, tmp, &pos);
pos              2741 ext/soap/php_encoding.c 				if (zend_hash_index_find(Z_ARRVAL_P(ar), pos[i], (void**)&ar2) == SUCCESS) {
pos              2747 ext/soap/php_encoding.c 					zend_hash_index_update(Z_ARRVAL_P(ar), pos[i], &tmpAr, sizeof(zval*), (void**)&ar2);
pos              2752 ext/soap/php_encoding.c 			zend_hash_index_update(Z_ARRVAL_P(ar), pos[i], &tmpVal, sizeof(zval *), NULL);
pos              2758 ext/soap/php_encoding.c 			  pos[i]++;
pos              2759 ext/soap/php_encoding.c 				if (pos[i] >= dims[i]) {
pos              2761 ext/soap/php_encoding.c 						pos[i] = 0;
pos              2773 ext/soap/php_encoding.c 	efree(pos);
pos              3232 ext/soap/php_encoding.c 		HashPosition pos;
pos              3239 ext/soap/php_encoding.c 		for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(data), &pos);
pos              3240 ext/soap/php_encoding.c 		     zend_hash_get_current_data_ex(Z_ARRVAL_P(data), (void **) &el, &pos) == SUCCESS;
pos              3241 ext/soap/php_encoding.c 		     zend_hash_move_forward_ex(Z_ARRVAL_P(data), &pos)) {
pos              3245 ext/soap/php_encoding.c 		        zend_hash_get_current_key_ex(Z_ARRVAL_P(data), &name, &name_len, &idx, 0, &pos) == HASH_KEY_IS_STRING) {
pos              1220 ext/soap/php_http.c 		char *pos = NULL;
pos              1222 ext/soap/php_http.c 		pos = strstr(content_type,";");
pos              1223 ext/soap/php_http.c 		if (pos != NULL) {
pos              1224 ext/soap/php_http.c 			cmplen = pos - content_type;
pos              1336 ext/soap/php_http.c 	char *pos, *tmp = NULL;
pos              1344 ext/soap/php_http.c 	pos = headers;
pos              1347 ext/soap/php_http.c 		if (strncasecmp(pos, type, typelen) == 0) {
pos              1351 ext/soap/php_http.c 			tmp = pos + typelen;
pos              1362 ext/soap/php_http.c 		pos = strchr(pos, '\n');
pos              1363 ext/soap/php_http.c 		if (pos) {
pos              1364 ext/soap/php_http.c 			pos++;
pos              1367 ext/soap/php_http.c 	} while (pos);
pos              2201 ext/soap/php_schema.c 				HashPosition pos;
pos              2204 ext/soap/php_schema.c 				zend_hash_internal_pointer_reset_ex(model->u.content, &pos);
pos              2205 ext/soap/php_schema.c 				while (zend_hash_get_current_data_ex(model->u.content, (void**)&tmp, &pos) == SUCCESS) {
pos              2208 ext/soap/php_schema.c 					zend_hash_move_forward_ex(model->u.content, &pos);
pos               591 ext/soap/php_sdl.c 					HashPosition pos;
pos               600 ext/soap/php_sdl.c 					zend_hash_internal_pointer_reset_ex(params, &pos);
pos               601 ext/soap/php_sdl.c 					while (zend_hash_get_current_data_ex(params, (void **)&param, &pos) != FAILURE) {
pos               612 ext/soap/php_sdl.c 						zend_hash_move_forward_ex(params, &pos);
pos              3379 ext/soap/php_sdl.c 				HashPosition pos;
pos              3385 ext/soap/php_sdl.c 				for (zend_hash_internal_pointer_reset_ex(SOAP_GLOBAL(mem_cache), &pos);
pos              3386 ext/soap/php_sdl.c 					 zend_hash_get_current_data_ex(SOAP_GLOBAL(mem_cache), (void **) &q, &pos) == SUCCESS;
pos              3387 ext/soap/php_sdl.c 					 zend_hash_move_forward_ex(SOAP_GLOBAL(mem_cache), &pos)) {
pos              3390 ext/soap/php_sdl.c 						zend_hash_get_current_key_ex(SOAP_GLOBAL(mem_cache), &key, &key_len, &idx, 0, &pos);
pos              1368 ext/soap/soap.c 		HashPosition pos;
pos              1370 ext/soap/soap.c 		zend_hash_internal_pointer_reset_ex(service->soap_functions.ft, &pos);
pos              1371 ext/soap/soap.c 		while (zend_hash_get_current_data_ex(service->soap_functions.ft, (void **)&name, &pos) != FAILURE) {
pos              1373 ext/soap/soap.c 			zend_hash_move_forward_ex(service->soap_functions.ft, &pos);
pos              1378 ext/soap/soap.c 		HashPosition pos;
pos              1379 ext/soap/soap.c 		zend_hash_internal_pointer_reset_ex(ft, &pos);
pos              1380 ext/soap/soap.c 		while (zend_hash_get_current_data_ex(ft, (void **)&f, &pos) != FAILURE) {
pos              1384 ext/soap/soap.c 			zend_hash_move_forward_ex(ft, &pos);
pos              1399 ext/soap/soap.c 	HashPosition pos;
pos              1421 ext/soap/soap.c 			zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(function_name), &pos);
pos              1422 ext/soap/soap.c 			while (zend_hash_get_current_data_ex(Z_ARRVAL_P(function_name), (void **)&tmp_function, &pos) != FAILURE) {
pos              1446 ext/soap/soap.c 				zend_hash_move_forward_ex(Z_ARRVAL_P(function_name), &pos);
pos              2869 ext/soap/soap.c 	HashPosition pos;
pos              2940 ext/soap/soap.c 		for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(args), &pos);
pos              2941 ext/soap/soap.c 			zend_hash_get_current_data_ex(Z_ARRVAL_P(args), (void **) &param, &pos) == SUCCESS;
pos              2942 ext/soap/soap.c 			zend_hash_move_forward_ex(Z_ARRVAL_P(args), &pos)) {
pos              2968 ext/soap/soap.c 	HashPosition pos;
pos              2981 ext/soap/soap.c  		zend_hash_internal_pointer_reset_ex(&sdl->functions, &pos);
pos              2982 ext/soap/soap.c 		while (zend_hash_get_current_data_ex(&sdl->functions, (void **)&function, &pos) != FAILURE) {
pos              2986 ext/soap/soap.c 			zend_hash_move_forward_ex(&sdl->functions, &pos);
pos              2998 ext/soap/soap.c 	HashPosition pos;
pos              3012 ext/soap/soap.c 			zend_hash_internal_pointer_reset_ex(sdl->types, &pos);
pos              3013 ext/soap/soap.c 			while (zend_hash_get_current_data_ex(sdl->types, (void **)&type, &pos) != FAILURE) {
pos              3017 ext/soap/soap.c 				zend_hash_move_forward_ex(sdl->types, &pos);
pos              3823 ext/soap/soap.c 		HashPosition pos;
pos              3827 ext/soap/soap.c 		zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(ret), &pos);
pos              3828 ext/soap/soap.c 		while (zend_hash_get_current_data_ex(Z_ARRVAL_P(ret), (void **)&data, &pos) != FAILURE) {
pos              3833 ext/soap/soap.c 			zend_hash_get_current_key_ex(Z_ARRVAL_P(ret), &param_name, &param_name_len, &param_index, 0, &pos);
pos              3848 ext/soap/soap.c 			zend_hash_move_forward_ex(Z_ARRVAL_P(ret), &pos);
pos              4510 ext/soap/soap.c 			HashPosition pos;
pos              4512 ext/soap/soap.c 			zend_hash_internal_pointer_reset_ex(ht, &pos);
pos              4513 ext/soap/soap.c 			while (zend_hash_get_current_data_ex(ht, (void **)&tmp, &pos) != FAILURE) {
pos              4517 ext/soap/soap.c 				zend_hash_move_forward_ex(ht, &pos);
pos              4607 ext/soap/soap.c 	HashPosition pos;
pos              4624 ext/soap/soap.c 			zend_hash_internal_pointer_reset_ex(function->responseParameters, &pos);
pos              4625 ext/soap/soap.c 			while (zend_hash_get_current_data_ex(function->responseParameters, (void **)&param, &pos) != FAILURE) {
pos              4636 ext/soap/soap.c 				zend_hash_move_forward_ex(function->responseParameters, &pos);
pos              4650 ext/soap/soap.c 		zend_hash_internal_pointer_reset_ex(function->requestParameters, &pos);
pos              4651 ext/soap/soap.c 		while (zend_hash_get_current_data_ex(function->requestParameters, (void **)&param, &pos) != FAILURE) {
pos              4662 ext/soap/soap.c 			zend_hash_move_forward_ex(function->requestParameters, &pos);
pos              4708 ext/soap/soap.c 	HashPosition pos;
pos              4732 ext/soap/soap.c 				zend_hash_internal_pointer_reset_ex(type->elements, &pos);
pos              4733 ext/soap/soap.c 				if (zend_hash_get_current_data_ex(type->elements, (void **)&item_type, &pos) != FAILURE) {
pos              4747 ext/soap/soap.c 				zend_hash_internal_pointer_reset_ex(type->elements, &pos);
pos              4748 ext/soap/soap.c 				while (zend_hash_get_current_data_ex(type->elements, (void **)&item_type, &pos) != FAILURE) {
pos              4754 ext/soap/soap.c 					zend_hash_move_forward_ex(type->elements, &pos);
pos              4854 ext/soap/soap.c 					zend_hash_internal_pointer_reset_ex(type->attributes, &pos);
pos              4855 ext/soap/soap.c 					while (zend_hash_get_current_data_ex(type->attributes, (void **)&attr, &pos) != FAILURE) {
pos              4866 ext/soap/soap.c 						zend_hash_move_forward_ex(type->attributes, &pos);
pos               149 ext/sockets/conversions.c 	zend_llist_position	pos;
pos               155 ext/sockets/conversions.c 	for (node = zend_llist_get_first_ex(keys, &pos);
pos               157 ext/sockets/conversions.c 			node = zend_llist_get_next_ex(keys, &pos)) {
pos               220 ext/sockets/conversions.c 	HashPosition	pos;
pos               227 ext/sockets/conversions.c     for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(arr), &pos), i = 1;
pos               229 ext/sockets/conversions.c 			&& zend_hash_get_current_data_ex(Z_ARRVAL_P(arr), (void **)&elem, &pos) == SUCCESS;
pos               230 ext/sockets/conversions.c 			zend_hash_move_forward_ex(Z_ARRVAL_P(arr), &pos), i++) {
pos               929 ext/sockets/conversions.c 	HashPosition		pos;
pos               957 ext/sockets/conversions.c     for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(arr), &pos), i = 0;
pos               959 ext/sockets/conversions.c 			&& zend_hash_get_current_data_ex(Z_ARRVAL_P(arr), (void **)&elem, &pos) == SUCCESS;
pos               960 ext/sockets/conversions.c 			zend_hash_move_forward_ex(Z_ARRVAL_P(arr), &pos)) {
pos                69 ext/spl/spl_array.c 	HashPosition      pos;
pos               106 ext/spl/spl_array.c 	Bucket *pos = intern->pos;
pos               107 ext/spl/spl_array.c 	if (pos != NULL) {
pos               108 ext/spl/spl_array.c 		intern->pos_h = pos->h;
pos               112 ext/spl/spl_array.c static void spl_array_set_pos(spl_array_object* intern, HashPosition pos) /* {{{ */
pos               114 ext/spl/spl_array.c 	intern->pos = pos;
pos               127 ext/spl/spl_array.c 		if (p == intern->pos) {
pos               685 ext/spl/spl_array.c 	if (object->pos && (object->ar_flags & SPL_ARRAY_IS_REF) && spl_hash_verify_pos_ex(object, ht TSRMLS_CC) == FAILURE) {
pos               752 ext/spl/spl_array.c 	if (!intern->pos) {
pos               939 ext/spl/spl_array.c 			if (zend_hash_get_current_key_ex(aht, &string_key, &string_length, &num_key, 0, &intern->pos) == HASH_KEY_IS_STRING) {
pos               953 ext/spl/spl_array.c 			if (zend_hash_has_more_elements_ex(aht, &intern->pos) != SUCCESS) {
pos               956 ext/spl/spl_array.c 			zend_hash_move_forward_ex(aht, &intern->pos);
pos               965 ext/spl/spl_array.c 	zend_hash_move_forward_ex(aht, &intern->pos);
pos               970 ext/spl/spl_array.c 		return zend_hash_has_more_elements_ex(aht, &intern->pos);
pos              1022 ext/spl/spl_array.c 		return zend_hash_has_more_elements_ex(aht, &object->pos);
pos              1036 ext/spl/spl_array.c 		if (zend_hash_get_current_data_ex(aht, (void**)data, &object->pos) == FAILURE) {
pos              1055 ext/spl/spl_array.c 			zend_hash_get_current_key_zval_ex(aht, key, &object->pos);
pos              1088 ext/spl/spl_array.c 	zend_hash_internal_pointer_reset_ex(aht, &intern->pos);
pos              1382 ext/spl/spl_array.c 		if (result == SUCCESS && zend_hash_has_more_elements_ex(aht, &intern->pos) == SUCCESS) {
pos              1392 ext/spl/spl_array.c 	HashPosition pos;
pos              1403 ext/spl/spl_array.c 		pos = intern->pos;
pos              1406 ext/spl/spl_array.c 		while(intern->pos && spl_array_next(intern TSRMLS_CC) == SUCCESS) {
pos              1409 ext/spl/spl_array.c 		spl_array_set_pos(intern, pos);
pos              1551 ext/spl/spl_array.c 	if (zend_hash_get_current_data_ex(aht, (void **) &entry, &intern->pos) == FAILURE) {
pos              1578 ext/spl/spl_array.c 	zend_hash_get_current_key_zval_ex(aht, return_value, &intern->pos);
pos              1617 ext/spl/spl_array.c 		RETURN_BOOL(zend_hash_has_more_elements_ex(aht, &intern->pos) == SUCCESS);
pos              1638 ext/spl/spl_array.c 	if (zend_hash_get_current_data_ex(aht, (void **) &entry, &intern->pos) == FAILURE) {
pos              1662 ext/spl/spl_array.c 	if (zend_hash_get_current_data_ex(aht, (void **) &entry, &intern->pos) == FAILURE) {
pos               234 ext/spl/spl_directory.c #define IS_SLASH_AT(zs, pos) (IS_SLASH(zs[pos]))
pos               824 ext/spl/spl_directory.c 	long                   pos;
pos               826 ext/spl/spl_directory.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &pos) == FAILURE) {
pos               830 ext/spl/spl_directory.c 	if (intern->u.dir.index > pos) {
pos               839 ext/spl/spl_directory.c 	while (intern->u.dir.index < pos) {
pos               848 ext/spl/spl_directory.c 			zend_throw_exception_ex(spl_ce_OutOfBoundsException, 0 TSRMLS_CC, "Seek position %ld is out of range", pos);
pos              2801 ext/spl/spl_directory.c 	long pos, whence = SEEK_SET;
pos              2803 ext/spl/spl_directory.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|l", &pos, &whence) == FAILURE) {
pos              2813 ext/spl/spl_directory.c 	RETURN_LONG(php_stream_seek(intern->u.file.stream, pos, whence));
pos              3053 ext/spl/spl_directory.c 	ZEND_ARG_INFO(0, pos)
pos               165 ext/spl/spl_dllist.c 	int pos = 0;
pos               173 ext/spl/spl_dllist.c 	while (current && pos < offset) {
pos               174 ext/spl/spl_dllist.c 		pos++;
pos              1684 ext/spl/spl_iterators.c 	intern->current.pos = 0;
pos              1719 ext/spl/spl_iterators.c 			ZVAL_LONG(intern->current.key, intern->current.pos);
pos              1734 ext/spl/spl_iterators.c 	intern->current.pos++;
pos              2530 ext/spl/spl_iterators.c 	if (intern->u.limit.count != -1 && intern->current.pos >= intern->u.limit.offset + intern->u.limit.count) {
pos              2537 ext/spl/spl_iterators.c static inline void spl_limit_it_seek(spl_dual_it_object *intern, long pos TSRMLS_DC)
pos              2542 ext/spl/spl_iterators.c 	if (pos < intern->u.limit.offset) {
pos              2543 ext/spl/spl_iterators.c 		zend_throw_exception_ex(spl_ce_OutOfBoundsException, 0 TSRMLS_CC, "Cannot seek to %ld which is below the offset %ld", pos, intern->u.limit.offset);
pos              2546 ext/spl/spl_iterators.c 	if (pos >= intern->u.limit.offset + intern->u.limit.count && intern->u.limit.count != -1) {
pos              2547 ext/spl/spl_iterators.c 		zend_throw_exception_ex(spl_ce_OutOfBoundsException, 0 TSRMLS_CC, "Cannot seek to %ld which is behind offset %ld plus count %ld", pos, intern->u.limit.offset, intern->u.limit.count);
pos              2550 ext/spl/spl_iterators.c 	if (pos != intern->current.pos && instanceof_function(intern->inner.ce, spl_ce_SeekableIterator TSRMLS_CC)) {
pos              2552 ext/spl/spl_iterators.c 		ZVAL_LONG(zpos, pos);
pos              2557 ext/spl/spl_iterators.c 			intern->current.pos = pos;
pos              2565 ext/spl/spl_iterators.c 		if (pos < intern->current.pos) {
pos              2568 ext/spl/spl_iterators.c 		while (pos > intern->current.pos && spl_dual_it_valid(intern TSRMLS_CC) == SUCCESS) {
pos              2604 ext/spl/spl_iterators.c 	RETURN_BOOL((intern->u.limit.count == -1 || intern->current.pos < intern->u.limit.offset + intern->u.limit.count) && intern->current.data);
pos              2616 ext/spl/spl_iterators.c 	if (intern->u.limit.count == -1 || intern->current.pos < intern->u.limit.offset + intern->u.limit.count) {
pos              2626 ext/spl/spl_iterators.c 	long                 pos;
pos              2628 ext/spl/spl_iterators.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &pos) == FAILURE) {
pos              2633 ext/spl/spl_iterators.c 	spl_limit_it_seek(intern, pos TSRMLS_CC);
pos              2634 ext/spl/spl_iterators.c 	RETURN_LONG(intern->current.pos);
pos              2643 ext/spl/spl_iterators.c 	RETURN_LONG(intern->current.pos);
pos               137 ext/spl/spl_iterators.h 		int                  pos;
pos                86 ext/spl/spl_observer.c 	HashPosition      pos;
pos               247 ext/spl/spl_observer.c 	HashPosition pos;
pos               250 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&other->storage, &pos);
pos               251 ext/spl/spl_observer.c 	while (zend_hash_get_current_data_ex(&other->storage, (void **)&element, &pos) == SUCCESS) {
pos               253 ext/spl/spl_observer.c 		zend_hash_move_forward_ex(&other->storage, &pos);
pos               256 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos               325 ext/spl/spl_observer.c 	HashPosition pos;
pos               346 ext/spl/spl_observer.c 		zend_hash_internal_pointer_reset_ex(&intern->storage, &pos);
pos               347 ext/spl/spl_observer.c 		while (zend_hash_get_current_data_ex(&intern->storage, (void **)&element, &pos) == SUCCESS) {
pos               357 ext/spl/spl_observer.c 				zend_hash_move_forward_ex(&intern->storage, &pos);
pos               375 ext/spl/spl_observer.c 	HashPosition pos;
pos               382 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &pos);
pos               383 ext/spl/spl_observer.c 	while (zend_hash_get_current_data_ex(&intern->storage, (void **)&element, &pos) == SUCCESS) {
pos               386 ext/spl/spl_observer.c 		zend_hash_move_forward_ex(&intern->storage, &pos);
pos               468 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos               560 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos               589 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos               648 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos               662 ext/spl/spl_observer.c 	RETURN_BOOL(zend_hash_has_more_elements_ex(&intern->storage, &intern->pos) == SUCCESS);
pos               689 ext/spl/spl_observer.c 	if (zend_hash_get_current_data_ex(&intern->storage, (void**)&element, &intern->pos) == FAILURE) {
pos               706 ext/spl/spl_observer.c 	if (zend_hash_get_current_data_ex(&intern->storage, (void**)&element, &intern->pos) == FAILURE) {
pos               724 ext/spl/spl_observer.c 	if (zend_hash_get_current_data_ex(&intern->storage, (void**)&element, &intern->pos) == FAILURE) {
pos               742 ext/spl/spl_observer.c 	zend_hash_move_forward_ex(&intern->storage, &intern->pos);
pos               754 ext/spl/spl_observer.c 	HashPosition      pos;
pos               771 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &pos);
pos               773 ext/spl/spl_observer.c 	while(zend_hash_has_more_elements_ex(&intern->storage, &pos) == SUCCESS) {
pos               774 ext/spl/spl_observer.c 		if (zend_hash_get_current_data_ex(&intern->storage, (void**)&element, &pos) == FAILURE) {
pos               783 ext/spl/spl_observer.c 		zend_hash_move_forward_ex(&intern->storage, &pos);
pos              1076 ext/spl/spl_observer.c 		zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos              1077 ext/spl/spl_observer.c 		while (zend_hash_get_current_data_ex(&intern->storage, (void**)&element, &intern->pos) == SUCCESS) {
pos              1083 ext/spl/spl_observer.c 			zend_hash_move_forward_ex(&intern->storage, &intern->pos);
pos              1105 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos              1106 ext/spl/spl_observer.c 	while (zend_hash_get_current_data_ex(&intern->storage, (void**)&element, &intern->pos) == SUCCESS && !EG(exception)) {
pos              1109 ext/spl/spl_observer.c 		zend_hash_move_forward_ex(&intern->storage, &intern->pos);
pos              1128 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos              1129 ext/spl/spl_observer.c 	while (zend_hash_get_current_data_ex(&intern->storage, (void**)&element, &intern->pos) == SUCCESS && !EG(exception)) {
pos              1132 ext/spl/spl_observer.c 		zend_hash_move_forward_ex(&intern->storage, &intern->pos);
pos              1158 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos              1159 ext/spl/spl_observer.c 	while (zend_hash_get_current_data_ex(&intern->storage, (void**)&element, &intern->pos) == SUCCESS && !EG(exception)) {
pos              1174 ext/spl/spl_observer.c 		zend_hash_move_forward_ex(&intern->storage, &intern->pos);
pos              1194 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos              1195 ext/spl/spl_observer.c 	while (zend_hash_get_current_data_ex(&intern->storage, (void**)&element, &intern->pos) == SUCCESS && !EG(exception)) {
pos              1244 ext/spl/spl_observer.c 		zend_hash_move_forward_ex(&intern->storage, &intern->pos);
pos               287 ext/standard/array.c 			HashPosition pos;
pos               289 ext/standard/array.c 			for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(array), &pos);
pos               290 ext/standard/array.c 				zend_hash_get_current_data_ex(Z_ARRVAL_P(array), (void **) &element, &pos) == SUCCESS;
pos               291 ext/standard/array.c 				zend_hash_move_forward_ex(Z_ARRVAL_P(array), &pos)
pos              1182 ext/standard/array.c 	HashPosition pos;			/* hash iterator */
pos              1194 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(array), &pos);
pos              1195 ext/standard/array.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(array), (void **)&entry, &pos) == SUCCESS) {
pos              1201 ext/standard/array.c 				zend_hash_get_current_key_zval_ex(Z_ARRVAL_P(array), return_value, &pos);
pos              1205 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(array), &pos);
pos              1293 ext/standard/array.c 	HashPosition pos;
pos              1331 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(var_array), &pos);
pos              1332 ext/standard/array.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(var_array), (void **)&entry, &pos) == SUCCESS) {
pos              1337 ext/standard/array.c 		key_type = zend_hash_get_current_key_ex(Z_ARRVAL_P(var_array), &var_name, &var_name_len, &num_key, 0, &pos);
pos              1351 ext/standard/array.c 			zend_hash_move_forward_ex(Z_ARRVAL_P(var_array), &pos);
pos              1430 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(var_array), &pos);
pos              1455 ext/standard/array.c 		HashPosition pos;
pos              1464 ext/standard/array.c 		zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(entry), &pos);
pos              1465 ext/standard/array.c 		while (zend_hash_get_current_data_ex(Z_ARRVAL_P(entry), (void**)&value_ptr, &pos) == SUCCESS) {
pos              1469 ext/standard/array.c 			zend_hash_move_forward_ex(Z_ARRVAL_P(entry), &pos);
pos              1554 ext/standard/array.c 	HashPosition pos;
pos              1563 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(keys), &pos);
pos              1564 ext/standard/array.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(keys), (void **)&entry, &pos) == SUCCESS) {
pos              1587 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(keys), &pos);
pos              2016 ext/standard/array.c 			 pos;			/* Current position in the array */
pos              2060 ext/standard/array.c 	pos = 0;
pos              2062 ext/standard/array.c 	while (pos < offset && zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &hpos) == SUCCESS) {
pos              2063 ext/standard/array.c 		pos++;
pos              2068 ext/standard/array.c 	while (pos < offset + length && zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &hpos) == SUCCESS) {
pos              2085 ext/standard/array.c 		pos++;
pos              2097 ext/standard/array.c 	HashPosition pos;
pos              2099 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(src, &pos);
pos              2100 ext/standard/array.c 	while (zend_hash_get_current_data_ex(src, (void **)&src_entry, &pos) == SUCCESS) {
pos              2101 ext/standard/array.c 		switch (zend_hash_get_current_key_ex(src, &string_key, &string_key_len, &num_key, 0, &pos)) {
pos              2160 ext/standard/array.c 		zend_hash_move_forward_ex(src, &pos);
pos              2172 ext/standard/array.c 	HashPosition pos;
pos              2174 ext/standard/array.c 	for (zend_hash_internal_pointer_reset_ex(src, &pos);
pos              2175 ext/standard/array.c 	     zend_hash_get_current_data_ex(src, (void **)&src_entry, &pos) == SUCCESS;
pos              2176 ext/standard/array.c 	     zend_hash_move_forward_ex(src, &pos)) {
pos              2177 ext/standard/array.c 		switch (zend_hash_get_current_key_ex(src, &string_key, &string_key_len, &num_key, 0, &pos)) {
pos              2307 ext/standard/array.c 	HashPosition pos;
pos              2327 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &pos);
pos              2328 ext/standard/array.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &pos) == SUCCESS) {
pos              2336 ext/standard/array.c 			zend_hash_get_current_key_zval_ex(Z_ARRVAL_P(input), new_val, &pos);
pos              2340 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &pos);
pos              2351 ext/standard/array.c 	HashPosition pos;
pos              2361 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &pos);
pos              2362 ext/standard/array.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &pos) == SUCCESS) {
pos              2365 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &pos);
pos              2378 ext/standard/array.c 	HashPosition pos;
pos              2389 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(myht, &pos);
pos              2390 ext/standard/array.c 	while (zend_hash_get_current_data_ex(myht, (void **)&entry, &pos) == SUCCESS) {
pos              2413 ext/standard/array.c 		zend_hash_move_forward_ex(myht, &pos);
pos              2522 ext/standard/array.c 	HashPosition pos;
pos              2531 ext/standard/array.c 	zend_hash_internal_pointer_end_ex(Z_ARRVAL_P(input), &pos);
pos              2532 ext/standard/array.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &pos) == SUCCESS) {
pos              2535 ext/standard/array.c 		switch (zend_hash_get_current_key_ex(Z_ARRVAL_P(input), &string_key, &string_key_len, &num_key, 0, &pos)) {
pos              2549 ext/standard/array.c 		zend_hash_move_backwards_ex(Z_ARRVAL_P(input), &pos);
pos              2619 ext/standard/array.c 	HashPosition pos;
pos              2627 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(array), &pos);
pos              2628 ext/standard/array.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(array), (void **)&entry, &pos) == SUCCESS) {
pos              2630 ext/standard/array.c 		zend_hash_get_current_key_zval_ex(Z_ARRVAL_P(array), data, &pos);
pos              2641 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(array), &pos);
pos              2656 ext/standard/array.c 	HashPosition pos;
pos              2664 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(array), &pos);
pos              2665 ext/standard/array.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(array), (void **)&entry, &pos) == SUCCESS) {
pos              2668 ext/standard/array.c 		switch (zend_hash_get_current_key_ex(Z_ARRVAL_P(array), &string_key, &str_key_len, &num_key, 0, &pos)) {
pos              2684 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(array), &pos);
pos              3870 ext/standard/array.c 	HashPosition pos;
pos              3891 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &pos);
pos              3892 ext/standard/array.c 	while (num_req && (key_type = zend_hash_get_current_key_ex(Z_ARRVAL_P(input), &string_key, &string_key_len, &num_key, 0, &pos)) != HASH_KEY_NON_EXISTENT) {
pos              3915 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &pos);
pos              3927 ext/standard/array.c 	HashPosition pos;
pos              3935 ext/standard/array.c 	for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &pos);
pos              3936 ext/standard/array.c 		zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &pos) == SUCCESS;
pos              3937 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &pos)
pos              3957 ext/standard/array.c 	HashPosition pos;
pos              3969 ext/standard/array.c 	for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &pos);
pos              3970 ext/standard/array.c 		zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void **)&entry, &pos) == SUCCESS;
pos              3971 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &pos)
pos              4006 ext/standard/array.c 	HashPosition pos;
pos              4037 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(htbl, &pos);
pos              4038 ext/standard/array.c 	while (zend_hash_get_current_data_ex(htbl, (void **)&operand, &pos) == SUCCESS) {
pos              4056 ext/standard/array.c 		zend_hash_move_forward_ex(htbl, &pos);
pos              4078 ext/standard/array.c 	HashPosition pos;
pos              4105 ext/standard/array.c 	for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(array), &pos);
pos              4106 ext/standard/array.c 		zend_hash_get_current_data_ex(Z_ARRVAL_P(array), (void **)&operand, &pos) == SUCCESS;
pos              4107 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(array), &pos)
pos              4109 ext/standard/array.c 		int key_type = zend_hash_get_current_key_ex(Z_ARRVAL_P(array), &string_key, &string_key_len, &num_key, 0, &pos);
pos              4344 ext/standard/array.c 	HashPosition pos;
pos              4363 ext/standard/array.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(input), &pos);
pos              4364 ext/standard/array.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(input), (void**)&entry, &pos) == SUCCESS) {
pos              4375 ext/standard/array.c 			key_type = zend_hash_get_current_key_ex(Z_ARRVAL_P(input), &str_key, &str_key_len, &num_key, 0, &pos);
pos              4395 ext/standard/array.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(input), &pos);
pos              1993 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, pos)
pos              3337 ext/standard/basic_functions.c 	PHP_FALIAS(pos,					current,								arginfo_current)
pos              4243 ext/standard/basic_functions.c 		int pos = 0;
pos              4266 ext/standard/basic_functions.c 			argv[pos++] = estrdup(Z_STRVAL_P(arg_ptr));
pos               666 ext/standard/file.c 				HashPosition pos;
pos               668 ext/standard/file.c 				zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(data), &pos);
pos               669 ext/standard/file.c 				while (zend_hash_get_current_data_ex(Z_ARRVAL_P(data), (void **) &tmp, &pos) == SUCCESS) {
pos               687 ext/standard/file.c 					zend_hash_move_forward_ex(Z_ARRVAL_P(data), &pos);
pos              1882 ext/standard/file.c 	HashPosition pos;
pos              1885 ext/standard/file.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(fields), &pos);
pos              1886 ext/standard/file.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(fields), (void **) &field_tmp, &pos) == SUCCESS) {
pos              1927 ext/standard/file.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(fields), &pos);
pos               261 ext/standard/filters.c 			HashPosition pos;
pos               264 ext/standard/filters.c 			zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(filterparams), &pos);
pos               265 ext/standard/filters.c 			while (zend_hash_get_current_data_ex(Z_ARRVAL_P(filterparams), (void **) &tmp, &pos) == SUCCESS) {
pos               270 ext/standard/filters.c 				zend_hash_move_forward_ex(Z_ARRVAL_P(filterparams), &pos);
pos                60 ext/standard/formatted_print.c php_sprintf_appendchar(char **buffer, int *pos, int *size, char add TSRMLS_DC)
pos                62 ext/standard/formatted_print.c 	if ((*pos + 1) >= *size) {
pos                67 ext/standard/formatted_print.c 	PRINTF_DEBUG(("sprintf: appending '%c', pos=\n", add, *pos));
pos                68 ext/standard/formatted_print.c 	(*buffer)[(*pos)++] = add;
pos                74 ext/standard/formatted_print.c php_sprintf_appendstring(char **buffer, int *pos, int *size, char *add,
pos                91 ext/standard/formatted_print.c 				  *buffer, *pos, *size, add, min_width, padding, alignment));
pos                94 ext/standard/formatted_print.c 	if(m_width > INT_MAX - *pos - 1) {
pos                98 ext/standard/formatted_print.c 	req_size = *pos + m_width + 1;
pos               112 ext/standard/formatted_print.c 			(*buffer)[(*pos)++] = (neg) ? '-' : '+';
pos               118 ext/standard/formatted_print.c 			(*buffer)[(*pos)++] = padding;
pos               122 ext/standard/formatted_print.c 	memcpy(&(*buffer)[*pos], add, copy_len + 1);
pos               123 ext/standard/formatted_print.c 	*pos += copy_len;
pos               126 ext/standard/formatted_print.c 			(*buffer)[(*pos)++] = padding;
pos               134 ext/standard/formatted_print.c php_sprintf_appendint(char **buffer, int *pos, int *size, long number,
pos               143 ext/standard/formatted_print.c 				  *buffer, pos, size, number, width, padding, alignment));
pos               170 ext/standard/formatted_print.c 	php_sprintf_appendstring(buffer, pos, size, &numbuf[i], width, 0,
pos               178 ext/standard/formatted_print.c php_sprintf_appenduint(char **buffer, int *pos, int *size,
pos               187 ext/standard/formatted_print.c 				  *buffer, pos, size, number, width, padding, alignment));
pos               203 ext/standard/formatted_print.c 	php_sprintf_appendstring(buffer, pos, size, &numbuf[i], width, 0,
pos               210 ext/standard/formatted_print.c php_sprintf_appenddouble(char **buffer, int *pos,
pos               230 ext/standard/formatted_print.c 				  *buffer, pos, size, number, width, padding, alignment, fmt));
pos               240 ext/standard/formatted_print.c 		php_sprintf_appendstring(buffer, pos, size, "NaN", 3, 0, padding,
pos               247 ext/standard/formatted_print.c 		php_sprintf_appendstring(buffer, pos, size, "INF", 3, 0, padding,
pos               306 ext/standard/formatted_print.c 	php_sprintf_appendstring(buffer, pos, size, s, width, 0, padding,
pos               313 ext/standard/formatted_print.c php_sprintf_append2n(char **buffer, int *pos, int *size, long number,
pos               323 ext/standard/formatted_print.c 				  *buffer, pos, size, number, width, padding, alignment, n,
pos               336 ext/standard/formatted_print.c 	php_sprintf_appendstring(buffer, pos, size, &numbuf[i], width, 0,
pos               344 ext/standard/formatted_print.c php_sprintf_getnumber(char *buffer, int *pos)
pos               347 ext/standard/formatted_print.c 	register long num = strtol(&buffer[*pos], &endptr, 10);
pos               351 ext/standard/formatted_print.c 		i = (endptr - &buffer[*pos]);
pos               354 ext/standard/formatted_print.c 	*pos += i;
pos                66 ext/standard/html.c #define MB_FAILURE(pos, advance) do { \
pos                67 ext/standard/html.c 	*cursor = pos + (advance); \
pos                72 ext/standard/html.c #define CHECK_LEN(pos, chars_need) ((str_len - (pos)) >= (chars_need))
pos               108 ext/standard/html.c 	size_t pos = *cursor;
pos               112 ext/standard/html.c 	assert(pos <= str_len);
pos               114 ext/standard/html.c 	if (!CHECK_LEN(pos, 1))
pos               115 ext/standard/html.c 		MB_FAILURE(pos, 1);
pos               125 ext/standard/html.c 			c = str[pos];
pos               128 ext/standard/html.c 				pos++;
pos               130 ext/standard/html.c 				MB_FAILURE(pos, 1);
pos               132 ext/standard/html.c 				if (!CHECK_LEN(pos, 2))
pos               133 ext/standard/html.c 					MB_FAILURE(pos, 1);
pos               135 ext/standard/html.c 				if (!utf8_trail(str[pos + 1])) {
pos               136 ext/standard/html.c 					MB_FAILURE(pos, utf8_lead(str[pos + 1]) ? 1 : 2);
pos               138 ext/standard/html.c 				this_char = ((c & 0x1f) << 6) | (str[pos + 1] & 0x3f);
pos               140 ext/standard/html.c 					MB_FAILURE(pos, 2);
pos               142 ext/standard/html.c 				pos += 2;
pos               144 ext/standard/html.c 				size_t avail = str_len - pos;
pos               147 ext/standard/html.c 						!utf8_trail(str[pos + 1]) || !utf8_trail(str[pos + 2])) {
pos               148 ext/standard/html.c 					if (avail < 2 || utf8_lead(str[pos + 1]))
pos               149 ext/standard/html.c 						MB_FAILURE(pos, 1);
pos               150 ext/standard/html.c 					else if (avail < 3 || utf8_lead(str[pos + 2]))
pos               151 ext/standard/html.c 						MB_FAILURE(pos, 2);
pos               153 ext/standard/html.c 						MB_FAILURE(pos, 3);
pos               156 ext/standard/html.c 				this_char = ((c & 0x0f) << 12) | ((str[pos + 1] & 0x3f) << 6) | (str[pos + 2] & 0x3f);
pos               158 ext/standard/html.c 					MB_FAILURE(pos, 3);
pos               160 ext/standard/html.c 					MB_FAILURE(pos, 3);
pos               162 ext/standard/html.c 				pos += 3;
pos               164 ext/standard/html.c 				size_t avail = str_len - pos;
pos               167 ext/standard/html.c 						!utf8_trail(str[pos + 1]) || !utf8_trail(str[pos + 2]) ||
pos               168 ext/standard/html.c 						!utf8_trail(str[pos + 3])) {
pos               169 ext/standard/html.c 					if (avail < 2 || utf8_lead(str[pos + 1]))
pos               170 ext/standard/html.c 						MB_FAILURE(pos, 1);
pos               171 ext/standard/html.c 					else if (avail < 3 || utf8_lead(str[pos + 2]))
pos               172 ext/standard/html.c 						MB_FAILURE(pos, 2);
pos               173 ext/standard/html.c 					else if (avail < 4 || utf8_lead(str[pos + 3]))
pos               174 ext/standard/html.c 						MB_FAILURE(pos, 3);
pos               176 ext/standard/html.c 						MB_FAILURE(pos, 4);
pos               179 ext/standard/html.c 				this_char = ((c & 0x07) << 18) | ((str[pos + 1] & 0x3f) << 12) | ((str[pos + 2] & 0x3f) << 6) | (str[pos + 3] & 0x3f);
pos               181 ext/standard/html.c 					MB_FAILURE(pos, 4);
pos               183 ext/standard/html.c 				pos += 4;
pos               185 ext/standard/html.c 				MB_FAILURE(pos, 1);
pos               193 ext/standard/html.c 			unsigned char c = str[pos];
pos               196 ext/standard/html.c 				if (!CHECK_LEN(pos, 2))
pos               197 ext/standard/html.c 					MB_FAILURE(pos, 1);
pos               199 ext/standard/html.c 				next = str[pos + 1];
pos               205 ext/standard/html.c 					MB_FAILURE(pos, 1);
pos               207 ext/standard/html.c 				pos += 2;
pos               210 ext/standard/html.c 				pos += 1;
pos               217 ext/standard/html.c 			unsigned char c = str[pos];
pos               220 ext/standard/html.c 				if (!CHECK_LEN(pos, 2))
pos               221 ext/standard/html.c 					MB_FAILURE(pos, 1);
pos               223 ext/standard/html.c 				next = str[pos + 1];
pos               229 ext/standard/html.c 					MB_FAILURE(pos, 1);
pos               231 ext/standard/html.c 					MB_FAILURE(pos, 2);
pos               233 ext/standard/html.c 				pos += 2;
pos               236 ext/standard/html.c 				pos += 1;
pos               243 ext/standard/html.c 			unsigned char c = str[pos];
pos               246 ext/standard/html.c 				if (!CHECK_LEN(pos, 2))
pos               247 ext/standard/html.c 					MB_FAILURE(pos, 1);
pos               249 ext/standard/html.c 				next = str[pos + 1];
pos               254 ext/standard/html.c 					MB_FAILURE(pos, 1);
pos               256 ext/standard/html.c 					MB_FAILURE(pos, 2);
pos               258 ext/standard/html.c 				pos += 2;
pos               261 ext/standard/html.c 				pos += 1;
pos               263 ext/standard/html.c 				MB_FAILURE(pos, 1);
pos               270 ext/standard/html.c 			unsigned char c = str[pos];
pos               273 ext/standard/html.c 				if (!CHECK_LEN(pos, 2))
pos               274 ext/standard/html.c 					MB_FAILURE(pos, 1);
pos               276 ext/standard/html.c 				next = str[pos + 1];
pos               281 ext/standard/html.c 					MB_FAILURE(pos, 1);
pos               283 ext/standard/html.c 					MB_FAILURE(pos, 2);
pos               285 ext/standard/html.c 				pos += 2;
pos               288 ext/standard/html.c 				pos += 1;
pos               290 ext/standard/html.c 				MB_FAILURE(pos, 1);
pos               297 ext/standard/html.c 			unsigned char c = str[pos];
pos               301 ext/standard/html.c 				if (!CHECK_LEN(pos, 2))
pos               302 ext/standard/html.c 					MB_FAILURE(pos, 1);
pos               303 ext/standard/html.c 				next = str[pos + 1];
pos               309 ext/standard/html.c 					MB_FAILURE(pos, (next != 0xA0 && next != 0xFF) ? 1 : 2);
pos               311 ext/standard/html.c 				pos += 2;
pos               314 ext/standard/html.c 				if (!CHECK_LEN(pos, 2))
pos               315 ext/standard/html.c 					MB_FAILURE(pos, 1);
pos               317 ext/standard/html.c 				next = str[pos + 1];
pos               322 ext/standard/html.c 					MB_FAILURE(pos, (next != 0xA0 && next != 0xFF) ? 1 : 2);
pos               324 ext/standard/html.c 				pos += 2;
pos               326 ext/standard/html.c 				size_t avail = str_len - pos;
pos               328 ext/standard/html.c 				if (avail < 3 || !(str[pos + 1] >= 0xA1 && str[pos + 1] <= 0xFE) ||
pos               329 ext/standard/html.c 						!(str[pos + 2] >= 0xA1 && str[pos + 2] <= 0xFE)) {
pos               330 ext/standard/html.c 					if (avail < 2 || (str[pos + 1] != 0xA0 && str[pos + 1] != 0xFF))
pos               331 ext/standard/html.c 						MB_FAILURE(pos, 1);
pos               332 ext/standard/html.c 					else if (avail < 3 || (str[pos + 2] != 0xA0 && str[pos + 2] != 0xFF))
pos               333 ext/standard/html.c 						MB_FAILURE(pos, 2);
pos               335 ext/standard/html.c 						MB_FAILURE(pos, 3);
pos               338 ext/standard/html.c 					this_char = (c << 16) | (str[pos + 1] << 8) | str[pos + 2];
pos               340 ext/standard/html.c 				pos += 3;
pos               344 ext/standard/html.c 				pos += 1;
pos               346 ext/standard/html.c 				MB_FAILURE(pos, 1);
pos               352 ext/standard/html.c 		this_char = str[pos++];
pos               356 ext/standard/html.c 	*cursor = pos;
pos              1394 ext/standard/html.c 					char *pos = (char*)&old[cursor+1];
pos              1395 ext/standard/html.c 					valid = process_numeric_entity((const char **)&pos, &code_point);
pos              1402 ext/standard/html.c 					ent_len = pos - (char*)&old[cursor];
pos               247 ext/standard/http_fopen_wrapper.c 				HashPosition pos;
pos               250 ext/standard/http_fopen_wrapper.c 				for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_PP(tmpzval), &pos);
pos               251 ext/standard/http_fopen_wrapper.c 					SUCCESS == zend_hash_get_current_data_ex(Z_ARRVAL_PP(tmpzval), (void *)&tmpheader, &pos);
pos               252 ext/standard/http_fopen_wrapper.c 					zend_hash_move_forward_ex(Z_ARRVAL_PP(tmpzval), &pos)) {
pos               433 ext/standard/http_fopen_wrapper.c 			HashPosition pos;
pos               437 ext/standard/http_fopen_wrapper.c 			for (zend_hash_internal_pointer_reset_ex(Z_ARRVAL_PP(tmpzval), &pos);
pos               438 ext/standard/http_fopen_wrapper.c 				SUCCESS == zend_hash_get_current_data_ex(Z_ARRVAL_PP(tmpzval), (void *)&tmpheader, &pos);
pos               439 ext/standard/http_fopen_wrapper.c 				zend_hash_move_forward_ex(Z_ARRVAL_PP(tmpzval), &pos)
pos               181 ext/standard/image.c static unsigned long int php_swf_get_bits (unsigned char* buffer, unsigned int pos, unsigned int count)
pos               186 ext/standard/image.c 	for (loop = pos; loop < pos + count; loop++)
pos               189 ext/standard/image.c 			((((buffer[loop / 8]) >> (7 - (loop % 8))) & 0x01) << (count - (loop - pos) - 1));
pos               109 ext/standard/info.c 			HashPosition pos;
pos               117 ext/standard/info.c 			zend_hash_internal_pointer_reset_ex(ht, &pos);
pos               118 ext/standard/info.c 			while (zend_hash_get_current_key_ex(ht, &key, &len, NULL, 0, &pos) == HASH_KEY_IS_STRING)
pos               125 ext/standard/info.c 				zend_hash_move_forward_ex(ht, &pos);
pos               126 ext/standard/info.c 				if (zend_hash_get_current_key_ex(ht, &key, &len, NULL, 0, &pos) == HASH_KEY_IS_STRING) {
pos                59 ext/standard/mail.c #define SKIP_LONG_HEADER_SEP(str, pos)																	\
pos                60 ext/standard/mail.c 	if (str[pos] == '\r' && str[pos + 1] == '\n' && (str[pos + 2] == ' ' || str[pos + 2] == '\t')) {	\
pos                61 ext/standard/mail.c 		pos += 2;																						\
pos                62 ext/standard/mail.c 		while (str[pos + 1] == ' ' || str[pos + 1] == '\t') {											\
pos                63 ext/standard/mail.c 			pos++;																						\
pos                84 ext/standard/password.c 	size_t pos = 0;
pos                96 ext/standard/password.c 	for (pos = 0; pos < out_len; pos++) {
pos                97 ext/standard/password.c 		if (buffer[pos] == '+') {
pos                98 ext/standard/password.c 			ret[pos] = '.';
pos                99 ext/standard/password.c 		} else if (buffer[pos] == '=') {
pos               103 ext/standard/password.c 			ret[pos] = buffer[pos];
pos                88 ext/standard/proc_open.c 	HashPosition pos;
pos               112 ext/standard/proc_open.c 	for (zend_hash_internal_pointer_reset_ex(target_hash, &pos);
pos               113 ext/standard/proc_open.c 			zend_hash_get_current_data_ex(target_hash, (void **) &element, &pos) == SUCCESS;
pos               114 ext/standard/proc_open.c 			zend_hash_move_forward_ex(target_hash, &pos)) {
pos               133 ext/standard/proc_open.c 		switch (zend_hash_get_current_key_ex(target_hash, &string_key, &string_length, &num_key, 0, &pos)) {
pos               148 ext/standard/proc_open.c 	for (zend_hash_internal_pointer_reset_ex(target_hash, &pos);
pos               149 ext/standard/proc_open.c 			zend_hash_get_current_data_ex(target_hash, (void **) &element, &pos) == SUCCESS;
pos               150 ext/standard/proc_open.c 			zend_hash_move_forward_ex(target_hash, &pos)) {
pos               167 ext/standard/proc_open.c 		switch (zend_hash_get_current_key_ex(target_hash, &string_key, &string_length, &num_key, 0, &pos)) {
pos               204 ext/standard/proc_open.c 	zend_hash_internal_pointer_reset_ex(target_hash, &pos);
pos               464 ext/standard/proc_open.c 	HashPosition pos;
pos               541 ext/standard/proc_open.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(descriptorspec), &pos);
pos               542 ext/standard/proc_open.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(descriptorspec), (void **)&descitem, &pos) == SUCCESS) {
pos               548 ext/standard/proc_open.c 		zend_hash_get_current_key_ex(Z_ARRVAL_P(descriptorspec), &str_index, NULL, &nindex, 0, &pos);
pos               707 ext/standard/proc_open.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(descriptorspec), &pos);
pos               461 ext/standard/streamsfuncs.c 	long maxlen = PHP_STREAM_COPY_ALL, pos = 0;
pos               465 ext/standard/streamsfuncs.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rr|ll", &zsrc, &zdest, &maxlen, &pos) == FAILURE) {
pos               472 ext/standard/streamsfuncs.c 	if (pos > 0 && php_stream_seek(src, pos, SEEK_SET) < 0) {
pos               473 ext/standard/streamsfuncs.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to seek to position %ld in the stream", pos);
pos               559 ext/standard/streamsfuncs.c 		HashPosition pos;
pos               561 ext/standard/streamsfuncs.c 		zend_hash_internal_pointer_reset_ex(stream_xport_hash, &pos);
pos               564 ext/standard/streamsfuncs.c 					&num_key, 0, &pos) == HASH_KEY_IS_STRING) {
pos               566 ext/standard/streamsfuncs.c 			zend_hash_move_forward_ex(stream_xport_hash, &pos);
pos               589 ext/standard/streamsfuncs.c 		HashPosition pos;
pos               591 ext/standard/streamsfuncs.c 		for (zend_hash_internal_pointer_reset_ex(url_stream_wrappers_hash, &pos);
pos               592 ext/standard/streamsfuncs.c 			(key_flags = zend_hash_get_current_key_ex(url_stream_wrappers_hash, &stream_protocol, &stream_protocol_len, &num_key, 0, &pos)) != HASH_KEY_NON_EXISTENT;
pos               593 ext/standard/streamsfuncs.c 			zend_hash_move_forward_ex(url_stream_wrappers_hash, &pos)) {
pos               918 ext/standard/streamsfuncs.c 	HashPosition pos, opos;
pos               925 ext/standard/streamsfuncs.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(options), &pos);
pos               926 ext/standard/streamsfuncs.c 	while (SUCCESS == zend_hash_get_current_data_ex(Z_ARRVAL_P(options), (void**)&wval, &pos)) {
pos               927 ext/standard/streamsfuncs.c 		if (HASH_KEY_IS_STRING == zend_hash_get_current_key_ex(Z_ARRVAL_P(options), &wkey, &wkey_len, &num_key, 0, &pos)
pos               942 ext/standard/streamsfuncs.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(options), &pos);
pos              1138 ext/standard/string.c 	HashPosition   pos;
pos              1150 ext/standard/string.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(arr), &pos);
pos              1152 ext/standard/string.c 	while (zend_hash_get_current_data_ex(Z_ARRVAL_P(arr), (void **) &tmp, &pos) == SUCCESS) {
pos              1206 ext/standard/string.c 		zend_hash_move_forward_ex(Z_ARRVAL_P(arr), &pos);
pos              3056 ext/standard/string.c 	STRLEN		pos = 0,
pos              3061 ext/standard/string.c 	while (pos <= lastpos) {
pos              3062 ext/standard/string.c 		HASH	h		= php_strtr_hash(&S(text)[pos + d->m - d->B], d->B) & d->shift->table_mask;
pos              3066 ext/standard/string.c 			pos += shift;
pos              3069 ext/standard/string.c 					prefix_h		= php_strtr_hash(&S(text)[pos], d->Bp);
pos              3081 ext/standard/string.c 				if (L(&pnr->pat) > L(text) - pos ||
pos              3082 ext/standard/string.c 						memcmp(S(&pnr->pat), &S(text)[pos], L(&pnr->pat)) != 0)
pos              3085 ext/standard/string.c 				smart_str_appendl(&result, &S(text)[nextwpos], pos - nextwpos);
pos              3087 ext/standard/string.c 				pos += L(&pnr->pat);
pos              3088 ext/standard/string.c 				nextwpos = pos;
pos              3092 ext/standard/string.c 			pos++;
pos              4591 ext/standard/string.c 	int state = 0, pos;
pos              4633 ext/standard/string.c 							pos = tp - tbuf;
pos              4635 ext/standard/string.c 							tp = tbuf + pos;
pos              4652 ext/standard/string.c 						pos = tp - tbuf;
pos              4654 ext/standard/string.c 						tp = tbuf + pos;
pos              4670 ext/standard/string.c 						pos = tp - tbuf;
pos              4672 ext/standard/string.c 						tp = tbuf + pos;
pos              4699 ext/standard/string.c 								pos = tp - tbuf;
pos              4701 ext/standard/string.c 								tp = tbuf + pos;
pos              4753 ext/standard/string.c 						pos = tp - tbuf;
pos              4755 ext/standard/string.c 						tp = tbuf + pos;
pos              4778 ext/standard/string.c 							pos = tp - tbuf;
pos              4780 ext/standard/string.c 							tp = tbuf + pos;
pos              4837 ext/standard/string.c 						pos = tp - tbuf;
pos              4839 ext/standard/string.c 						tp = tbuf + pos;
pos               705 ext/standard/url.c 	HashPosition pos;
pos               737 ext/standard/url.c 	zend_hash_internal_pointer_reset_ex(hashT, &pos);
pos               738 ext/standard/url.c 	while (zend_hash_get_current_data_ex(hashT, (void**)&hdr, &pos) != FAILURE) {
pos               740 ext/standard/url.c 			zend_hash_move_forward_ex(hashT, &pos);
pos               770 ext/standard/url.c 		zend_hash_move_forward_ex(hashT, &pos);
pos               637 ext/standard/var.c 		HashPosition pos;
pos               645 ext/standard/var.c 		zend_hash_internal_pointer_reset_ex(HASH_OF(retval_ptr), &pos);
pos               647 ext/standard/var.c 		for (;; zend_hash_move_forward_ex(HASH_OF(retval_ptr), &pos)) {
pos               648 ext/standard/var.c 			i = zend_hash_get_current_key_ex(HASH_OF(retval_ptr), &key, NULL, &index, 0, &pos);
pos               657 ext/standard/var.c 			zend_hash_get_current_data_ex(HASH_OF(retval_ptr), (void **) &name, &pos);
pos               853 ext/standard/var.c 				HashPosition pos;
pos               855 ext/standard/var.c 				zend_hash_internal_pointer_reset_ex(myht, &pos);
pos               856 ext/standard/var.c 				for (;; zend_hash_move_forward_ex(myht, &pos)) {
pos               857 ext/standard/var.c 					i = zend_hash_get_current_key_ex(myht, &key, &key_len, &index, 0, &pos);
pos               876 ext/standard/var.c 					if (zend_hash_get_current_data_ex(myht, (void **) &data, &pos) != SUCCESS
pos               390 ext/sysvshm/sysvshm.c 	long pos;
pos               393 ext/sysvshm/sysvshm.c 	pos = ptr->start;
pos               396 ext/sysvshm/sysvshm.c 		if (pos >= ptr->end) {
pos               399 ext/sysvshm/sysvshm.c 		shm_var = (sysvshm_chunk*) ((char *) ptr + pos);
pos               401 ext/sysvshm/sysvshm.c 			return pos;
pos               403 ext/sysvshm/sysvshm.c 		pos += shm_var->next;
pos               405 ext/sysvshm/sysvshm.c 		if (shm_var->next <= 0 || pos < ptr->start) {
pos               612 ext/xml/xml.c  	int pos = len;
pos               637 ext/xml/xml.c  	while (pos > 0) {
pos               654 ext/xml/xml.c  		pos--;
pos               666 ext/xml/xml.c  	size_t pos = 0;
pos               686 ext/xml/xml.c  	while (pos < (size_t)len) {
pos               688 ext/xml/xml.c  		c = php_next_utf8_char((const unsigned char*)s, (size_t) len, &pos, &status);
pos              1054 ext/zip/php_zip.c 	HashPosition pos;
pos              1063 ext/zip/php_zip.c 	zend_hash_internal_pointer_reset_ex(obj->prop_handler, &pos);
pos              1065 ext/zip/php_zip.c 	while (zend_hash_get_current_data_ex(obj->prop_handler, (void**)&hnd, &pos) == SUCCESS) {
pos              1066 ext/zip/php_zip.c 		zend_hash_get_current_key_ex(obj->prop_handler, &key, &key_len, &num_key, 0, &pos);
pos              1073 ext/zip/php_zip.c 		zend_hash_move_forward_ex(obj->prop_handler, &pos);
pos              1894 ext/zip/php_zip.c 	int pos = 0;
pos              1911 ext/zip/php_zip.c 		pos = ze_obj->buffers_cnt++;
pos              1915 ext/zip/php_zip.c 		pos = 0;
pos              1917 ext/zip/php_zip.c 	ze_obj->buffers[pos] = (char *)emalloc(buffer_len + 1);
pos              1918 ext/zip/php_zip.c 	memcpy(ze_obj->buffers[pos], buffer, buffer_len + 1);
pos              1920 ext/zip/php_zip.c 	zs = zip_source_buffer(intern, ze_obj->buffers[pos], buffer_len, 0);
pos                91 main/getopt.c  		char *pos;
pos               103 main/getopt.c  		if ((pos = php_memnstr(&argv[*optind][arg_start], "=", 1, argv[*optind]+arg_end)) != NULL) {
pos               104 main/getopt.c  			arg_end = pos-&argv[*optind][arg_start];
pos               554 main/output.c  	HashPosition pos;
pos               567 main/output.c  		for (zend_hash_internal_pointer_reset_ex(rconflicts, &pos);
pos               568 main/output.c  			zend_hash_get_current_data_ex(rconflicts, (void *) &conflict, &pos) == SUCCESS;
pos               569 main/output.c  			zend_hash_move_forward_ex(rconflicts, &pos)
pos               668 main/php_variables.c 	HashPosition pos;
pos               672 main/php_variables.c 	zend_hash_internal_pointer_reset_ex(src, &pos);
pos               673 main/php_variables.c 	while (zend_hash_get_current_data_ex(src, (void **)&src_entry, &pos) == SUCCESS) {
pos               674 main/php_variables.c 		key_type = zend_hash_get_current_key_ex(src, &string_key, &string_key_len, &num_key, 0, &pos);
pos               694 main/php_variables.c 		zend_hash_move_forward_ex(src, &pos);
pos               486 main/rfc1867.c 	char *pos = *line, quote;
pos               489 main/rfc1867.c 	while (*pos && *pos != stop) {
pos               490 main/rfc1867.c 		if ((quote = *pos) == '"' || quote == '\'') {
pos               491 main/rfc1867.c 			++pos;
pos               492 main/rfc1867.c 			while (*pos && *pos != quote) {
pos               493 main/rfc1867.c 				if (*pos == '\\' && pos[1] && pos[1] == quote) {
pos               494 main/rfc1867.c 					pos += 2;
pos               496 main/rfc1867.c 					++pos;
pos               499 main/rfc1867.c 			if (*pos) {
pos               500 main/rfc1867.c 				++pos;
pos               502 main/rfc1867.c 		} else ++pos;
pos               504 main/rfc1867.c 	if (*pos == '\0') {
pos               510 main/rfc1867.c 	res = estrndup(*line, pos - *line);
pos               512 main/rfc1867.c 	while (*pos == stop) {
pos               513 main/rfc1867.c 		++pos;
pos               516 main/rfc1867.c 	*line = pos;
pos               249 main/streams/cast.c 			off_t pos;
pos               255 main/streams/cast.c 			pos = php_stream_tell(stream);
pos               256 main/streams/cast.c 			if (pos > 0) {
pos               257 main/streams/cast.c 				fseek(*ret, pos, SEEK_SET);
pos               114 main/streams/glob_wrapper.c 	const char *pos, *gpath = path;
pos               116 main/streams/glob_wrapper.c 	if ((pos = strrchr(path, '/')) != NULL) {
pos               117 main/streams/glob_wrapper.c 		path = pos+1;
pos               120 main/streams/glob_wrapper.c 	if ((pos = strrchr(path, '\\')) != NULL) {
pos               121 main/streams/glob_wrapper.c 		path = pos+1;
pos               214 main/streams/glob_wrapper.c 	const char *tmp, *pos;
pos               239 main/streams/glob_wrapper.c 	pos = path;
pos               240 main/streams/glob_wrapper.c 	if ((tmp = strrchr(pos, '/')) != NULL) {
pos               241 main/streams/glob_wrapper.c 		pos = tmp+1;
pos               244 main/streams/glob_wrapper.c 	if ((tmp = strrchr(pos, '\\')) != NULL) {
pos               245 main/streams/glob_wrapper.c 		pos = tmp+1;
pos               249 main/streams/glob_wrapper.c 	pglob->pattern_len = strlen(pos);
pos               250 main/streams/glob_wrapper.c 	pglob->pattern = estrndup(pos, pglob->pattern_len);
pos               481 main/streams/memory.c 	off_t pos;
pos               510 main/streams/memory.c 	pos = php_stream_tell(ts->innerstream);
pos               515 main/streams/memory.c 	php_stream_seek(ts->innerstream, pos, SEEK_SET);
pos               124 main/streams/streams.c 				HashPosition pos;
pos               131 main/streams/streams.c 				zend_hash_internal_pointer_reset_ex(&EG(regular_list), &pos);
pos               133 main/streams/streams.c 						(void **)&regentry, &pos) == SUCCESS) {
pos               136 main/streams/streams.c 							&index, 0, &pos);
pos               139 main/streams/streams.c 					zend_hash_move_forward_ex(&EG(regular_list), &pos);
pos               188 main/streams/streams.c 			zend_llist_position pos;
pos               198 main/streams/streams.c 			for (err_buf_p = zend_llist_get_first_ex(err_list, &pos), i = 0;
pos               200 main/streams/streams.c 					err_buf_p = zend_llist_get_next_ex(err_list, &pos), i++) {
pos               208 main/streams/streams.c 			for (err_buf_p = zend_llist_get_first_ex(err_list, &pos), i = 0;
pos               210 main/streams/streams.c 					err_buf_p = zend_llist_get_next_ex(err_list, &pos), i++) {
pos               587 sapi/apache_hooks/php_apache.c 	HashPosition pos;
pos               597 sapi/apache_hooks/php_apache.c 				zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(first), &pos);
pos               598 sapi/apache_hooks/php_apache.c 				while (zend_hash_get_current_data_ex(Z_ARRVAL_P(first), (void **)&entry, &pos) == SUCCESS) {
pos               599 sapi/apache_hooks/php_apache.c 					switch(zend_hash_get_current_key_ex(Z_ARRVAL_P(first), &string_key, &string_key_len, &num_key, 0, &pos)) {
pos               602 sapi/apache_hooks/php_apache.c 								zend_hash_move_forward_ex(Z_ARRVAL_P(first), &pos);
pos               606 sapi/apache_hooks/php_apache.c 								zend_hash_move_forward_ex(Z_ARRVAL_P(first), &pos);
pos               623 sapi/apache_hooks/php_apache.c 					zend_hash_move_forward_ex(Z_ARRVAL_P(first), &pos);
pos               405 sapi/cgi/cgi_main.c 	zend_llist_position pos;
pos               440 sapi/cgi/cgi_main.c 				h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               448 sapi/cgi/cgi_main.c 					h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               474 sapi/cgi/cgi_main.c 	h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               489 sapi/cgi/cgi_main.c 				h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               496 sapi/cgi/cgi_main.c 		h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos              2413 sapi/cgi/cgi_main.c 									long pos = ftell(file_handle.handle.fp);
pos              2414 sapi/cgi/cgi_main.c 									fseek(file_handle.handle.fp, pos - 1, SEEK_SET);
pos              2431 sapi/cgi/cgi_main.c 									long pos = php_stream_tell((php_stream*)file_handle.handle.stream.handle);
pos              2432 sapi/cgi/cgi_main.c 									php_stream_seek((php_stream*)file_handle.handle.stream.handle, pos - 1, SEEK_SET);
pos               171 sapi/cgi/fastcgi.c 	char                  *pos;
pos               192 sapi/cgi/fastcgi.c 	h->data->pos = h->data->data;
pos               193 sapi/cgi/fastcgi.c 	h->data->end = h->data->pos + FCGI_HASH_SEG_SIZE;
pos               235 sapi/cgi/fastcgi.c 	h->data->pos = h->data->data;
pos               242 sapi/cgi/fastcgi.c 	if (UNEXPECTED(h->data->pos + str_len + 1 >= h->data->end)) {
pos               246 sapi/cgi/fastcgi.c 		p->pos = p->data;
pos               247 sapi/cgi/fastcgi.c 		p->end = p->pos + seg_size;
pos               251 sapi/cgi/fastcgi.c 	ret = h->data->pos; 
pos               254 sapi/cgi/fastcgi.c 	h->data->pos += str_len + 1;
pos              1413 sapi/cgi/fastcgi.c 		int pos = 0;
pos              1417 sapi/cgi/fastcgi.c 		while ((len - pos) > 0xffff) {
pos              1424 sapi/cgi/fastcgi.c 			if (safe_write(req, str + pos, 0xfff8) != 0xfff8) {
pos              1428 sapi/cgi/fastcgi.c 			pos += 0xfff8;
pos              1431 sapi/cgi/fastcgi.c 		pad = (((len - pos) + 7) & ~7) - (len - pos);
pos              1435 sapi/cgi/fastcgi.c 		fcgi_make_header(req->out_hdr, type, req->id, (len - pos) - rest);
pos              1440 sapi/cgi/fastcgi.c 		if (safe_write(req, str + pos, (len - pos) - rest) != (len - pos) - rest) {
pos               646 sapi/cli/php_cli.c 				long pos = ftell(file_handle->handle.fp);
pos               647 sapi/cli/php_cli.c 				fseek(file_handle->handle.fp, pos - 1, SEEK_SET);
pos               488 sapi/cli/php_cli_server.c 	HashPosition pos;
pos               499 sapi/cli/php_cli_server.c 	zend_hash_internal_pointer_reset_ex(headers, &pos);
pos               500 sapi/cli/php_cli_server.c 	while (zend_hash_get_current_data_ex(headers, (void **)&value_pointer, &pos) == SUCCESS) {
pos               501 sapi/cli/php_cli_server.c 		zend_hash_get_current_key_ex(headers, &key, &key_len, NULL, 0, &pos);
pos               503 sapi/cli/php_cli_server.c 		zend_hash_move_forward_ex(headers, &pos);
pos               653 sapi/cli/php_cli_server.c 	zend_llist_position pos;
pos               668 sapi/cli/php_cli_server.c 	h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               674 sapi/cli/php_cli_server.c 		h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               603 sapi/fpm/fpm/fastcgi.c 		HashPosition pos;
pos               620 sapi/fpm/fpm/fastcgi.c 		zend_hash_internal_pointer_reset_ex(req->env, &pos);
pos               621 sapi/fpm/fpm/fastcgi.c 		while ((key_type = zend_hash_get_current_key_ex(req->env, &str_index, &str_length, &num_index, 0, &pos)) != HASH_KEY_NON_EXISTENT) {
pos               623 sapi/fpm/fpm/fastcgi.c 			zend_hash_move_forward_ex(req->env, &pos);
pos              1028 sapi/fpm/fpm/fastcgi.c 		int pos = 0;
pos              1032 sapi/fpm/fpm/fastcgi.c 		while ((len - pos) > 0xffff) {
pos              1039 sapi/fpm/fpm/fastcgi.c 			if (safe_write(req, str + pos, 0xfff8) != 0xfff8) {
pos              1043 sapi/fpm/fpm/fastcgi.c 			pos += 0xfff8;
pos              1046 sapi/fpm/fpm/fastcgi.c 		pad = (((len - pos) + 7) & ~7) - (len - pos);
pos              1050 sapi/fpm/fpm/fastcgi.c 		fcgi_make_header(req->out_hdr, type, req->id, (len - pos) - rest);
pos              1055 sapi/fpm/fpm/fastcgi.c 		if (safe_write(req, str + pos, (len - pos) - rest) != (len - pos) - rest) {
pos               299 sapi/fpm/fpm/fpm_log.c 						zend_llist_position pos;
pos               303 sapi/fpm/fpm/fpm_log.c 						h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               307 sapi/fpm/fpm/fpm_log.c 								h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               311 sapi/fpm/fpm/fpm_log.c 								h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               317 sapi/fpm/fpm/fpm_log.c 								h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               322 sapi/fpm/fpm/fpm_log.c 								h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               397 sapi/fpm/fpm/fpm_main.c 	zend_llist_position pos;
pos               432 sapi/fpm/fpm/fpm_main.c 				h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               440 sapi/fpm/fpm/fpm_main.c 					h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               466 sapi/fpm/fpm/fpm_main.c 	h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               481 sapi/fpm/fpm/fpm_main.c 				h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               488 sapi/fpm/fpm/fpm_main.c 		h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               572 sapi/fpm/fpm/fpm_main.c 	HashPosition pos;
pos               607 sapi/fpm/fpm/fpm_main.c 	for (zend_hash_internal_pointer_reset_ex(request->env, &pos);
pos               608 sapi/fpm/fpm/fpm_main.c 	     zend_hash_get_current_key_ex(request->env, &var, &var_len, &idx, 0, &pos) == HASH_KEY_IS_STRING &&
pos               609 sapi/fpm/fpm/fpm_main.c 	     zend_hash_get_current_data_ex(request->env, (void **) &val, &pos) == SUCCESS;
pos               610 sapi/fpm/fpm/fpm_main.c 	     zend_hash_move_forward_ex(request->env, &pos)
pos               399 sapi/litespeed/lsapi_main.c     zend_llist_position pos;
pos               403 sapi/litespeed/lsapi_main.c         h = zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               408 sapi/litespeed/lsapi_main.c             h = zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos              1232 sapi/litespeed/lsapi_main.c     zend_llist_position pos;
pos              1246 sapi/litespeed/lsapi_main.c     h = zend_llist_get_first_ex(&SG(sapi_headers).headers, &pos);
pos              1267 sapi/litespeed/lsapi_main.c         h = zend_llist_get_next_ex(&SG(sapi_headers).headers, &pos);
pos               612 sapi/nsapi/nsapi.c 	length = nbuf->cursize - nbuf->pos;
pos               615 sapi/nsapi/nsapi.c 		memcpy(read_ptr, nbuf->inbuf + nbuf->pos, length);
pos               619 sapi/nsapi/nsapi.c 		nbuf->pos += length;
pos               662 sapi/nsapi/nsapi.c 	int pos;
pos               679 sapi/nsapi/nsapi.c 				pos = 0;
pos               682 sapi/nsapi/nsapi.c 				pos = 5;
pos               685 sapi/nsapi/nsapi.c 				for(p = value + pos; *p; p++) {
pos               733 sapi/nsapi/nsapi.c 		pos = strlen(value);
pos               734 sapi/nsapi/nsapi.c 		php_register_variable_safe("DOCUMENT_ROOT", value, pos-1, track_vars_array TSRMLS_CC);
pos               749 sapi/nsapi/nsapi.c 		pos = strlen(SG(request_info).request_uri);
pos               758 sapi/nsapi/nsapi.c 			php_register_variable_safe("REQUEST_URI", SG(request_info).request_uri, pos, track_vars_array TSRMLS_CC);
pos               762 sapi/nsapi/nsapi.c 			pos -= strlen(rc->path_info);
pos               763 sapi/nsapi/nsapi.c 			if (pos<0) {
pos               764 sapi/nsapi/nsapi.c 				pos = 0;
pos               767 sapi/nsapi/nsapi.c 		php_register_variable_safe("SCRIPT_NAME", SG(request_info).request_uri, pos, track_vars_array TSRMLS_CC);
pos               119 sapi/phpdbg/phpdbg_btree.c 	phpdbg_btree_position pos;
pos               121 sapi/phpdbg/phpdbg_btree.c 	pos.tree = tree;
pos               122 sapi/phpdbg/phpdbg_btree.c 	pos.end = lower_idx;
pos               123 sapi/phpdbg/phpdbg_btree.c 	pos.cur = higher_idx;
pos               125 sapi/phpdbg/phpdbg_btree.c 	return pos;
pos               128 sapi/phpdbg/phpdbg_btree.c phpdbg_btree_result *phpdbg_btree_next(phpdbg_btree_position *pos) {
pos               129 sapi/phpdbg/phpdbg_btree.c 	phpdbg_btree_result *result = phpdbg_btree_find_closest(pos->tree, pos->cur);
pos               131 sapi/phpdbg/phpdbg_btree.c 	if (result == NULL || result->idx < pos->end) {
pos               135 sapi/phpdbg/phpdbg_btree.c 	pos->cur = result->idx - 1;
pos                53 sapi/phpdbg/phpdbg_btree.h phpdbg_btree_result *phpdbg_btree_next(phpdbg_btree_position *pos);
pos                30 sapi/phpdbg/phpdbg_cmd.c 	size_t pos = 0;
pos                33 sapi/phpdbg/phpdbg_cmd.c 		memcpy(&buffer[pos], command->parent->name, command->parent->name_len);
pos                34 sapi/phpdbg/phpdbg_cmd.c 		pos += command->parent->name_len;
pos                35 sapi/phpdbg/phpdbg_cmd.c 		memcpy(&buffer[pos], " ", sizeof(" ")-1);
pos                36 sapi/phpdbg/phpdbg_cmd.c 		pos += (sizeof(" ")-1);
pos                39 sapi/phpdbg/phpdbg_cmd.c 	memcpy(&buffer[pos], command->name, command->name_len);
pos                40 sapi/phpdbg/phpdbg_cmd.c 	pos += command->name_len;
pos                41 sapi/phpdbg/phpdbg_cmd.c 	buffer[pos] = 0;
pos               630 sapi/phpdbg/phpdbg_cmd.c 			size_t pos = 0;
pos               639 sapi/phpdbg/phpdbg_cmd.c 						(pos + matched[it]->name_len) + 1  + 
pos               642 sapi/phpdbg/phpdbg_cmd.c 				memcpy(&list[pos], matched[it]->name, matched[it]->name_len);
pos               643 sapi/phpdbg/phpdbg_cmd.c 				pos += matched[it]->name_len;
pos               645 sapi/phpdbg/phpdbg_cmd.c 					memcpy(&list[pos], ", ", sizeof(", ")-1);
pos               646 sapi/phpdbg/phpdbg_cmd.c 					pos += (sizeof(", ") - 1);
pos               649 sapi/phpdbg/phpdbg_cmd.c 				list[pos] = 0;
pos                62 sapi/phpdbg/phpdbg_info.c 	HashPosition pos;
pos                68 sapi/phpdbg/phpdbg_info.c 	zend_hash_internal_pointer_reset_ex(&EG(included_files), &pos);
pos                70 sapi/phpdbg/phpdbg_info.c 		NULL, NULL, 0, &pos) == HASH_KEY_IS_STRING) {
pos                72 sapi/phpdbg/phpdbg_info.c 		zend_hash_move_forward_ex(&EG(included_files), &pos);
pos                92 sapi/phpdbg/phpdbg_info.c 	HashPosition pos;
pos               112 sapi/phpdbg/phpdbg_info.c 	zend_hash_internal_pointer_reset_ex(EG(active_symbol_table), &pos);
pos               114 sapi/phpdbg/phpdbg_info.c 		NULL, NULL, 0, &pos) == HASH_KEY_IS_STRING) {
pos               115 sapi/phpdbg/phpdbg_info.c 		zend_hash_get_current_data_ex(EG(active_symbol_table), (void **)&data, &pos);
pos               120 sapi/phpdbg/phpdbg_info.c 		zend_hash_move_forward_ex(EG(active_symbol_table), &pos);
pos               147 sapi/phpdbg/phpdbg_info.c 		for (zend_hash_internal_pointer_reset_ex(&vars, &pos);
pos               148 sapi/phpdbg/phpdbg_info.c 			zend_hash_get_current_data_ex(&vars, (void**) &data, &pos) == SUCCESS;
pos               149 sapi/phpdbg/phpdbg_info.c 			zend_hash_move_forward_ex(&vars, &pos)) {
pos               152 sapi/phpdbg/phpdbg_info.c 			zend_hash_get_current_key_ex(&vars, &var, NULL, NULL, 0, &pos);
pos               129 sapi/phpdbg/phpdbg_utils.h static void zend_hash_get_current_key_zval_ex(const HashTable *ht, zval *key, HashPosition *pos) {
pos               132 sapi/phpdbg/phpdbg_utils.h 	p = pos ? (*pos) : ht->pInternalPointer;
pos               588 sapi/phpdbg/phpdbg_watch.c 	phpdbg_btree_position pos = phpdbg_btree_find_between(&PHPDBG_G(watchpoint_tree), (zend_ulong)dump->page, (zend_ulong)dump->page + dump->size);
pos               595 sapi/phpdbg/phpdbg_watch.c 	while ((result = phpdbg_btree_next(&pos))) {
pos               741 sapi/phpdbg/phpdbg_watch.c 	zend_llist_position pos;
pos               749 sapi/phpdbg/phpdbg_watch.c 	dump = (phpdbg_watch_memdump **)zend_llist_get_last_ex(&PHPDBG_G(watchlist_mem), &pos);
pos               753 sapi/phpdbg/phpdbg_watch.c 	} while ((dump = (phpdbg_watch_memdump **)zend_llist_get_prev_ex(&PHPDBG_G(watchlist_mem), &pos)));
pos               178 sapi/thttpd/thttpd.c 	zend_llist_position pos;
pos               199 sapi/thttpd/thttpd.c 	h = zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               220 sapi/thttpd/thttpd.c 		h = zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               105 sapi/tux/php_tux.c 	zend_llist_position pos;
pos               131 sapi/tux/php_tux.c 	h = zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               148 sapi/tux/php_tux.c 		h = zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               101 win32/registry.c 					HashPosition pos;
pos               107 win32/registry.c 					for (zend_hash_internal_pointer_reset_ex(parent_ht, &pos);
pos               108 win32/registry.c 					     zend_hash_get_current_data_ex(parent_ht, (void**)&tmpdata, &pos) == SUCCESS &&
pos               109 win32/registry.c 					     zend_hash_get_current_key_ex(parent_ht, &index, &index_len, &num, 0, &pos) == HASH_KEY_IS_STRING;
pos               110 win32/registry.c 					     zend_hash_move_forward_ex(parent_ht, &pos)) {
pos               254 win32/registry.c 			HashPosition pos;
pos               260 win32/registry.c 			for (zend_hash_internal_pointer_reset_ex(ht, &pos);
pos               261 win32/registry.c 			     zend_hash_get_current_data_ex(ht, (void**)&data, &pos) == SUCCESS &&
pos               262 win32/registry.c 			     zend_hash_get_current_key_ex(ht, &index, &index_len, &num, 0, &pos) == HASH_KEY_IS_STRING;
pos               263 win32/registry.c 			     zend_hash_move_forward_ex(ht, &pos)) {
pos               237 win32/sendmail.c 		char *pos = NULL;