Lines Matching refs:pos

1361 	HashPosition pos;  in php_array_walk()  local
1376 zend_hash_internal_pointer_reset_ex(target_hash, &pos); in php_array_walk()
1377 ht_iter = zend_hash_iterator_add(target_hash, pos); in php_array_walk()
1382 zv = zend_hash_get_current_data_ex(target_hash, &pos); in php_array_walk()
1391 zend_hash_move_forward_ex(target_hash, &pos); in php_array_walk()
1400 zend_hash_get_current_key_zval_ex(target_hash, &args[1], &pos); in php_array_walk()
1404 zend_hash_move_forward_ex(target_hash, &pos); in php_array_walk()
1407 EG(ht_iterators)[ht_iter].pos = pos; in php_array_walk()
1465 pos = zend_hash_iterator_pos_ex(ht_iter, array); in php_array_walk()
1469 pos = zend_hash_iterator_pos(ht_iter, target_hash); in php_array_walk()
3028 zend_long pos; /* Current position in the hashtable */ local
3055 for (pos = 0, idx = 0; pos < offset && idx < in_hash->nNumUsed; idx++) {
3068 if ((zend_long)idx != pos) {
3069 zend_hash_iterators_update(in_hash, idx, pos);
3073 pos++;
3078 for ( ; pos < offset + length && idx < in_hash->nNumUsed; idx++) {
3081 pos++;
3097 int pos2 = pos;
3117 pos++;
3132 if ((zend_long)idx != pos) {
3133 zend_hash_iterators_update(in_hash, idx, pos);
3137 pos++;
3475 pos; /* Current position in the array */ local
3521 pos = 0;
3528 pos++;
3529 if (pos <= offset) {
3532 if (pos > offset + length) {
3545 pos++;
3546 if (pos <= offset) {
3549 if (pos > offset + length) {
3966 HashPosition pos = 0; local
3967 zend_hash_get_current_key_zval_ex(target_hash, return_value, &pos);
3976 HashPosition pos; local
3983 zend_hash_internal_pointer_end_ex(target_hash, &pos);
3984 zend_hash_get_current_key_zval_ex(target_hash, return_value, &pos);
6185 uint32_t pos = array_pos[i]; local
6187 if (pos >= Z_ARRVAL(arrays[i])->nNumUsed) {
6190 } else if (Z_TYPE(Z_ARRVAL(arrays[i])->arData[pos].val) != IS_UNDEF) {
6191 ZVAL_COPY(&zv, &Z_ARRVAL(arrays[i])->arData[pos].val);
6192 array_pos[i] = pos + 1;
6195 pos++;
6211 uint32_t pos = array_pos[i]; local
6213 if (pos >= Z_ARRVAL(arrays[i])->nNumUsed) {
6216 } else if (Z_TYPE(Z_ARRVAL(arrays[i])->arData[pos].val) != IS_UNDEF) {
6217 ZVAL_COPY(&params[i], &Z_ARRVAL(arrays[i])->arData[pos].val);
6218 array_pos[i] = pos + 1;
6221 pos++;