Lines Matching refs:start_key
2604 zend_long start_key, num; local
2607 Z_PARAM_LONG(start_key)
2616 } else if (UNEXPECTED(start_key > ZEND_LONG_MAX - num + 1)) {
2619 } else if (EXPECTED(start_key >= 0) && EXPECTED(start_key < num)) {
2624 array_init_size(return_value, (uint32_t)(start_key + num));
2626 Z_ARRVAL_P(return_value)->nNumUsed = (uint32_t)(start_key + num);
2628 Z_ARRVAL_P(return_value)->nNextFreeElement = (zend_long)(start_key + num);
2635 n = start_key;
2637 while (start_key--) {
2654 zend_hash_index_add_new(Z_ARRVAL_P(return_value), start_key, val);
2657 start_key++;