Lines Matching refs:pos

1376 	HashPosition pos;  in php_array_walk()  local
1391 zend_hash_internal_pointer_reset_ex(target_hash, &pos); in php_array_walk()
1392 ht_iter = zend_hash_iterator_add(target_hash, pos); in php_array_walk()
1397 zv = zend_hash_get_current_data_ex(target_hash, &pos); in php_array_walk()
1406 zend_hash_move_forward_ex(target_hash, &pos); in php_array_walk()
1415 zend_hash_get_current_key_zval_ex(target_hash, &args[1], &pos); in php_array_walk()
1419 zend_hash_move_forward_ex(target_hash, &pos); in php_array_walk()
1422 EG(ht_iterators)[ht_iter].pos = pos; in php_array_walk()
1480 pos = zend_hash_iterator_pos_ex(ht_iter, array); in php_array_walk()
1484 pos = zend_hash_iterator_pos(ht_iter, target_hash); in php_array_walk()
3053 zend_long pos; /* Current position in the hashtable */ local
3080 for (pos = 0, idx = 0; pos < offset && idx < in_hash->nNumUsed; idx++) {
3093 if ((zend_long)idx != pos) {
3094 zend_hash_iterators_update(in_hash, idx, pos);
3098 pos++;
3103 for ( ; pos < offset + length && idx < in_hash->nNumUsed; idx++) {
3106 pos++;
3124 int pos2 = pos;
3148 pos++;
3163 if ((zend_long)idx != pos) {
3164 zend_hash_iterators_update(in_hash, idx, pos);
3168 pos++;
3531 pos; /* Current position in the array */ local
3577 pos = 0;
3584 pos++;
3585 if (pos <= offset) {
3588 if (pos > offset + length) {
3601 pos++;
3602 if (pos <= offset) {
3605 if (pos > offset + length) {
6151 uint32_t pos = array_pos[i]; local
6153 if (pos >= Z_ARRVAL(arrays[i])->nNumUsed) {
6156 } else if (Z_TYPE(Z_ARRVAL(arrays[i])->arData[pos].val) != IS_UNDEF) {
6157 ZVAL_COPY(&zv, &Z_ARRVAL(arrays[i])->arData[pos].val);
6158 array_pos[i] = pos + 1;
6161 pos++;
6177 uint32_t pos = array_pos[i]; local
6179 if (pos >= Z_ARRVAL(arrays[i])->nNumUsed) {
6182 } else if (Z_TYPE(Z_ARRVAL(arrays[i])->arData[pos].val) != IS_UNDEF) {
6183 ZVAL_COPY(&params[i], &Z_ARRVAL(arrays[i])->arData[pos].val);
6184 array_pos[i] = pos + 1;
6187 pos++;