Lines Matching refs:index
88 PARSE_LONG_AND_OPTIONAL_ZVAL(index, length); in METHOD()
94 RETURN_DS_DEQUE(ds_deque_slice(deque, index, Z_LVAL_P(length))); in METHOD()
97 RETURN_DS_DEQUE(ds_deque_slice(deque, index, deque->size)); in METHOD()
200 PARSE_LONG(index); in METHOD()
201 RETURN_ZVAL_COPY(ds_deque_get(THIS_DS_DEQUE(), index)); in METHOD()
206 PARSE_LONG_AND_ZVAL(index, value); in METHOD()
207 ds_deque_set(THIS_DS_DEQUE(), index, value); in METHOD()
218 PARSE_LONG(index); in METHOD()
219 ds_deque_remove(THIS_DS_DEQUE(), index, return_value); in METHOD()
224 PARSE_LONG_AND_VARIADIC_ZVAL(index); in METHOD()
225 ds_deque_insert_va(THIS_DS_DEQUE(), index, argc, argv); in METHOD()
271 PARSE_LONG(index); in METHOD()
272 RETURN_BOOL(ds_deque_isset(THIS_DS_DEQUE(), index, false)); in METHOD()
277 PARSE_LONG(index); in METHOD()
278 RETURN_ZVAL_COPY(ds_deque_get(THIS_DS_DEQUE(), index)); in METHOD()
298 PARSE_LONG(index); in METHOD()
299 ds_deque_remove(THIS_DS_DEQUE(), index, return_value); in METHOD()