Lines Matching refs:THIS_DS_QUEUE
22 ds_queue_push_all(THIS_DS_QUEUE(), values); in METHOD()
29 ds_queue_allocate(THIS_DS_QUEUE(), capacity); in METHOD()
35 RETURN_LONG(ds_queue_capacity(THIS_DS_QUEUE())); in METHOD()
41 ds_queue_push(THIS_DS_QUEUE(), argc, argv); in METHOD()
47 ds_queue_pop_throw(THIS_DS_QUEUE(), return_value); in METHOD()
53 RETURN_ZVAL_COPY(ds_queue_peek_throw(THIS_DS_QUEUE())); in METHOD()
59 RETURN_OBJ(php_ds_queue_create_clone(THIS_DS_QUEUE())); in METHOD()
65 RETURN_LONG(QUEUE_SIZE(THIS_DS_QUEUE())); in METHOD()
71 ds_queue_clear(THIS_DS_QUEUE()); in METHOD()
77 ds_queue_to_array(THIS_DS_QUEUE(), return_value); in METHOD()
83 RETURN_BOOL(QUEUE_SIZE(THIS_DS_QUEUE()) == 0); in METHOD()
89 ds_queue_to_array(THIS_DS_QUEUE(), return_value); in METHOD()
112 ds_queue_push(THIS_DS_QUEUE(), 1, value); in METHOD()