pos               652 Zend/zend_alloc.c 		int pos = start / ZEND_MM_BITSET_LEN;
pos               657 Zend/zend_alloc.c 		if (pos != end) {
pos               660 Zend/zend_alloc.c 			bitset[pos++] |= tmp;
pos               661 Zend/zend_alloc.c 			while (pos != end) {
pos               663 Zend/zend_alloc.c 				bitset[pos++] = (zend_mm_bitset)-1;
pos               668 Zend/zend_alloc.c 			bitset[pos] |= tmp;
pos               674 Zend/zend_alloc.c 			bitset[pos] |= tmp;
pos               684 Zend/zend_alloc.c 		int pos = start / ZEND_MM_BITSET_LEN;
pos               689 Zend/zend_alloc.c 		if (pos != end) {
pos               692 Zend/zend_alloc.c 			bitset[pos++] &= ~tmp;
pos               693 Zend/zend_alloc.c 			while (pos != end) {
pos               695 Zend/zend_alloc.c 				bitset[pos++] = 0;
pos               700 Zend/zend_alloc.c 			bitset[pos] &= ~tmp;
pos               706 Zend/zend_alloc.c 			bitset[pos] &= ~tmp;
pos               716 Zend/zend_alloc.c 		int pos = start / ZEND_MM_BITSET_LEN;
pos               721 Zend/zend_alloc.c 		if (pos != end) {
pos               724 Zend/zend_alloc.c 			if ((bitset[pos++] & tmp) != 0) {
pos               727 Zend/zend_alloc.c 			while (pos != end) {
pos               729 Zend/zend_alloc.c 				if (bitset[pos++] != 0) {
pos               736 Zend/zend_alloc.c 			return (bitset[pos] & tmp) == 0;
pos               742 Zend/zend_alloc.c 			return (bitset[pos] & tmp) == 0;
pos               549 Zend/zend_generators.c 		HashPosition pos = Z_FE_POS(generator->values);
pos               553 Zend/zend_generators.c 			if (UNEXPECTED(pos >= ht->nNumUsed)) {
pos               558 Zend/zend_generators.c 			p = &ht->arData[pos];
pos               563 Zend/zend_generators.c 			pos++;
pos               576 Zend/zend_generators.c 		Z_FE_POS(generator->values) = pos;
pos               331 Zend/zend_hash.c ZEND_API uint32_t ZEND_FASTCALL zend_hash_iterator_add(HashTable *ht, HashPosition pos)
pos               343 Zend/zend_hash.c 			iter->pos = pos;
pos               361 Zend/zend_hash.c 	iter->pos = pos;
pos               373 Zend/zend_hash.c 	if (iter->pos == HT_INVALID_IDX) {
pos               384 Zend/zend_hash.c 		iter->pos = ht->nInternalPointer;
pos               386 Zend/zend_hash.c 	return iter->pos;
pos               395 Zend/zend_hash.c 	if (iter->pos == HT_INVALID_IDX) {
pos               408 Zend/zend_hash.c 		iter->pos = ht->nInternalPointer;
pos               410 Zend/zend_hash.c 	return iter->pos;
pos               461 Zend/zend_hash.c 			if (iter->pos >= start && iter->pos < res) {
pos               462 Zend/zend_hash.c 				res = iter->pos;
pos               476 Zend/zend_hash.c 		if (iter->ht == ht && iter->pos == from) {
pos               477 Zend/zend_hash.c 			iter->pos = to;
pos              2062 Zend/zend_hash.c ZEND_API void ZEND_FASTCALL zend_hash_internal_pointer_reset_ex(HashTable *ht, HashPosition *pos)
pos              2067 Zend/zend_hash.c 	HT_ASSERT(&ht->nInternalPointer != pos || GC_REFCOUNT(ht) == 1);
pos              2071 Zend/zend_hash.c 			*pos = idx;
pos              2075 Zend/zend_hash.c 	*pos = HT_INVALID_IDX;
pos              2082 Zend/zend_hash.c ZEND_API void ZEND_FASTCALL zend_hash_internal_pointer_end_ex(HashTable *ht, HashPosition *pos)
pos              2087 Zend/zend_hash.c 	HT_ASSERT(&ht->nInternalPointer != pos || GC_REFCOUNT(ht) == 1);
pos              2093 Zend/zend_hash.c 			*pos = idx;
pos              2097 Zend/zend_hash.c 	*pos = HT_INVALID_IDX;
pos              2101 Zend/zend_hash.c ZEND_API int ZEND_FASTCALL zend_hash_move_forward_ex(HashTable *ht, HashPosition *pos)
pos              2103 Zend/zend_hash.c 	uint32_t idx = *pos;
pos              2106 Zend/zend_hash.c 	HT_ASSERT(&ht->nInternalPointer != pos || GC_REFCOUNT(ht) == 1);
pos              2112 Zend/zend_hash.c 				*pos = HT_INVALID_IDX;
pos              2116 Zend/zend_hash.c 				*pos = idx;
pos              2125 Zend/zend_hash.c ZEND_API int ZEND_FASTCALL zend_hash_move_backwards_ex(HashTable *ht, HashPosition *pos)
pos              2127 Zend/zend_hash.c 	uint32_t idx = *pos;
pos              2130 Zend/zend_hash.c 	HT_ASSERT(&ht->nInternalPointer != pos || GC_REFCOUNT(ht) == 1);
pos              2136 Zend/zend_hash.c 				*pos = idx;
pos              2140 Zend/zend_hash.c 		*pos = HT_INVALID_IDX;
pos              2149 Zend/zend_hash.c ZEND_API int ZEND_FASTCALL zend_hash_get_current_key_ex(const HashTable *ht, zend_string **str_index, zend_ulong *num_index, HashPosition *pos)
pos              2151 Zend/zend_hash.c 	uint32_t idx = *pos;
pos              2168 Zend/zend_hash.c ZEND_API void ZEND_FASTCALL zend_hash_get_current_key_zval_ex(const HashTable *ht, zval *key, HashPosition *pos)
pos              2170 Zend/zend_hash.c 	uint32_t idx = *pos;
pos              2186 Zend/zend_hash.c ZEND_API int ZEND_FASTCALL zend_hash_get_current_key_type_ex(HashTable *ht, HashPosition *pos)
pos              2188 Zend/zend_hash.c     uint32_t idx = *pos;
pos              2204 Zend/zend_hash.c ZEND_API zval* ZEND_FASTCALL zend_hash_get_current_data_ex(HashTable *ht, HashPosition *pos)
pos              2206 Zend/zend_hash.c 	uint32_t idx = *pos;
pos               164 Zend/zend_hash.h #define zend_hash_has_more_elements_ex(ht, pos) \
pos               165 Zend/zend_hash.h 	(zend_hash_get_current_key_type_ex(ht, pos) == HASH_KEY_NON_EXISTENT ? FAILURE : SUCCESS)
pos               166 Zend/zend_hash.h ZEND_API int   ZEND_FASTCALL zend_hash_move_forward_ex(HashTable *ht, HashPosition *pos);
pos               167 Zend/zend_hash.h ZEND_API int   ZEND_FASTCALL zend_hash_move_backwards_ex(HashTable *ht, HashPosition *pos);
pos               168 Zend/zend_hash.h ZEND_API int   ZEND_FASTCALL zend_hash_get_current_key_ex(const HashTable *ht, zend_string **str_index, zend_ulong *num_index, HashPosition *pos);
pos               169 Zend/zend_hash.h ZEND_API void  ZEND_FASTCALL zend_hash_get_current_key_zval_ex(const HashTable *ht, zval *key, HashPosition *pos);
pos               170 Zend/zend_hash.h ZEND_API int   ZEND_FASTCALL zend_hash_get_current_key_type_ex(HashTable *ht, HashPosition *pos);
pos               171 Zend/zend_hash.h ZEND_API zval* ZEND_FASTCALL zend_hash_get_current_data_ex(HashTable *ht, HashPosition *pos);
pos               172 Zend/zend_hash.h ZEND_API void  ZEND_FASTCALL zend_hash_internal_pointer_reset_ex(HashTable *ht, HashPosition *pos);
pos               173 Zend/zend_hash.h ZEND_API void  ZEND_FASTCALL zend_hash_internal_pointer_end_ex(HashTable *ht, HashPosition *pos);
pos               226 Zend/zend_hash.h ZEND_API uint32_t     ZEND_FASTCALL zend_hash_iterator_add(HashTable *ht, HashPosition pos);
pos               730 Zend/zend_hash.h static zend_always_inline void *zend_hash_get_current_data_ptr_ex(HashTable *ht, HashPosition *pos)
pos               734 Zend/zend_hash.h 	zv = zend_hash_get_current_data_ex(ht, pos);
pos               260 Zend/zend_llist.c ZEND_API void *zend_llist_get_first_ex(zend_llist *l, zend_llist_position *pos)
pos               262 Zend/zend_llist.c 	zend_llist_position *current = pos ? pos : &l->traverse_ptr;
pos               273 Zend/zend_llist.c ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos)
pos               275 Zend/zend_llist.c 	zend_llist_position *current = pos ? pos : &l->traverse_ptr;
pos               286 Zend/zend_llist.c ZEND_API void *zend_llist_get_next_ex(zend_llist *l, zend_llist_position *pos)
pos               288 Zend/zend_llist.c 	zend_llist_position *current = pos ? pos : &l->traverse_ptr;
pos               300 Zend/zend_llist.c ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos)
pos               302 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              2146 Zend/zend_operators.c 	size_t pos=Z_STRLEN_P(str)-1;
pos              2175 Zend/zend_operators.c 		ch = s[pos];
pos              2178 Zend/zend_operators.c 				s[pos] = 'a';
pos              2181 Zend/zend_operators.c 				s[pos]++;
pos              2187 Zend/zend_operators.c 				s[pos] = 'A';
pos              2190 Zend/zend_operators.c 				s[pos]++;
pos              2196 Zend/zend_operators.c 				s[pos] = '0';
pos              2199 Zend/zend_operators.c 				s[pos]++;
pos              2210 Zend/zend_operators.c 	} while (pos-- > 0);
pos                88 Zend/zend_stream.c 	stream->mmap.pos = 0;
pos               212 Zend/zend_stream.c 			file_handle->handle.stream.mmap.pos = 0;
pos               290 Zend/zend_stream.c 	file_handle->handle.stream.mmap.pos        = 0;
pos                49 Zend/zend_stream.h 	size_t      pos;
pos               272 Zend/zend_types.h 	HashPosition  pos;
pos              5760 Zend/zend_vm_def.h 			HashPosition pos = 0;
pos              5769 Zend/zend_vm_def.h 			pos = 0;
pos              5772 Zend/zend_vm_def.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              5784 Zend/zend_vm_def.h 				pos++;
pos              5787 Zend/zend_vm_def.h 			Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              5849 Zend/zend_vm_def.h 	HashPosition pos = 0;
pos              5884 Zend/zend_vm_def.h 			if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              5894 Zend/zend_vm_def.h 			pos++;
pos              5897 Zend/zend_vm_def.h 		Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              5917 Zend/zend_vm_def.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              5929 Zend/zend_vm_def.h 				pos++;
pos              5932 Zend/zend_vm_def.h 			Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              6015 Zend/zend_vm_def.h 	HashPosition pos;
pos              6022 Zend/zend_vm_def.h 		pos = Z_FE_POS_P(array);
pos              6023 Zend/zend_vm_def.h 		p = fe_ht->arData + pos;
pos              6025 Zend/zend_vm_def.h 			if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              6032 Zend/zend_vm_def.h 				pos++;
pos              6039 Zend/zend_vm_def.h 					pos++;
pos              6046 Zend/zend_vm_def.h 		Z_FE_POS_P(array) = pos + 1;
pos              6061 Zend/zend_vm_def.h 			pos = zend_hash_iterator_pos(Z_FE_ITER_P(array), fe_ht);
pos              6062 Zend/zend_vm_def.h 			p = fe_ht->arData + pos;
pos              6064 Zend/zend_vm_def.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              6072 Zend/zend_vm_def.h 					pos++;
pos              6079 Zend/zend_vm_def.h 						pos++;
pos              6088 Zend/zend_vm_def.h 				pos++;
pos              6105 Zend/zend_vm_def.h 				pos++;
pos              6106 Zend/zend_vm_def.h 				if (pos >= fe_ht->nNumUsed) {
pos              6107 Zend/zend_vm_def.h 					pos = HT_INVALID_IDX;
pos              6119 Zend/zend_vm_def.h 			EG(ht_iterators)[Z_FE_ITER_P(array)].pos = pos;
pos              6192 Zend/zend_vm_def.h 	HashPosition pos;
pos              6200 Zend/zend_vm_def.h 		pos = zend_hash_iterator_pos_ex(Z_FE_ITER_P(EX_VAR(opline->op1.var)), array);
pos              6202 Zend/zend_vm_def.h 		p = fe_ht->arData + pos;
pos              6204 Zend/zend_vm_def.h 			if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              6211 Zend/zend_vm_def.h 				pos++;
pos              6218 Zend/zend_vm_def.h 					pos++;
pos              6233 Zend/zend_vm_def.h 			pos++;
pos              6234 Zend/zend_vm_def.h 			if (pos >= fe_ht->nNumUsed) {
pos              6235 Zend/zend_vm_def.h 				pos = HT_INVALID_IDX;
pos              6245 Zend/zend_vm_def.h 		EG(ht_iterators)[Z_FE_ITER_P(EX_VAR(opline->op1.var))].pos = pos;
pos              6253 Zend/zend_vm_def.h 			pos = zend_hash_iterator_pos(Z_FE_ITER_P(EX_VAR(opline->op1.var)), fe_ht);
pos              6254 Zend/zend_vm_def.h 			p = fe_ht->arData + pos;
pos              6256 Zend/zend_vm_def.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              6264 Zend/zend_vm_def.h 					pos++;
pos              6271 Zend/zend_vm_def.h 						pos++;
pos              6280 Zend/zend_vm_def.h 				pos++;
pos              6297 Zend/zend_vm_def.h 				pos++;
pos              6298 Zend/zend_vm_def.h 				if (pos >= fe_ht->nNumUsed) {
pos              6299 Zend/zend_vm_def.h 					pos = HT_INVALID_IDX;
pos              6311 Zend/zend_vm_def.h 			EG(ht_iterators)[Z_FE_ITER_P(EX_VAR(opline->op1.var))].pos = pos;
pos              3726 Zend/zend_vm_execute.h 			HashPosition pos = 0;
pos              3735 Zend/zend_vm_execute.h 			pos = 0;
pos              3738 Zend/zend_vm_execute.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              3750 Zend/zend_vm_execute.h 				pos++;
pos              3753 Zend/zend_vm_execute.h 			Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              3813 Zend/zend_vm_execute.h 	HashPosition pos = 0;
pos              3848 Zend/zend_vm_execute.h 			if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              3858 Zend/zend_vm_execute.h 			pos++;
pos              3861 Zend/zend_vm_execute.h 		Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              3880 Zend/zend_vm_execute.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              3892 Zend/zend_vm_execute.h 				pos++;
pos              3895 Zend/zend_vm_execute.h 			Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              12130 Zend/zend_vm_execute.h 			HashPosition pos = 0;
pos              12139 Zend/zend_vm_execute.h 			pos = 0;
pos              12142 Zend/zend_vm_execute.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              12154 Zend/zend_vm_execute.h 				pos++;
pos              12157 Zend/zend_vm_execute.h 			Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              12218 Zend/zend_vm_execute.h 	HashPosition pos = 0;
pos              12253 Zend/zend_vm_execute.h 			if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              12263 Zend/zend_vm_execute.h 			pos++;
pos              12266 Zend/zend_vm_execute.h 		Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              12285 Zend/zend_vm_execute.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              12297 Zend/zend_vm_execute.h 				pos++;
pos              12300 Zend/zend_vm_execute.h 			Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              15578 Zend/zend_vm_execute.h 			HashPosition pos = 0;
pos              15587 Zend/zend_vm_execute.h 			pos = 0;
pos              15590 Zend/zend_vm_execute.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              15602 Zend/zend_vm_execute.h 				pos++;
pos              15605 Zend/zend_vm_execute.h 			Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              15667 Zend/zend_vm_execute.h 	HashPosition pos = 0;
pos              15702 Zend/zend_vm_execute.h 			if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              15712 Zend/zend_vm_execute.h 			pos++;
pos              15715 Zend/zend_vm_execute.h 		Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              15735 Zend/zend_vm_execute.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              15747 Zend/zend_vm_execute.h 				pos++;
pos              15750 Zend/zend_vm_execute.h 			Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              15833 Zend/zend_vm_execute.h 	HashPosition pos;
pos              15840 Zend/zend_vm_execute.h 		pos = Z_FE_POS_P(array);
pos              15841 Zend/zend_vm_execute.h 		p = fe_ht->arData + pos;
pos              15843 Zend/zend_vm_execute.h 			if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              15850 Zend/zend_vm_execute.h 				pos++;
pos              15857 Zend/zend_vm_execute.h 					pos++;
pos              15864 Zend/zend_vm_execute.h 		Z_FE_POS_P(array) = pos + 1;
pos              15879 Zend/zend_vm_execute.h 			pos = zend_hash_iterator_pos(Z_FE_ITER_P(array), fe_ht);
pos              15880 Zend/zend_vm_execute.h 			p = fe_ht->arData + pos;
pos              15882 Zend/zend_vm_execute.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              15890 Zend/zend_vm_execute.h 					pos++;
pos              15897 Zend/zend_vm_execute.h 						pos++;
pos              15906 Zend/zend_vm_execute.h 				pos++;
pos              15923 Zend/zend_vm_execute.h 				pos++;
pos              15924 Zend/zend_vm_execute.h 				if (pos >= fe_ht->nNumUsed) {
pos              15925 Zend/zend_vm_execute.h 					pos = HT_INVALID_IDX;
pos              15937 Zend/zend_vm_execute.h 			EG(ht_iterators)[Z_FE_ITER_P(array)].pos = pos;
pos              16010 Zend/zend_vm_execute.h 	HashPosition pos;
pos              16018 Zend/zend_vm_execute.h 		pos = zend_hash_iterator_pos_ex(Z_FE_ITER_P(EX_VAR(opline->op1.var)), array);
pos              16020 Zend/zend_vm_execute.h 		p = fe_ht->arData + pos;
pos              16022 Zend/zend_vm_execute.h 			if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              16029 Zend/zend_vm_execute.h 				pos++;
pos              16036 Zend/zend_vm_execute.h 					pos++;
pos              16051 Zend/zend_vm_execute.h 			pos++;
pos              16052 Zend/zend_vm_execute.h 			if (pos >= fe_ht->nNumUsed) {
pos              16053 Zend/zend_vm_execute.h 				pos = HT_INVALID_IDX;
pos              16063 Zend/zend_vm_execute.h 		EG(ht_iterators)[Z_FE_ITER_P(EX_VAR(opline->op1.var))].pos = pos;
pos              16071 Zend/zend_vm_execute.h 			pos = zend_hash_iterator_pos(Z_FE_ITER_P(EX_VAR(opline->op1.var)), fe_ht);
pos              16072 Zend/zend_vm_execute.h 			p = fe_ht->arData + pos;
pos              16074 Zend/zend_vm_execute.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              16082 Zend/zend_vm_execute.h 					pos++;
pos              16089 Zend/zend_vm_execute.h 						pos++;
pos              16098 Zend/zend_vm_execute.h 				pos++;
pos              16115 Zend/zend_vm_execute.h 				pos++;
pos              16116 Zend/zend_vm_execute.h 				if (pos >= fe_ht->nNumUsed) {
pos              16117 Zend/zend_vm_execute.h 					pos = HT_INVALID_IDX;
pos              16129 Zend/zend_vm_execute.h 			EG(ht_iterators)[Z_FE_ITER_P(EX_VAR(opline->op1.var))].pos = pos;
pos              29297 Zend/zend_vm_execute.h 			HashPosition pos = 0;
pos              29306 Zend/zend_vm_execute.h 			pos = 0;
pos              29309 Zend/zend_vm_execute.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              29321 Zend/zend_vm_execute.h 				pos++;
pos              29324 Zend/zend_vm_execute.h 			Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              29384 Zend/zend_vm_execute.h 	HashPosition pos = 0;
pos              29419 Zend/zend_vm_execute.h 			if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              29429 Zend/zend_vm_execute.h 			pos++;
pos              29432 Zend/zend_vm_execute.h 		Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos              29451 Zend/zend_vm_execute.h 				if (UNEXPECTED(pos >= fe_ht->nNumUsed)) {
pos              29463 Zend/zend_vm_execute.h 				pos++;
pos              29466 Zend/zend_vm_execute.h 			Z_FE_ITER_P(EX_VAR(opline->result.var)) = zend_hash_iterator_add(fe_ht, pos);
pos                39 ext/com_dotnet/com_variant.c 	HashPosition pos;
pos                47 ext/com_dotnet/com_variant.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(z), &pos);
pos                48 ext/com_dotnet/com_variant.c 	for (;; zend_hash_move_forward_ex(Z_ARRVAL_P(z), &pos)) {
pos                50 ext/com_dotnet/com_variant.c 		keytype = zend_hash_get_current_key_ex(Z_ARRVAL_P(z), &strindex, &intindex, &pos);
pos                72 ext/com_dotnet/com_variant.c 	zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(z), &pos);
pos                73 ext/com_dotnet/com_variant.c 	for (;; zend_hash_move_forward_ex(Z_ARRVAL_P(z), &pos)) {
pos                74 ext/com_dotnet/com_variant.c 		if (NULL == (item = zend_hash_get_current_data_ex(Z_ARRVAL_P(z), &pos))) {
pos                77 ext/com_dotnet/com_variant.c 		zend_hash_get_current_key_ex(Z_ARRVAL_P(z), &strindex, &intindex, &pos);
pos               448 ext/com_dotnet/com_wrapper.c 	HashPosition pos;
pos               463 ext/com_dotnet/com_wrapper.c 		zend_hash_internal_pointer_reset_ex(Z_OBJPROP(disp->object), &pos);
pos               466 ext/com_dotnet/com_wrapper.c 				&pid, &pos))) {
pos               475 ext/com_dotnet/com_wrapper.c 			zend_hash_move_forward_ex(Z_OBJPROP(disp->object), &pos);
pos               497 ext/com_dotnet/com_wrapper.c 		zend_hash_internal_pointer_reset_ex(&Z_OBJCE(disp->object)->function_table, &pos);
pos               500 ext/com_dotnet/com_wrapper.c 			 	&name, &pid, &pos))) {
pos               510 ext/com_dotnet/com_wrapper.c 			zend_hash_move_forward_ex(&Z_OBJCE(disp->object)->function_table, &pos);
pos               588 ext/com_dotnet/com_wrapper.c 	HashPosition pos;
pos               602 ext/com_dotnet/com_wrapper.c 	zend_hash_internal_pointer_reset_ex(id_to_name, &pos);
pos               604 ext/com_dotnet/com_wrapper.c 				zend_hash_get_current_key_ex(id_to_name, &name, &pid, &pos))) {
pos               608 ext/com_dotnet/com_wrapper.c 			ntmp = zend_hash_get_current_data_ex(id_to_name, &pos);
pos               614 ext/com_dotnet/com_wrapper.c 		zend_hash_move_forward_ex(id_to_name, &pos);
pos               223 ext/curl/multi.c 		zend_llist_position pos;
pos               227 ext/curl/multi.c 		for (pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch;
pos               228 ext/curl/multi.c 			pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) {
pos               307 ext/curl/multi.c 		zend_llist_position pos;
pos               312 ext/curl/multi.c 		for(pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch;
pos               313 ext/curl/multi.c 			pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) {
pos               364 ext/curl/multi.c 		zend_llist_position pos;
pos               368 ext/curl/multi.c 		for (pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch;
pos               369 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              4534 ext/date/php_date.c 			if (tzdb->data[table[i].pos + 5] == option[0] && tzdb->data[table[i].pos + 6] == option[1]) {
pos              4537 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  		group = zend_hash_get_current_data_ex(Z_ARRVAL_P(key), &pos);
pos               216 ext/dba/dba.c  		zend_hash_move_forward_ex(Z_ARRVAL_P(key), &pos);
pos               217 ext/dba/dba.c  		name = zend_hash_get_current_data_ex(Z_ARRVAL_P(key), &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)
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)
pos                55 ext/dba/libcdb/cdb.c 		if (cdb_read(c, buf, n, pos) == -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)
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) == -1)
pos               166 ext/dba/libcdb/cdb.c 			switch(cdb_match(c, key, len, pos + 8)) {
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               536 ext/enchant/enchant.c 	int pos;
pos               551 ext/enchant/enchant.c 		pos = pbroker->dictcnt++;
pos               556 ext/enchant/enchant.c 			pos = 0;
pos               559 ext/enchant/enchant.c 		dict = pbroker->dict[pos] = (enchant_dict *)emalloc(sizeof(enchant_dict));
pos               560 ext/enchant/enchant.c 		dict->id = pos;
pos               563 ext/enchant/enchant.c 		pbroker->dict[pos] = dict;
pos               584 ext/enchant/enchant.c 	int pos;
pos               602 ext/enchant/enchant.c 		pos = pbroker->dictcnt++;
pos               607 ext/enchant/enchant.c 			pos = 0;
pos               610 ext/enchant/enchant.c 		dict = pbroker->dict[pos] = (enchant_dict *)emalloc(sizeof(enchant_dict));
pos               611 ext/enchant/enchant.c 		dict->id = pos;
pos               614 ext/enchant/enchant.c 		pbroker->dict[pos] = dict;
pos              3429 ext/exif/exif.c 	size_t          length=2, pos=0;
pos              3442 ext/exif/exif.c 		pos += length;
pos              3443 ext/exif/exif.c 		if (pos>=ImageInfo->Thumbnail.size)
pos              3445 ext/exif/exif.c 		c = data[pos++];
pos              3446 ext/exif/exif.c 		if (pos>=ImageInfo->Thumbnail.size)
pos              3452 ext/exif/exif.c 		while ((c = data[pos++]) == 0xFF && n--) {
pos              3453 ext/exif/exif.c 			if (pos+3>=ImageInfo->Thumbnail.size)
pos              3460 ext/exif/exif.c 		length = php_jpg_get16(data+pos);
pos              3461 ext/exif/exif.c 		if (pos+length>=ImageInfo->Thumbnail.size) {
pos              3465 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              3482 ext/exif/exif.c 				exif_process_SOFn(data+pos, marker, &sof_info);
pos               363 ext/fileinfo/libmagic/cdf.c 	size_t pos = CDF_SEC_POS(h, id);
pos               365 ext/fileinfo/libmagic/cdf.c 	return cdf_read(info, (zend_off_t)pos, ((char *)buf) + offs, len);
pos               373 ext/fileinfo/libmagic/cdf.c 	size_t pos = CDF_SHORT_SEC_POS(h, id);
pos               375 ext/fileinfo/libmagic/cdf.c 	if (pos + len > CDF_SEC_SIZE(h) * sst->sst_len) {
pos               378 ext/fileinfo/libmagic/cdf.c 		    pos + len, CDF_SEC_SIZE(h) * sst->sst_len));
pos               382 ext/fileinfo/libmagic/cdf.c 	    ((const char *)sst->sst_tab) + pos, len);
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               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               600 ext/iconv/iconv.c 		size_t pos = out_p - ZSTR_VAL(out_buffer);
pos               602 ext/iconv/iconv.c 		out_p = ZSTR_VAL(out_buffer) + pos;
pos               677 ext/intl/grapheme/grapheme_string.c 	int pos = 0, prev_pos = 0;
pos               681 ext/intl/grapheme/grapheme_string.c 		pos = ubrk_next(bi);
pos               683 ext/intl/grapheme/grapheme_string.c 		if ( UBRK_DONE == pos ) {
pos               688 ext/intl/grapheme/grapheme_string.c 		if ( pos > csize ) {
pos               696 ext/intl/grapheme/grapheme_string.c 		U8_FWD_N(pstr, ret_pos, str_len, pos - prev_pos);
pos               703 ext/intl/grapheme/grapheme_string.c 		prev_pos = pos;
pos               714 ext/intl/grapheme/grapheme_string.c 	int pos = 0, prev_pos = 0;
pos               718 ext/intl/grapheme/grapheme_string.c 		pos = ubrk_next(bi);
pos               720 ext/intl/grapheme/grapheme_string.c 		if ( UBRK_DONE == pos ) {
pos               725 ext/intl/grapheme/grapheme_string.c 		U8_FWD_N(pstr, ret_pos, str_len, pos - prev_pos);
pos               737 ext/intl/grapheme/grapheme_string.c 		prev_pos = pos;
pos               748 ext/intl/grapheme/grapheme_string.c 	int pos = 0, next_pos = 0;
pos               757 ext/intl/grapheme/grapheme_string.c 		pos = next_pos;
pos               765 ext/intl/grapheme/grapheme_string.c 	U8_FWD_N(pstr, ret_pos, str_len, pos);
pos               240 ext/intl/grapheme/grapheme_util.c 	int ret_len, pos;
pos               251 ext/intl/grapheme/grapheme_util.c 	pos = 0;
pos               253 ext/intl/grapheme/grapheme_util.c 	for ( ret_len = 0; pos != UBRK_DONE; ) {
pos               255 ext/intl/grapheme/grapheme_util.c 		pos = ubrk_next(bi);
pos               257 ext/intl/grapheme/grapheme_util.c 		if ( pos != UBRK_DONE ) {
pos               260 ext/intl/grapheme/grapheme_util.c 				boundary_array[ret_len] = pos;
pos               277 ext/intl/grapheme/grapheme_util.c 	int pos = 0;
pos               284 ext/intl/grapheme/grapheme_util.c 		pos = ubrk_next(bi);
pos               286 ext/intl/grapheme/grapheme_util.c 		if ( UBRK_DONE != pos ) {
pos               290 ext/intl/grapheme/grapheme_util.c 	} while ( UBRK_DONE != pos );
pos               300 ext/intl/grapheme/grapheme_util.c 	int32_t pos;
pos               318 ext/intl/grapheme/grapheme_util.c 	pos = 0;
pos               320 ext/intl/grapheme/grapheme_util.c 	while ( pos != UBRK_DONE && offset != 0 ) {
pos               322 ext/intl/grapheme/grapheme_util.c 		pos = iter_op(bi);
pos               324 ext/intl/grapheme/grapheme_util.c 		if ( UBRK_DONE != pos ) {
pos               333 ext/intl/grapheme/grapheme_util.c 	return pos;
pos               243 ext/json/json_encoder.c 	size_t pos = 0, us;
pos               248 ext/json/json_encoder.c 		for (j=0 ; pos < len ; j++) {
pos               249 ext/json/json_encoder.c 			us = php_next_utf8_char((const unsigned char *)utf8, len, &pos, &status);
pos               264 ext/json/json_encoder.c 		for (j=0 ; pos < len ; j++) {
pos               265 ext/json/json_encoder.c 			us = php_next_utf8_char((const unsigned char *)utf8, len, &pos, &status);
pos               282 ext/json/json_encoder.c 	size_t pos, checkpoint;
pos               315 ext/json/json_encoder.c 	pos = 0;
pos               323 ext/json/json_encoder.c 		us = (unsigned char)s[pos];
pos               326 ext/json/json_encoder.c 			us = php_next_utf8_char((const unsigned char *)s, len, &pos, &status);
pos               354 ext/json/json_encoder.c 			pos++;
pos               440 ext/json/json_encoder.c 	} while (pos < len);
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              1109 ext/mbstring/mbstring.c 	char *pos = *line, quote;
pos              1112 ext/mbstring/mbstring.c 	while (*pos && *pos != stop) {
pos              1113 ext/mbstring/mbstring.c 		if ((quote = *pos) == '"' || quote == '\'') {
pos              1114 ext/mbstring/mbstring.c 			++pos;
pos              1115 ext/mbstring/mbstring.c 			while (*pos && *pos != quote) {
pos              1116 ext/mbstring/mbstring.c 				if (*pos == '\\' && pos[1] && pos[1] == quote) {
pos              1117 ext/mbstring/mbstring.c 					pos += 2;
pos              1119 ext/mbstring/mbstring.c 					++pos;
pos              1122 ext/mbstring/mbstring.c 			if (*pos) {
pos              1123 ext/mbstring/mbstring.c 				++pos;
pos              1126 ext/mbstring/mbstring.c 			pos += php_mb_mbchar_bytes_ex(pos, (const mbfl_encoding *)encoding);
pos              1130 ext/mbstring/mbstring.c 	if (*pos == '\0') {
pos              1136 ext/mbstring/mbstring.c 	res = estrndup(*line, pos - *line);
pos              1138 ext/mbstring/mbstring.c 	while (*pos == stop) {
pos              1139 ext/mbstring/mbstring.c 		pos += php_mb_mbchar_bytes_ex(pos, (const mbfl_encoding *)encoding);
pos              1142 ext/mbstring/mbstring.c 	*line = pos;
pos              4001 ext/mbstring/mbstring.c #define SKIP_LONG_HEADER_SEP_MBSTRING(str, pos)										\
pos              4002 ext/mbstring/mbstring.c 	if (str[pos] == '\r' && str[pos + 1] == '\n' && (str[pos + 2] == ' ' || str[pos + 2] == '\t')) {	\
pos              4003 ext/mbstring/mbstring.c 		pos += 2;											\
pos              4004 ext/mbstring/mbstring.c 		while (str[pos + 1] == ' ' || str[pos + 1] == '\t') {							\
pos              4005 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               338 ext/mbstring/oniguruma/regint.h #define BS_ROOM(bs,pos)            (bs)[pos / BITS_IN_ROOM]
pos               339 ext/mbstring/oniguruma/regint.h #define BS_BIT(pos)                (1 << (pos % BITS_IN_ROOM))
pos               341 ext/mbstring/oniguruma/regint.h #define BITSET_AT(bs, pos)         (BS_ROOM(bs,pos) & BS_BIT(pos))
pos               342 ext/mbstring/oniguruma/regint.h #define BITSET_SET_BIT(bs, pos)     BS_ROOM(bs,pos) |= BS_BIT(pos)
pos               343 ext/mbstring/oniguruma/regint.h #define BITSET_CLEAR_BIT(bs, pos)   BS_ROOM(bs,pos) &= ~(BS_BIT(pos))
pos               344 ext/mbstring/oniguruma/regint.h #define BITSET_INVERT_BIT(bs, pos)  BS_ROOM(bs,pos) ^= BS_BIT(pos)
pos               377 ext/mbstring/oniguruma/regint.h #define BBUF_WRITE(buf,pos,bytes,n) do{\
pos               378 ext/mbstring/oniguruma/regint.h   int used = (pos) + (n);\
pos               380 ext/mbstring/oniguruma/regint.h   xmemcpy((buf)->p + (pos), (bytes), (n));\
pos               384 ext/mbstring/oniguruma/regint.h #define BBUF_WRITE1(buf,pos,byte) do{\
pos               385 ext/mbstring/oniguruma/regint.h   int used = (pos) + 1;\
pos               387 ext/mbstring/oniguruma/regint.h   (buf)->p[(pos)] = (byte);\
pos               414 ext/mbstring/oniguruma/regint.h #define BBUF_INSERT(buf,pos,bytes,n) do {\
pos               415 ext/mbstring/oniguruma/regint.h   if (pos >= (buf)->used) {\
pos               416 ext/mbstring/oniguruma/regint.h     BBUF_WRITE(buf,pos,bytes,n);\
pos               419 ext/mbstring/oniguruma/regint.h     BBUF_MOVE_RIGHT((buf),(pos),(pos) + (n),((buf)->used - (pos)));\
pos               420 ext/mbstring/oniguruma/regint.h     xmemcpy((buf)->p + (pos), (bytes), (n));\
pos               424 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               807 ext/mbstring/php_mbregex.c 	OnigUChar *pos;
pos               890 ext/mbstring/php_mbregex.c 	pos = (OnigUChar *)string;
pos               894 ext/mbstring/php_mbregex.c 		err = onig_search(re, (OnigUChar *)string, (OnigUChar *)string_lim, pos, (OnigUChar *)string_lim, regs, 0);
pos               909 ext/mbstring/php_mbregex.c 			smart_str_appendl(&out_buf, (char *)pos, (size_t)((OnigUChar *)(string + regs->beg[0]) - pos));
pos               988 ext/mbstring/php_mbregex.c 			if ((pos - (OnigUChar *)string) < n) {
pos               989 ext/mbstring/php_mbregex.c 				pos = (OnigUChar *)string + n;
pos               991 ext/mbstring/php_mbregex.c 				if (pos < string_lim) {
pos               992 ext/mbstring/php_mbregex.c 					smart_str_appendl(&out_buf, (char *)pos, 1);
pos               994 ext/mbstring/php_mbregex.c 				pos++;
pos               998 ext/mbstring/php_mbregex.c 			if (string_lim - pos > 0) {
pos               999 ext/mbstring/php_mbregex.c 				smart_str_appendl(&out_buf, (char *)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) < (ptrdiff_t)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              1182 ext/mbstring/php_mbregex.c 	int n, i, err, pos, len, beg, end;
pos              1205 ext/mbstring/php_mbregex.c 	pos = MBREX(search_pos);
pos              1228 ext/mbstring/php_mbregex.c 	err = onig_search(MBREX(search_re), str, str + len, str + pos, str  + len, MBREX(search_regs), 0);
pos              1267 ext/mbstring/php_mbregex.c 		if (pos < end) {
pos              1270 ext/mbstring/php_mbregex.c 			MBREX(search_pos) = pos + 1;
pos                42 ext/mysqli/mysqli_embedded.c 	HashPosition pos;
pos                58 ext/mysqli/mysqli_embedded.c 		zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(args), &pos);
pos                60 ext/mysqli/mysqli_embedded.c 		for (index = 0;; zend_hash_move_forward_ex(Z_ARRVAL_P(args), &pos))	{
pos                63 ext/mysqli/mysqli_embedded.c 			if (zend_hash_get_current_data_ex(Z_ARRVAL_P(args), (void **) &item, &pos) == FAILURE) {
pos                79 ext/mysqli/mysqli_embedded.c 		zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(grps), &pos);
pos                81 ext/mysqli/mysqli_embedded.c 		for (index = 0;; zend_hash_move_forward_ex(Z_ARRVAL_P(grps), &pos))	{
pos                84 ext/mysqli/mysqli_embedded.c 			if (zend_hash_get_current_data_ex(Z_ARRVAL_P(grps), (void **) &item, &pos) == FAILURE) {
pos               426 ext/mysqli/mysqli_nonapi.c 		zend_llist_position pos;
pos               427 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               429 ext/mysqli/mysqli_nonapi.c 			 message = (MYSQLND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(mysql->mysql->data->error_info->error_list, &pos))
pos               467 ext/mysqli/mysqli_nonapi.c 		zend_llist_position pos;
pos               468 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               470 ext/mysqli/mysqli_nonapi.c 			 message = (MYSQLND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(stmt->stmt->data->error_info->error_list, &pos))
pos               194 ext/mysqli/mysqli_prop.c 			zend_llist_position pos;
pos               195 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               197 ext/mysqli/mysqli_prop.c 				 message = (MYSQLND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(mysql->mysql->data->error_info->error_list, &pos))
pos               380 ext/mysqli/mysqli_prop.c 			zend_llist_position pos;
pos               381 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               383 ext/mysqli/mysqli_prop.c 				 message = (MYSQLND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(stmt->stmt->data->error_info->error_list, &pos))
pos               121 ext/opcache/Optimizer/compact_literals.c 	zval zv, *pos;
pos               394 ext/opcache/Optimizer/compact_literals.c 					if ((pos = zend_hash_index_find(&hash, Z_LVAL(op_array->literals[i]))) != NULL) {
pos               395 ext/opcache/Optimizer/compact_literals.c 						map[i] = Z_LVAL_P(pos);
pos               408 ext/opcache/Optimizer/compact_literals.c 					if ((pos = zend_hash_str_find(&hash, (char*)&Z_DVAL(op_array->literals[i]), sizeof(double))) != NULL) {
pos               409 ext/opcache/Optimizer/compact_literals.c 						map[i] = Z_LVAL_P(pos);
pos               445 ext/opcache/Optimizer/compact_literals.c 						(pos = zend_hash_find(&hash, key)) != NULL &&
pos               446 ext/opcache/Optimizer/compact_literals.c 					   	Z_TYPE(op_array->literals[i]) == Z_TYPE(op_array->literals[Z_LVAL_P(pos)]) &&
pos               447 ext/opcache/Optimizer/compact_literals.c 						info[i].flags == info[Z_LVAL_P(pos)].flags) {
pos               450 ext/opcache/Optimizer/compact_literals.c 						map[i] = Z_LVAL_P(pos);
pos                58 ext/opcache/shared_alloc_mmap.c 		shared_segment->pos = 0;
pos                71 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               321 ext/opcache/shared_alloc_win32.c 	shared_segment->pos = 0;
pos                54 ext/opcache/zend_accelerator_blacklist.c 	blacklist->pos = 0;
pos                81 ext/opcache/zend_accelerator_blacklist.c 	if (blacklist->pos == 0) {
pos                93 ext/opcache/zend_accelerator_blacklist.c 	for (i = 0; i < blacklist->pos; ) {
pos               161 ext/opcache/zend_accelerator_blacklist.c 		if (*c || i == blacklist->pos - 1) {
pos               197 ext/opcache/zend_accelerator_blacklist.c 	zend_blacklist_entry *p = blacklist->entries, *end = blacklist->entries + blacklist->pos;
pos               218 ext/opcache/zend_accelerator_blacklist.c 	if (blacklist->pos == blacklist->size) {
pos               292 ext/opcache/zend_accelerator_blacklist.c 		blacklist->entries[blacklist->pos].path_length = path_length;
pos               293 ext/opcache/zend_accelerator_blacklist.c 		blacklist->entries[blacklist->pos].path = (char *)malloc(path_length + 1);
pos               294 ext/opcache/zend_accelerator_blacklist.c 		if (!blacklist->entries[blacklist->pos].path) {
pos               299 ext/opcache/zend_accelerator_blacklist.c 		blacklist->entries[blacklist->pos].id = blacklist->pos;
pos               300 ext/opcache/zend_accelerator_blacklist.c 		memcpy(blacklist->entries[blacklist->pos].path, real_path, path_length + 1);
pos               301 ext/opcache/zend_accelerator_blacklist.c 		blacklist->pos++;
pos               357 ext/opcache/zend_accelerator_blacklist.c 	for (i = 0; i < blacklist->pos; i++) {
pos                36 ext/opcache/zend_accelerator_blacklist.h 	int                   pos;
pos               287 ext/opcache/zend_shared_alloc.c 		size_t block_size = ZSMMG(shared_segments)[i]->size - ZSMMG(shared_segments)[i]->pos;
pos               320 ext/opcache/zend_shared_alloc.c 		if (ZSMMG(shared_segments)[i]->size - ZSMMG(shared_segments)[i]->pos >= block_size) { /* found a valid block */
pos               321 ext/opcache/zend_shared_alloc.c 			void *retval = (void *) (((char *) ZSMMG(shared_segments)[i]->p) + ZSMMG(shared_segments)[i]->pos);
pos               323 ext/opcache/zend_shared_alloc.c 			ZSMMG(shared_segments)[i]->pos += block_size;
pos               472 ext/opcache/zend_shared_alloc.c 		ZSMMG(shared_memory_state).positions[i] = ZSMMG(shared_segments)[i]->pos;
pos               482 ext/opcache/zend_shared_alloc.c 		ZSMMG(shared_segments)[i]->pos = ZSMMG(shared_memory_state).positions[i];
pos                75 ext/opcache/zend_shared_alloc.h     size_t  pos;  /* position for simple stack allocator */
pos               408 ext/pdo/pdo_sql_parser.c 	char *pos;
pos               455 ext/pdo/pdo_sql_parser.c 			plc->pos = s.tok;
pos               510 ext/pdo/pdo_sql_parser.c 				if ((param = zend_hash_str_find_ptr(params, plc->pos, plc->len)) == NULL) {
pos               535 ext/pdo/pdo_sql_parser.c 				param = zend_hash_str_find_ptr(params, plc->pos, plc->len);
pos               639 ext/pdo/pdo_sql_parser.c 			t = plc->pos - ptr;
pos               646 ext/pdo/pdo_sql_parser.c 			ptr = plc->pos + plc->len;
pos               678 ext/pdo/pdo_sql_parser.c 			name = estrndup(plc->pos, plc->len);
pos               718 ext/pdo/pdo_sql_parser.c 			name = estrndup(plc->pos, plc->len);
pos               171 ext/pdo_pgsql/pgsql_driver.c 	zend_off_t pos = lo_lseek64(self->conn, self->lfd, offset, whence);
pos               173 ext/pdo_pgsql/pgsql_driver.c 	zend_off_t pos = lo_lseek(self->conn, self->lfd, offset, whence);
pos               175 ext/pdo_pgsql/pgsql_driver.c 	*newoffset = pos;
pos               176 ext/pdo_pgsql/pgsql_driver.c 	return pos >= 0 ? 0 : -1;
pos              1571 ext/phar/phar.c 	char *pos, test = '\0';
pos              1601 ext/phar/phar.c 			pos = buffer+tokenlen;
pos              1602 ext/phar/phar.c 			if (!memcmp(pos, gz_magic, 3)) {
pos              1662 ext/phar/phar.c 			} else if (!memcmp(pos, bz_magic, 3)) {
pos              1702 ext/phar/phar.c 			if (!memcmp(pos, zip_magic, 4)) {
pos              1708 ext/phar/phar.c 				if (phar_is_tar(pos, fname)) {
pos              1715 ext/phar/phar.c 		if (got > 0 && (pos = phar_strnstr(buffer, got + sizeof(token), token, sizeof(token)-1)) != NULL) {
pos              1716 ext/phar/phar.c 			halt_offset += (pos - buffer); /* no -tokenlen+tokenlen here */
pos              1845 ext/phar/phar.c 	const char *pos;
pos              1857 ext/phar/phar.c 		pos = strstr(test, ".phar");
pos              1859 ext/phar/phar.c 		if (pos && (*(pos - 1) != '/')
pos              1860 ext/phar/phar.c 				&& (pos += 5) && (*pos == '\0' || *pos == '/' || *pos == '.')) {
pos              1869 ext/phar/phar.c 		pos = strstr(ext_str, ".phar");
pos              1870 ext/phar/phar.c 		if (!(pos && (*(pos - 1) != '/')
pos              1871 ext/phar/phar.c 					&& (pos += 5) && (*pos == '\0' || *pos == '/' || *pos == '.')) && *(ext_str + 1) != '.' && *(ext_str + 1) != '/' && *(ext_str + 1) != '\0') {
pos              1899 ext/phar/phar.c 	const char *pos, *slash;
pos              1910 ext/phar/phar.c 	pos = memchr(filename, '/', filename_len);
pos              1912 ext/phar/phar.c 	if (pos && pos != filename) {
pos              1914 ext/phar/phar.c 		if (*(pos - 1) == ':' && (pos - filename) < filename_len - 1 && *(pos + 1) == '/') {
pos              1919 ext/phar/phar.c 		if (zend_hash_str_exists(&(PHAR_G(phar_alias_map)), (char *) filename, pos - filename)) {
pos              1920 ext/phar/phar.c 			*ext_str = pos;
pos              1925 ext/phar/phar.c 		if (PHAR_G(manifest_cached) && zend_hash_str_exists(&cached_alias, (char *) filename, pos - filename)) {
pos              1926 ext/phar/phar.c 			*ext_str = pos;
pos              2004 ext/phar/phar.c 	pos = memchr(filename + 1, '.', filename_len);
pos              2006 ext/phar/phar.c 	if (!pos) {
pos              2010 ext/phar/phar.c 	while (pos != filename && (*(pos - 1) == '/' || *(pos - 1) == '\0')) {
pos              2011 ext/phar/phar.c 		pos = memchr(pos + 1, '.', filename_len - (pos - filename) + 1);
pos              2012 ext/phar/phar.c 		if (!pos) {
pos              2017 ext/phar/phar.c 	slash = memchr(pos, '/', filename_len - (pos - filename));
pos              2021 ext/phar/phar.c 		*ext_str = pos;
pos              2022 ext/phar/phar.c 		*ext_len = strlen(pos);
pos              2035 ext/phar/phar.c 	*ext_str = pos;
pos              2036 ext/phar/phar.c 	*ext_len = slash - pos;
pos              2043 ext/phar/phar.c 			pos = strchr(pos + 1, '.');
pos              2044 ext/phar/phar.c 			if (pos) {
pos              2502 ext/phar/phar.c 	char *pos, has_dirs = 0;
pos              2602 ext/phar/phar.c 		if ((pos = php_stristr(tmp, halt_stub, len, sizeof(halt_stub) - 1)) == NULL) {
pos              2616 ext/phar/phar.c 		pos = user_stub + (pos - tmp);
pos              2618 ext/phar/phar.c 		len = pos - user_stub + 18;
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               555 ext/phar/tar.c 				php_stream_seek(fp, pos, SEEK_SET);
pos               701 ext/phar/tar.c 	size_t pos;
pos               790 ext/phar/tar.c 	pos = php_stream_tell(fp->new); /* save start of file within tar */
pos               841 ext/phar/tar.c 	entry->offset = entry->offset_abs = pos;
pos              1004 ext/phar/tar.c 		char *pos;
pos              1046 ext/phar/tar.c 		if ((pos = php_stristr(tmp, halt_stub, len, sizeof(halt_stub) - 1)) == NULL) {
pos              1056 ext/phar/tar.c 		pos = user_stub + (pos - tmp);
pos              1059 ext/phar/tar.c 		len = pos - user_stub + 18;
pos              1380 ext/phar/util.c 	int pos = -1;
pos              1386 ext/phar/util.c 		(*signature)[++pos] = hexChars[((const unsigned char *)digest)[len] >> 4];
pos              1387 ext/phar/util.c 		(*signature)[++pos] = hexChars[((const unsigned char *)digest)[len] & 0x0F];
pos              1389 ext/phar/util.c 	(*signature)[++pos] = '\0';
pos              1390 ext/phar/util.c 	return pos;
pos              1184 ext/phar/zip.c 	char *pos;
pos              1298 ext/phar/zip.c 		if ((pos = php_stristr(tmp, halt_stub, len, sizeof(halt_stub) - 1)) == NULL) {
pos              1308 ext/phar/zip.c 		pos = user_stub + (pos - tmp);
pos              1311 ext/phar/zip.c 		len = pos - user_stub + 18;
pos               586 ext/readline/readline_cli.c 	size_t size = 4096, pos = 0, len;
pos               617 ext/readline/readline_cli.c 		if (!pos && !*line) {
pos               642 ext/readline/readline_cli.c 		if (pos + len + 2 > size) {
pos               643 ext/readline/readline_cli.c 			size = pos + len + 2;
pos               646 ext/readline/readline_cli.c 		memcpy(&code[pos], line, len);
pos               647 ext/readline/readline_cli.c 		pos += len;
pos               648 ext/readline/readline_cli.c 		code[pos] = '\n';
pos               649 ext/readline/readline_cli.c 		code[++pos] = '\0';
pos               659 ext/readline/readline_cli.c 		if (!cli_is_valid_code(code, pos, &prompt)) {
pos               673 ext/readline/readline_cli.c 			zend_eval_stringl(code, pos, NULL, "php shell code");
pos               676 ext/readline/readline_cli.c 		pos = 0;
pos               249 ext/soap/php_encoding.c 	xmlChar *pos;
pos               252 ext/soap/php_encoding.c 	pos = str;
pos               260 ext/soap/php_encoding.c 			*pos = *str;
pos               261 ext/soap/php_encoding.c 			pos++;
pos               267 ext/soap/php_encoding.c 	 	--pos;
pos               269 ext/soap/php_encoding.c 	*pos = '\0';
pos              2039 ext/soap/php_encoding.c 	int *pos;
pos              2042 ext/soap/php_encoding.c 	pos = safe_emalloc(sizeof(int), dimension, 0);
pos              2043 ext/soap/php_encoding.c 	memset(pos,0,sizeof(int)*dimension);
pos              2057 ext/soap/php_encoding.c 			pos[i] = (pos[i]*10)+(*str-'0');
pos              2065 ext/soap/php_encoding.c 	return pos;
pos              2080 ext/soap/php_encoding.c static void get_position_ex(int dimension, const char* str, int** pos)
pos              2084 ext/soap/php_encoding.c 	memset(*pos,0,sizeof(int)*dimension);
pos              2087 ext/soap/php_encoding.c 			(*pos)[i] = ((*pos)[i]*10)+(*str-'0');
pos              2097 ext/soap/php_encoding.c 	int *pos;
pos              2099 ext/soap/php_encoding.c 	pos = safe_emalloc(sizeof(int), dimension, 0);
pos              2100 ext/soap/php_encoding.c 	get_position_ex(dimension, str, &pos);
pos              2101 ext/soap/php_encoding.c 	return pos;
pos              2471 ext/soap/php_encoding.c 	int* pos = NULL;
pos              2600 ext/soap/php_encoding.c 	pos = safe_emalloc(sizeof(int), dimension, 0);
pos              2601 ext/soap/php_encoding.c 	memset(pos,0,sizeof(int)*dimension);
pos              2610 ext/soap/php_encoding.c 		get_position_ex(dimension, tmp, &pos);
pos              2628 ext/soap/php_encoding.c 				get_position_ex(dimension, tmp, &pos);
pos              2636 ext/soap/php_encoding.c 				if ((ar2 = zend_hash_index_find(Z_ARRVAL_P(ar), pos[i])) != NULL) {
pos              2641 ext/soap/php_encoding.c 					ar = zend_hash_index_update(Z_ARRVAL_P(ar), pos[i], &tmpAr);
pos              2645 ext/soap/php_encoding.c 			zend_hash_index_update(Z_ARRVAL_P(ar), pos[i], &tmpVal);
pos              2651 ext/soap/php_encoding.c 			  pos[i]++;
pos              2652 ext/soap/php_encoding.c 				if (pos[i] >= dims[i]) {
pos              2654 ext/soap/php_encoding.c 						pos[i] = 0;
pos              2666 ext/soap/php_encoding.c 	efree(pos);
pos              1217 ext/soap/php_http.c 		char *pos = NULL;
pos              1219 ext/soap/php_http.c 		pos = strstr(content_type,";");
pos              1220 ext/soap/php_http.c 		if (pos != NULL) {
pos              1221 ext/soap/php_http.c 			cmplen = pos - content_type;
pos              1331 ext/soap/php_http.c 	char *pos, *tmp = NULL;
pos              1339 ext/soap/php_http.c 	pos = headers;
pos              1342 ext/soap/php_http.c 		if (strncasecmp(pos, type, typelen) == 0) {
pos              1346 ext/soap/php_http.c 			tmp = pos + typelen;
pos              1357 ext/soap/php_http.c 		pos = strchr(pos, '\n');
pos              1358 ext/soap/php_http.c 		if (pos) {
pos              1359 ext/soap/php_http.c 			pos++;
pos              1362 ext/soap/php_http.c 	} while (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               311 ext/spl/php_spl.c 	char *pos, *pos1;
pos               319 ext/spl/php_spl.c 		pos = SPL_DEFAULT_FILE_EXTENSIONS;
pos               322 ext/spl/php_spl.c 		pos = ZSTR_VAL(file_exts);
pos               328 ext/spl/php_spl.c 	while (pos && *pos && !EG(exception)) {
pos               329 ext/spl/php_spl.c 		pos1 = strchr(pos, ',');
pos               331 ext/spl/php_spl.c 			pos1_len = (int)(pos1 - pos);
pos               335 ext/spl/php_spl.c 		if (spl_autoload(class_name, lc_name, pos, pos1_len)) {
pos               339 ext/spl/php_spl.c 		pos = pos1 ? pos1 + 1 : NULL;
pos               420 ext/spl/php_spl.c 		HashPosition pos;
pos               426 ext/spl/php_spl.c 		zend_hash_internal_pointer_reset_ex(SPL_G(autoload_functions), &pos);
pos               427 ext/spl/php_spl.c 		while (zend_hash_get_current_key_ex(SPL_G(autoload_functions), &func_name, &num_idx, &pos) == HASH_KEY_IS_STRING) {
pos               428 ext/spl/php_spl.c 			alfi = zend_hash_get_current_data_ptr_ex(SPL_G(autoload_functions), &pos);
pos               438 ext/spl/php_spl.c 			zend_hash_move_forward_ex(SPL_G(autoload_functions), &pos);
pos               125 ext/spl/spl_array.c 	zend_hash_internal_pointer_reset_ex(ht, &EG(ht_iterators)[intern->ht_iter].pos);
pos               135 ext/spl/spl_array.c 	return &EG(ht_iterators)[intern->ht_iter].pos;
pos              1360 ext/spl/spl_array.c 	HashPosition pos, *pos_ptr;
pos              1372 ext/spl/spl_array.c 		pos = *pos_ptr;
pos              1378 ext/spl/spl_array.c 		*pos_ptr = pos;
pos               220 ext/spl/spl_directory.c #define IS_SLASH_AT(zs, pos) (IS_SLASH(zs[pos]))
pos               818 ext/spl/spl_directory.c 	zend_long pos;
pos               820 ext/spl/spl_directory.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &pos) == FAILURE) {
pos               824 ext/spl/spl_directory.c 	if (intern->u.dir.index > pos) {
pos               829 ext/spl/spl_directory.c 	while (intern->u.dir.index < pos) {
pos               837 ext/spl/spl_directory.c 			zend_throw_exception_ex(spl_ce_OutOfBoundsException, 0, "Seek position %ld is out of range", pos);
pos              2766 ext/spl/spl_directory.c 	zend_long pos, whence = SEEK_SET;
pos              2768 ext/spl/spl_directory.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|l", &pos, &whence) == FAILURE) {
pos              2778 ext/spl/spl_directory.c 	RETURN_LONG(php_stream_seek(intern->u.file.stream, pos, (int)whence));
pos              3019 ext/spl/spl_directory.c 	ZEND_ARG_INFO(0, pos)
pos               174 ext/spl/spl_dllist.c 	int pos = 0;
pos               182 ext/spl/spl_dllist.c 	while (current && pos < offset) {
pos               183 ext/spl/spl_dllist.c 		pos++;
pos              1681 ext/spl/spl_iterators.c 	intern->current.pos = 0;
pos              1714 ext/spl/spl_iterators.c 			ZVAL_LONG(&intern->current.key, intern->current.pos);
pos              1729 ext/spl/spl_iterators.c 	intern->current.pos++;
pos              2482 ext/spl/spl_iterators.c 	if (intern->u.limit.count != -1 && intern->current.pos >= intern->u.limit.offset + intern->u.limit.count) {
pos              2489 ext/spl/spl_iterators.c static inline void spl_limit_it_seek(spl_dual_it_object *intern, zend_long pos)
pos              2494 ext/spl/spl_iterators.c 	if (pos < intern->u.limit.offset) {
pos              2495 ext/spl/spl_iterators.c 		zend_throw_exception_ex(spl_ce_OutOfBoundsException, 0, "Cannot seek to %pd which is below the offset %pd", pos, intern->u.limit.offset);
pos              2498 ext/spl/spl_iterators.c 	if (pos >= intern->u.limit.offset + intern->u.limit.count && intern->u.limit.count != -1) {
pos              2499 ext/spl/spl_iterators.c 		zend_throw_exception_ex(spl_ce_OutOfBoundsException, 0, "Cannot seek to %pd which is behind offset %pd plus count %pd", pos, intern->u.limit.offset, intern->u.limit.count);
pos              2502 ext/spl/spl_iterators.c 	if (pos != intern->current.pos && instanceof_function(intern->inner.ce, spl_ce_SeekableIterator)) {
pos              2503 ext/spl/spl_iterators.c 		ZVAL_LONG(&zpos, pos);
pos              2508 ext/spl/spl_iterators.c 			intern->current.pos = pos;
pos              2516 ext/spl/spl_iterators.c 		if (pos < intern->current.pos) {
pos              2519 ext/spl/spl_iterators.c 		while (pos > intern->current.pos && spl_dual_it_valid(intern) == SUCCESS) {
pos              2555 ext/spl/spl_iterators.c 	RETURN_BOOL((intern->u.limit.count == -1 || intern->current.pos < intern->u.limit.offset + intern->u.limit.count) && Z_TYPE(intern->current.data) != IS_UNDEF);
pos              2567 ext/spl/spl_iterators.c 	if (intern->u.limit.count == -1 || intern->current.pos < intern->u.limit.offset + intern->u.limit.count) {
pos              2577 ext/spl/spl_iterators.c 	zend_long                 pos;
pos              2579 ext/spl/spl_iterators.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "l", &pos) == FAILURE) {
pos              2584 ext/spl/spl_iterators.c 	spl_limit_it_seek(intern, pos);
pos              2585 ext/spl/spl_iterators.c 	RETURN_LONG(intern->current.pos);
pos              2594 ext/spl/spl_iterators.c 	RETURN_LONG(intern->current.pos);
pos               137 ext/spl/spl_iterators.h 		zend_long            pos;
pos                85 ext/spl/spl_observer.c 	HashPosition      pos;
pos               224 ext/spl/spl_observer.c 	intern->pos = HT_INVALID_IDX;
pos               408 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos               498 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos               525 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos               581 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos               595 ext/spl/spl_observer.c 	RETURN_BOOL(zend_hash_has_more_elements_ex(&intern->storage, &intern->pos) == SUCCESS);
pos               622 ext/spl/spl_observer.c 	if ((element = zend_hash_get_current_data_ptr_ex(&intern->storage, &intern->pos)) == NULL) {
pos               639 ext/spl/spl_observer.c 	if ((element = zend_hash_get_current_data_ptr_ex(&intern->storage, &intern->pos)) == NULL) {
pos               657 ext/spl/spl_observer.c 	if ((element = zend_hash_get_current_data_ptr_ex(&intern->storage, &intern->pos)) == NULL) {
pos               674 ext/spl/spl_observer.c 	zend_hash_move_forward_ex(&intern->storage, &intern->pos);
pos               686 ext/spl/spl_observer.c 	HashPosition      pos;
pos               702 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &pos);
pos               704 ext/spl/spl_observer.c 	while (zend_hash_has_more_elements_ex(&intern->storage, &pos) == SUCCESS) {
pos               705 ext/spl/spl_observer.c 		if ((element = zend_hash_get_current_data_ptr_ex(&intern->storage, &pos)) == NULL) {
pos               714 ext/spl/spl_observer.c 		zend_hash_move_forward_ex(&intern->storage, &pos);
pos               991 ext/spl/spl_observer.c 		zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos               992 ext/spl/spl_observer.c 		while ((element = zend_hash_get_current_data_ptr_ex(&intern->storage, &intern->pos)) != NULL) {
pos               997 ext/spl/spl_observer.c 			zend_hash_move_forward_ex(&intern->storage, &intern->pos);
pos              1019 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos              1020 ext/spl/spl_observer.c 	while ((element = zend_hash_get_current_data_ptr_ex(&intern->storage, &intern->pos)) != NULL && !EG(exception)) {
pos              1023 ext/spl/spl_observer.c 		zend_hash_move_forward_ex(&intern->storage, &intern->pos);
pos              1042 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos              1043 ext/spl/spl_observer.c 	while ((element = zend_hash_get_current_data_ptr_ex(&intern->storage, &intern->pos)) != NULL && !EG(exception)) {
pos              1046 ext/spl/spl_observer.c 		zend_hash_move_forward_ex(&intern->storage, &intern->pos);
pos              1072 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos              1073 ext/spl/spl_observer.c 	while ((element = zend_hash_get_current_data_ptr_ex(&intern->storage, &intern->pos)) != NULL && !EG(exception)) {
pos              1088 ext/spl/spl_observer.c 		zend_hash_move_forward_ex(&intern->storage, &intern->pos);
pos              1108 ext/spl/spl_observer.c 	zend_hash_internal_pointer_reset_ex(&intern->storage, &intern->pos);
pos              1109 ext/spl/spl_observer.c 	while ((element = zend_hash_get_current_data_ptr_ex(&intern->storage, &intern->pos)) != NULL && !EG(exception)) {
pos              1158 ext/spl/spl_observer.c 		zend_hash_move_forward_ex(&intern->storage, &intern->pos);
pos              2399 ext/standard/array.c 				 pos;				/* Current position in the hashtable */
pos              2426 ext/standard/array.c 	for (pos = 0, idx = 0; pos < offset && idx < in_hash->nNumUsed; idx++) {
pos              2439 ext/standard/array.c 			if (idx != pos) {
pos              2440 ext/standard/array.c 				zend_hash_iterators_update(in_hash, idx, pos);
pos              2444 ext/standard/array.c 		pos++;
pos              2449 ext/standard/array.c 		for ( ; pos < offset + length && idx < in_hash->nNumUsed; idx++) {
pos              2452 ext/standard/array.c 			pos++;
pos              2470 ext/standard/array.c 		int pos2 = pos;
pos              2494 ext/standard/array.c 			pos++;
pos              2509 ext/standard/array.c 			if (idx != pos) {
pos              2510 ext/standard/array.c 				zend_hash_iterators_update(in_hash, idx, pos);
pos              2514 ext/standard/array.c 		pos++;
pos              2883 ext/standard/array.c 			 pos;			/* Current position in the array */
pos              2935 ext/standard/array.c 	pos = 0;
pos              2940 ext/standard/array.c 				pos++;
pos              2941 ext/standard/array.c 				if (pos <= offset) {
pos              2944 ext/standard/array.c 				if (pos > offset + length) {
pos              2953 ext/standard/array.c 			pos++;
pos              2954 ext/standard/array.c 			if (pos <= offset) {
pos              2957 ext/standard/array.c 			if (pos > offset + length) {
pos              5343 ext/standard/array.c 					uint32_t pos = array_pos[i];
pos              5345 ext/standard/array.c 						if (pos >= Z_ARRVAL(arrays[i])->nNumUsed) {
pos              5348 ext/standard/array.c 						} else if (Z_TYPE(Z_ARRVAL(arrays[i])->arData[pos].val) != IS_UNDEF) {
pos              5349 ext/standard/array.c 							ZVAL_COPY(&zv, &Z_ARRVAL(arrays[i])->arData[pos].val);
pos              5350 ext/standard/array.c 							array_pos[i] = pos + 1;
pos              5353 ext/standard/array.c 						pos++;
pos              5369 ext/standard/array.c 					uint32_t pos = array_pos[i];
pos              5371 ext/standard/array.c 						if (pos >= Z_ARRVAL(arrays[i])->nNumUsed) {
pos              5374 ext/standard/array.c 						} else if (Z_TYPE(Z_ARRVAL(arrays[i])->arData[pos].val) != IS_UNDEF) {
pos              5375 ext/standard/array.c 							ZVAL_COPY(&params[i], &Z_ARRVAL(arrays[i])->arData[pos].val);
pos              5376 ext/standard/array.c 							array_pos[i] = pos + 1;
pos              5379 ext/standard/array.c 						pos++;
pos              1998 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, pos)
pos              3344 ext/standard/basic_functions.c 	PHP_FALIAS(pos,					current,								arginfo_current)
pos              4273 ext/standard/basic_functions.c 		int pos = 0;
pos              4289 ext/standard/basic_functions.c 			argv[pos++] = estrdup(ZSTR_VAL(arg_str));
pos                60 ext/standard/formatted_print.c php_sprintf_appendchar(zend_string **buffer, size_t *pos, char add)
pos                62 ext/standard/formatted_print.c 	if (!*buffer || (*pos + 1) >= ZSTR_LEN(*buffer)) {
pos                66 ext/standard/formatted_print.c 	PRINTF_DEBUG(("sprintf: appending '%c', pos=\n", add, *pos));
pos                67 ext/standard/formatted_print.c 	ZSTR_VAL(*buffer)[(*pos)++] = add;
pos                73 ext/standard/formatted_print.c php_sprintf_appendstring(zend_string **buffer, size_t *pos, char *add,
pos                86 ext/standard/formatted_print.c 				  *buffer, *pos, ZSTR_LEN(*buffer), add, min_width, padding, alignment));
pos                89 ext/standard/formatted_print.c 	if(m_width > INT_MAX - *pos - 1) {
pos                93 ext/standard/formatted_print.c 	req_size = *pos + m_width + 1;
pos               108 ext/standard/formatted_print.c 			ZSTR_VAL(*buffer)[(*pos)++] = (neg) ? '-' : '+';
pos               114 ext/standard/formatted_print.c 			ZSTR_VAL(*buffer)[(*pos)++] = padding;
pos               118 ext/standard/formatted_print.c 	memcpy(&ZSTR_VAL(*buffer)[*pos], add, copy_len + 1);
pos               119 ext/standard/formatted_print.c 	*pos += copy_len;
pos               122 ext/standard/formatted_print.c 			ZSTR_VAL(*buffer)[(*pos)++] = padding;
pos               130 ext/standard/formatted_print.c php_sprintf_appendint(zend_string **buffer, size_t *pos, zend_long number,
pos               139 ext/standard/formatted_print.c 				  *buffer, pos, &ZSTR_LEN(*buffer), number, width, padding, alignment));
pos               166 ext/standard/formatted_print.c 	php_sprintf_appendstring(buffer, pos, &numbuf[i], width, 0,
pos               174 ext/standard/formatted_print.c php_sprintf_appenduint(zend_string **buffer, size_t *pos,
pos               183 ext/standard/formatted_print.c 				  *buffer, pos, &ZSTR_LEN(*buffer), number, width, padding, alignment));
pos               199 ext/standard/formatted_print.c 	php_sprintf_appendstring(buffer, pos, &numbuf[i], width, 0,
pos               206 ext/standard/formatted_print.c php_sprintf_appenddouble(zend_string **buffer, size_t *pos,
pos               227 ext/standard/formatted_print.c 				  *buffer, pos, &ZSTR_LEN(*buffer), number, width, padding, alignment, fmt));
pos               237 ext/standard/formatted_print.c 		php_sprintf_appendstring(buffer, pos, "NaN", 3, 0, padding,
pos               244 ext/standard/formatted_print.c 		php_sprintf_appendstring(buffer, pos, "INF", 3, 0, padding,
pos               303 ext/standard/formatted_print.c 	php_sprintf_appendstring(buffer, pos, s, width, 0, padding,
pos               310 ext/standard/formatted_print.c php_sprintf_append2n(zend_string **buffer, size_t *pos, zend_long number,
pos               320 ext/standard/formatted_print.c 				  *buffer, pos, &ZSTR_LEN(*buffer), number, width, padding, alignment, n,
pos               333 ext/standard/formatted_print.c 	php_sprintf_appendstring(buffer, pos, &numbuf[i], width, 0,
pos               341 ext/standard/formatted_print.c php_sprintf_getnumber(char *buffer, size_t *pos)
pos               344 ext/standard/formatted_print.c 	register zend_long num = ZEND_STRTOL(&buffer[*pos], &endptr, 10);
pos               348 ext/standard/formatted_print.c 		i = (endptr - &buffer[*pos]);
pos               351 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              1393 ext/standard/html.c 					char *pos = (char*)&old[cursor+1];
pos              1394 ext/standard/html.c 					valid = process_numeric_entity((const char **)&pos, &code_point);
pos              1401 ext/standard/html.c 					ent_len = pos - (char*)&old[cursor];
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                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                85 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 (ZSTR_VAL(buffer)[pos] == '+') {
pos                98 ext/standard/password.c 			ret[pos] = '.';
pos                99 ext/standard/password.c 		} else if (ZSTR_VAL(buffer)[pos] == '=') {
pos               103 ext/standard/password.c 			ret[pos] = ZSTR_VAL(buffer)[pos];
pos               464 ext/standard/streamsfuncs.c 	zend_long maxlen = PHP_STREAM_COPY_ALL, pos = 0;
pos               468 ext/standard/streamsfuncs.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "rr|ll", &zsrc, &zdest, &maxlen, &pos) == FAILURE) {
pos               475 ext/standard/streamsfuncs.c 	if (pos > 0 && php_stream_seek(src, pos, SEEK_SET) < 0) {
pos               476 ext/standard/streamsfuncs.c 		php_error_docref(NULL, E_WARNING, "Failed to seek to position " ZEND_LONG_FMT " in the stream", pos);
pos              3000 ext/standard/string.c 	size_t len, pos, old_pos;
pos              3085 ext/standard/string.c 	old_pos = pos = 0;
pos              3086 ext/standard/string.c 	while (pos <= slen - minlen) {
pos              3087 ext/standard/string.c 		key = str + pos;
pos              3090 ext/standard/string.c 			if (len > slen - pos) {
pos              3091 ext/standard/string.c 				len = slen - pos;
pos              3098 ext/standard/string.c 						smart_str_appendl(&result, str + old_pos, pos - old_pos);
pos              3100 ext/standard/string.c 						old_pos = pos + len;
pos              3101 ext/standard/string.c 						pos = old_pos - 1;
pos              3109 ext/standard/string.c 		pos++;
pos              4715 ext/standard/string.c 	size_t pos, i = 0;
pos              4754 ext/standard/string.c 							pos = tp - tbuf;
pos              4756 ext/standard/string.c 							tp = tbuf + pos;
pos              4773 ext/standard/string.c 						pos = tp - tbuf;
pos              4775 ext/standard/string.c 						tp = tbuf + pos;
pos              4791 ext/standard/string.c 						pos = tp - tbuf;
pos              4793 ext/standard/string.c 						tp = tbuf + pos;
pos              4820 ext/standard/string.c 								pos = tp - tbuf;
pos              4822 ext/standard/string.c 								tp = tbuf + pos;
pos              4874 ext/standard/string.c 						pos = tp - tbuf;
pos              4876 ext/standard/string.c 						tp = tbuf + pos;
pos              4899 ext/standard/string.c 							pos = tp - tbuf;
pos              4901 ext/standard/string.c 							tp = tbuf + pos;
pos              4958 ext/standard/string.c 						pos = tp - tbuf;
pos              4960 ext/standard/string.c 						tp = tbuf + pos;
pos               394 ext/sysvshm/sysvshm.c 	zend_long pos;
pos               397 ext/sysvshm/sysvshm.c 	pos = ptr->start;
pos               400 ext/sysvshm/sysvshm.c 		if (pos >= ptr->end) {
pos               403 ext/sysvshm/sysvshm.c 		shm_var = (sysvshm_chunk*) ((char *) ptr + pos);
pos               405 ext/sysvshm/sysvshm.c 			return pos;
pos               407 ext/sysvshm/sysvshm.c 		pos += shm_var->next;
pos               409 ext/sysvshm/sysvshm.c 		if (shm_var->next <= 0 || pos < ptr->start) {
pos               564 ext/xml/xml.c  	size_t pos = len;
pos               586 ext/xml/xml.c  	while (pos > 0) {
pos               603 ext/xml/xml.c  		pos--;
pos               615 ext/xml/xml.c  	size_t pos = 0;
pos               635 ext/xml/xml.c  	while (pos < len) {
pos               637 ext/xml/xml.c  		c = php_next_utf8_char((const unsigned char*)s, (size_t) len, &pos, &status);
pos              1784 ext/zip/php_zip.c 	int pos = 0;
pos              1801 ext/zip/php_zip.c 		pos = ze_obj->buffers_cnt++;
pos              1805 ext/zip/php_zip.c 		pos = 0;
pos              1807 ext/zip/php_zip.c 	ze_obj->buffers[pos] = (char *)emalloc(ZSTR_LEN(buffer) + 1);
pos              1808 ext/zip/php_zip.c 	memcpy(ze_obj->buffers[pos], ZSTR_VAL(buffer), ZSTR_LEN(buffer) + 1);
pos              1810 ext/zip/php_zip.c 	zs = zip_source_buffer(intern, ze_obj->buffers[pos], ZSTR_LEN(buffer), 0);
pos               189 main/fastcgi.c 	char                  *pos;
pos               264 main/fastcgi.c 	h->data->pos = h->data->data;
pos               265 main/fastcgi.c 	h->data->end = h->data->pos + FCGI_HASH_SEG_SIZE;
pos               307 main/fastcgi.c 	h->data->pos = h->data->data;
pos               314 main/fastcgi.c 	if (UNEXPECTED(h->data->pos + str_len + 1 >= h->data->end)) {
pos               318 main/fastcgi.c 		p->pos = p->data;
pos               319 main/fastcgi.c 		p->end = p->pos + seg_size;
pos               323 main/fastcgi.c 	ret = h->data->pos;
pos               326 main/fastcgi.c 	h->data->pos += str_len + 1;
pos              1602 main/fastcgi.c 		int pos = 0;
pos              1606 main/fastcgi.c 		while ((len - pos) > 0xffff) {
pos              1613 main/fastcgi.c 			if (safe_write(req, str + pos, 0xfff8) != 0xfff8) {
pos              1617 main/fastcgi.c 			pos += 0xfff8;
pos              1620 main/fastcgi.c 		pad = (((len - pos) + 7) & ~7) - (len - pos);
pos              1624 main/fastcgi.c 		fcgi_make_header(req->out_hdr, type, req->id, (len - pos) - rest);
pos              1629 main/fastcgi.c 		if (safe_write(req, str + pos, (len - pos) - rest) != (len - pos) - rest) {
pos                91 main/getopt.c  		const 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               491 main/rfc1867.c 	char *pos = *line, quote;
pos               494 main/rfc1867.c 	while (*pos && *pos != stop) {
pos               495 main/rfc1867.c 		if ((quote = *pos) == '"' || quote == '\'') {
pos               496 main/rfc1867.c 			++pos;
pos               497 main/rfc1867.c 			while (*pos && *pos != quote) {
pos               498 main/rfc1867.c 				if (*pos == '\\' && pos[1] && pos[1] == quote) {
pos               499 main/rfc1867.c 					pos += 2;
pos               501 main/rfc1867.c 					++pos;
pos               504 main/rfc1867.c 			if (*pos) {
pos               505 main/rfc1867.c 				++pos;
pos               507 main/rfc1867.c 		} else ++pos;
pos               509 main/rfc1867.c 	if (*pos == '\0') {
pos               515 main/rfc1867.c 	res = estrndup(*line, pos - *line);
pos               517 main/rfc1867.c 	while (*pos == stop) {
pos               518 main/rfc1867.c 		++pos;
pos               521 main/rfc1867.c 	*line = pos;
pos               240 main/streams/cast.c 			zend_off_t pos;
pos               246 main/streams/cast.c 			pos = php_stream_tell(stream);
pos               247 main/streams/cast.c 			if (pos > 0) {
pos               248 main/streams/cast.c 				zend_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               479 main/streams/memory.c 	zend_off_t pos;
pos               508 main/streams/memory.c 	pos = php_stream_tell(ts->innerstream);
pos               513 main/streams/memory.c 	php_stream_seek(ts->innerstream, pos, SEEK_SET);
pos               165 main/streams/streams.c 			zend_llist_position pos;
pos               175 main/streams/streams.c 			for (err_buf_p = zend_llist_get_first_ex(err_list, &pos), i = 0;
pos               177 main/streams/streams.c 					err_buf_p = zend_llist_get_next_ex(err_list, &pos), i++) {
pos               185 main/streams/streams.c 			for (err_buf_p = zend_llist_get_first_ex(err_list, &pos), i = 0;
pos               187 main/streams/streams.c 					err_buf_p = zend_llist_get_next_ex(err_list, &pos), i++) {
pos               372 sapi/cgi/cgi_main.c 	zend_llist_position pos;
pos               407 sapi/cgi/cgi_main.c 				h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               415 sapi/cgi/cgi_main.c 					h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               441 sapi/cgi/cgi_main.c 	h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               456 sapi/cgi/cgi_main.c 				h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               463 sapi/cgi/cgi_main.c 		h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos              2399 sapi/cgi/cgi_main.c 									zend_long pos = zend_ftell(file_handle.handle.fp);
pos              2400 sapi/cgi/cgi_main.c 									zend_fseek(file_handle.handle.fp, pos - 1, SEEK_SET);
pos              2417 sapi/cgi/cgi_main.c 									zend_off_t pos = php_stream_tell((php_stream*)file_handle.handle.stream.handle);
pos              2418 sapi/cgi/cgi_main.c 									php_stream_seek((php_stream*)file_handle.handle.stream.handle, pos - 1, SEEK_SET);
pos               636 sapi/cli/php_cli.c 				zend_long pos = zend_ftell(file_handle->handle.fp);
pos               637 sapi/cli/php_cli.c 				zend_fseek(file_handle->handle.fp, pos - 1, SEEK_SET);
pos               524 sapi/cli/php_cli_server.c 	zend_llist_position pos;
pos               539 sapi/cli/php_cli_server.c 	h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               545 sapi/cli/php_cli_server.c 		h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
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               357 sapi/fpm/fpm/fpm_main.c 	zend_llist_position pos;
pos               392 sapi/fpm/fpm/fpm_main.c 				h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               400 sapi/fpm/fpm/fpm_main.c 					h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               426 sapi/fpm/fpm/fpm_main.c 	h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               441 sapi/fpm/fpm/fpm_main.c 				h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               448 sapi/fpm/fpm/fpm_main.c 		h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos               367 sapi/litespeed/lsapi_main.c     zend_llist_position pos;
pos               371 sapi/litespeed/lsapi_main.c         h = zend_llist_get_first_ex(&sapi_headers->headers, &pos);
pos               376 sapi/litespeed/lsapi_main.c             h = zend_llist_get_next_ex(&sapi_headers->headers, &pos);
pos              1201 sapi/litespeed/lsapi_main.c     zend_llist_position pos;
pos              1215 sapi/litespeed/lsapi_main.c     h = zend_llist_get_first_ex(&SG(sapi_headers).headers, &pos);
pos              1232 sapi/litespeed/lsapi_main.c         h = zend_llist_get_next_ex(&SG(sapi_headers).headers, &pos);
pos               122 sapi/phpdbg/phpdbg_btree.c 	phpdbg_btree_position pos;
pos               124 sapi/phpdbg/phpdbg_btree.c 	pos.tree = tree;
pos               125 sapi/phpdbg/phpdbg_btree.c 	pos.end = lower_idx;
pos               126 sapi/phpdbg/phpdbg_btree.c 	pos.cur = higher_idx;
pos               128 sapi/phpdbg/phpdbg_btree.c 	return pos;
pos               131 sapi/phpdbg/phpdbg_btree.c phpdbg_btree_result *phpdbg_btree_next(phpdbg_btree_position *pos) {
pos               132 sapi/phpdbg/phpdbg_btree.c 	phpdbg_btree_result *result = phpdbg_btree_find_closest(pos->tree, pos->cur);
pos               134 sapi/phpdbg/phpdbg_btree.c 	if (result == NULL || result->idx < pos->end) {
pos               138 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                31 sapi/phpdbg/phpdbg_cmd.c 	size_t pos = 0;
pos                34 sapi/phpdbg/phpdbg_cmd.c 		memcpy(&buffer[pos], command->parent->name, command->parent->name_len);
pos                35 sapi/phpdbg/phpdbg_cmd.c 		pos += command->parent->name_len;
pos                36 sapi/phpdbg/phpdbg_cmd.c 		memcpy(&buffer[pos], " ", sizeof(" ")-1);
pos                37 sapi/phpdbg/phpdbg_cmd.c 		pos += (sizeof(" ")-1);
pos                40 sapi/phpdbg/phpdbg_cmd.c 	memcpy(&buffer[pos], command->name, command->name_len);
pos                41 sapi/phpdbg/phpdbg_cmd.c 	pos += command->name_len;
pos                42 sapi/phpdbg/phpdbg_cmd.c 	buffer[pos] = 0;
pos               628 sapi/phpdbg/phpdbg_cmd.c 			size_t pos = 0;
pos               634 sapi/phpdbg/phpdbg_cmd.c 					list = erealloc(list, (pos + matched[it]->name_len) + 1 + (it + 1 < matches ? sizeof(", ") - 1 : 0));
pos               636 sapi/phpdbg/phpdbg_cmd.c 				memcpy(&list[pos], matched[it]->name, matched[it]->name_len);
pos               637 sapi/phpdbg/phpdbg_cmd.c 				pos += matched[it]->name_len;
pos               639 sapi/phpdbg/phpdbg_cmd.c 					memcpy(&list[pos], ", ", sizeof(", ") - 1);
pos               640 sapi/phpdbg/phpdbg_cmd.c 					pos += (sizeof(", ") - 1);
pos               643 sapi/phpdbg/phpdbg_cmd.c 				list[pos] = 0;
pos                48 sapi/phpdbg/phpdbg_wait.c 	HashPosition pos[2];
pos                80 sapi/phpdbg/phpdbg_wait.c 	zend_hash_internal_pointer_reset_ex(info->ht[0], &info->pos[0]);
pos                81 sapi/phpdbg/phpdbg_wait.c 	zend_hash_internal_pointer_reset_ex(info->ht[1], &info->pos[1]);
pos                93 sapi/phpdbg/phpdbg_wait.c 		if (!(*ptr = zend_hash_get_current_data_ex(info->ht[invalid], &info->pos[invalid]))) {
pos                97 sapi/phpdbg/phpdbg_wait.c 		zend_hash_move_forward_ex(info->ht[invalid], &info->pos[invalid]);
pos               102 sapi/phpdbg/phpdbg_wait.c 	if (!(zvp[0] = zend_hash_get_current_data_ex(info->ht[0], &info->pos[0]))) {
pos               106 sapi/phpdbg/phpdbg_wait.c 	if (!(zvp[1] = zend_hash_get_current_data_ex(info->ht[1], &info->pos[1]))) {
pos               115 sapi/phpdbg/phpdbg_wait.c 		zend_hash_move_forward_ex(info->ht[0], &info->pos[0]);
pos               119 sapi/phpdbg/phpdbg_wait.c 		zend_hash_move_forward_ex(info->ht[1], &info->pos[1]);
pos               207 sapi/phpdbg/phpdbg_wait.c 		phpdbg_intersect_ptr pos;
pos               223 sapi/phpdbg/phpdbg_wait.c 		phpdbg_array_intersect_init(&pos, &zv_registry, Z_ARRVAL_P(zvp));
pos               225 sapi/phpdbg/phpdbg_wait.c 			int mode = phpdbg_array_intersect(&pos, &module);
pos               244 sapi/phpdbg/phpdbg_wait.c 		zend_llist_position pos;
pos               248 sapi/phpdbg/phpdbg_wait.c 		extension = (zend_extension *) zend_llist_get_first_ex(&zend_extensions, &pos);
pos               250 sapi/phpdbg/phpdbg_wait.c 			extension = (zend_extension *) zend_llist_get_next_ex(&zend_extensions, &pos);
pos               262 sapi/phpdbg/phpdbg_wait.c 				zend_llist_element *elm = pos;
pos               912 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               919 sapi/phpdbg/phpdbg_watch.c 	while ((result = phpdbg_btree_next(&pos))) {
pos              1099 sapi/phpdbg/phpdbg_watch.c 	zend_llist_position pos;
pos              1107 sapi/phpdbg/phpdbg_watch.c 	dump = (phpdbg_watch_memdump **) zend_llist_get_last_ex(&PHPDBG_G(watchlist_mem), &pos);
pos              1111 sapi/phpdbg/phpdbg_watch.c 	} while ((dump = (phpdbg_watch_memdump **) zend_llist_get_prev_ex(&PHPDBG_G(watchlist_mem), &pos)));
pos                82 sapi/phpdbg/phpdbg_webdata_transfer.c 		zend_llist_position pos;
pos                93 sapi/phpdbg/phpdbg_webdata_transfer.c 		extension = (zend_extension *) zend_llist_get_first_ex(&zend_extensions, &pos);
pos                98 sapi/phpdbg/phpdbg_webdata_transfer.c 			extension = (zend_extension *) zend_llist_get_next_ex(&zend_extensions, &pos);
pos               223 win32/sendmail.c 		char *pos = NULL;