Home
last modified time | relevance | path

Searched defs:pq (Results 1 – 25 of 73) sorted by relevance

123

/third_party/node/deps/ngtcp2/nghttp3/lib/
Dnghttp3_pq.c33 void nghttp3_pq_init(nghttp3_pq *pq, nghttp3_less less, in nghttp3_pq_init()
42 void nghttp3_pq_free(nghttp3_pq *pq) { in nghttp3_pq_free()
47 static void swap(nghttp3_pq *pq, size_t i, size_t j) { in swap()
57 static void bubble_up(nghttp3_pq *pq, size_t index) { in bubble_up()
69 int nghttp3_pq_push(nghttp3_pq *pq, nghttp3_pq_entry *item) { in nghttp3_pq_push()
91 nghttp3_pq_entry *nghttp3_pq_top(const nghttp3_pq *pq) { in nghttp3_pq_top()
96 static void bubble_down(nghttp3_pq *pq, size_t index) { in bubble_down()
117 void nghttp3_pq_pop(nghttp3_pq *pq) { in nghttp3_pq_pop()
126 void nghttp3_pq_remove(nghttp3_pq *pq, nghttp3_pq_entry *item) { in nghttp3_pq_remove()
150 int nghttp3_pq_empty(const nghttp3_pq *pq) { return pq->length == 0; } in nghttp3_pq_empty()
[all …]
Dnghttp3_tnode.c58 static void tnode_unschedule(nghttp3_tnode *tnode, nghttp3_pq *pq) { in tnode_unschedule()
65 void nghttp3_tnode_unschedule(nghttp3_tnode *tnode, nghttp3_pq *pq) { in nghttp3_tnode_unschedule()
73 static uint64_t pq_get_first_cycle(nghttp3_pq *pq) { in pq_get_first_cycle()
84 int nghttp3_tnode_schedule(nghttp3_tnode *tnode, nghttp3_pq *pq, in nghttp3_tnode_schedule()
/third_party/node/deps/ngtcp2/ngtcp2/lib/
Dngtcp2_pq.c32 void ngtcp2_pq_init(ngtcp2_pq *pq, ngtcp2_less less, const ngtcp2_mem *mem) { in ngtcp2_pq_init()
40 void ngtcp2_pq_free(ngtcp2_pq *pq) { in ngtcp2_pq_free()
45 static void swap(ngtcp2_pq *pq, size_t i, size_t j) { in swap()
55 static void bubble_up(ngtcp2_pq *pq, size_t index) { in bubble_up()
67 int ngtcp2_pq_push(ngtcp2_pq *pq, ngtcp2_pq_entry *item) { in ngtcp2_pq_push()
89 ngtcp2_pq_entry *ngtcp2_pq_top(ngtcp2_pq *pq) { in ngtcp2_pq_top()
94 static void bubble_down(ngtcp2_pq *pq, size_t index) { in bubble_down()
115 void ngtcp2_pq_pop(ngtcp2_pq *pq) { in ngtcp2_pq_pop()
124 void ngtcp2_pq_remove(ngtcp2_pq *pq, ngtcp2_pq_entry *item) { in ngtcp2_pq_remove()
148 int ngtcp2_pq_empty(ngtcp2_pq *pq) { return pq->length == 0; } in ngtcp2_pq_empty()
[all …]
/third_party/node/deps/nghttp2/lib/
Dnghttp2_pq.c32 void nghttp2_pq_init(nghttp2_pq *pq, nghttp2_less less, nghttp2_mem *mem) { in nghttp2_pq_init()
40 void nghttp2_pq_free(nghttp2_pq *pq) { in nghttp2_pq_free()
45 static void swap(nghttp2_pq *pq, size_t i, size_t j) { in swap()
55 static void bubble_up(nghttp2_pq *pq, size_t index) { in bubble_up()
67 int nghttp2_pq_push(nghttp2_pq *pq, nghttp2_pq_entry *item) { in nghttp2_pq_push()
89 nghttp2_pq_entry *nghttp2_pq_top(nghttp2_pq *pq) { in nghttp2_pq_top()
97 static void bubble_down(nghttp2_pq *pq, size_t index) { in bubble_down()
118 void nghttp2_pq_pop(nghttp2_pq *pq) { in nghttp2_pq_pop()
127 void nghttp2_pq_remove(nghttp2_pq *pq, nghttp2_pq_entry *item) { in nghttp2_pq_remove()
151 int nghttp2_pq_empty(nghttp2_pq *pq) { return pq->length == 0; } in nghttp2_pq_empty()
[all …]
/third_party/nghttp2/lib/
Dnghttp2_pq.c32 void nghttp2_pq_init(nghttp2_pq *pq, nghttp2_less less, nghttp2_mem *mem) { in nghttp2_pq_init()
40 void nghttp2_pq_free(nghttp2_pq *pq) { in nghttp2_pq_free()
45 static void swap(nghttp2_pq *pq, size_t i, size_t j) { in swap()
55 static void bubble_up(nghttp2_pq *pq, size_t index) { in bubble_up()
67 int nghttp2_pq_push(nghttp2_pq *pq, nghttp2_pq_entry *item) { in nghttp2_pq_push()
89 nghttp2_pq_entry *nghttp2_pq_top(nghttp2_pq *pq) { in nghttp2_pq_top()
97 static void bubble_down(nghttp2_pq *pq, size_t index) { in bubble_down()
118 void nghttp2_pq_pop(nghttp2_pq *pq) { in nghttp2_pq_pop()
127 void nghttp2_pq_remove(nghttp2_pq *pq, nghttp2_pq_entry *item) { in nghttp2_pq_remove()
151 int nghttp2_pq_empty(nghttp2_pq *pq) { return pq->length == 0; } in nghttp2_pq_empty()
[all …]
/third_party/node/deps/openssl/openssl/ssl/
Dpqueue.c40 pqueue *pq = OPENSSL_zalloc(sizeof(*pq)); in pqueue_new() local
48 void pqueue_free(pqueue *pq) in pqueue_free()
53 pitem *pqueue_insert(pqueue *pq, pitem *item) in pqueue_insert()
89 pitem *pqueue_peek(pqueue *pq) in pqueue_peek()
94 pitem *pqueue_pop(pqueue *pq) in pqueue_pop()
104 pitem *pqueue_find(pqueue *pq, unsigned char *prio64be) in pqueue_find()
129 pitem *pqueue_iterator(pqueue *pq) in pqueue_iterator()
148 size_t pqueue_size(pqueue *pq) in pqueue_size()
/third_party/openssl/ssl/
Dpqueue.c40 pqueue *pq = OPENSSL_zalloc(sizeof(*pq)); in pqueue_new() local
48 void pqueue_free(pqueue *pq) in pqueue_free()
53 pitem *pqueue_insert(pqueue *pq, pitem *item) in pqueue_insert()
89 pitem *pqueue_peek(pqueue *pq) in pqueue_peek()
94 pitem *pqueue_pop(pqueue *pq) in pqueue_pop()
104 pitem *pqueue_find(pqueue *pq, unsigned char *prio64be) in pqueue_find()
129 pitem *pqueue_iterator(pqueue *pq) in pqueue_iterator()
148 size_t pqueue_size(pqueue *pq) in pqueue_size()
/third_party/mesa3d/src/gallium/frontends/vdpau/
Dpresentation.c44 vlVdpPresentationQueue *pq = NULL; in vlVdpPresentationQueueCreate() local
97 vlVdpPresentationQueue *pq; in vlVdpPresentationQueueDestroy() local
121 vlVdpPresentationQueue *pq; in vlVdpPresentationQueueSetBackgroundColor() local
150 vlVdpPresentationQueue *pq; in vlVdpPresentationQueueGetBackgroundColor() local
179 vlVdpPresentationQueue *pq; in vlVdpPresentationQueueGetTime() local
208 vlVdpPresentationQueue *pq; in vlVdpPresentationQueueDisplay() local
309 vlVdpPresentationQueue *pq; in vlVdpPresentationQueueBlockUntilSurfaceIdle() local
344 vlVdpPresentationQueue *pq; in vlVdpPresentationQueueQuerySurfaceStatus() local
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
Dnvc0_query.c48 nvc0_destroy_query(struct pipe_context *pipe, struct pipe_query *pq) in nvc0_destroy_query()
55 nvc0_begin_query(struct pipe_context *pipe, struct pipe_query *pq) in nvc0_begin_query()
62 nvc0_end_query(struct pipe_context *pipe, struct pipe_query *pq) in nvc0_end_query()
70 nvc0_get_query_result(struct pipe_context *pipe, struct pipe_query *pq, in nvc0_get_query_result()
79 struct pipe_query *pq, in nvc0_get_query_result_resource()
97 struct pipe_query *pq, in nvc0_render_condition()
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
Dnv50_query.c44 nv50_destroy_query(struct pipe_context *pipe, struct pipe_query *pq) in nv50_destroy_query()
51 nv50_begin_query(struct pipe_context *pipe, struct pipe_query *pq) in nv50_begin_query()
58 nv50_end_query(struct pipe_context *pipe, struct pipe_query *pq) in nv50_end_query()
66 nv50_get_query_result(struct pipe_context *pipe, struct pipe_query *pq, in nv50_get_query_result()
75 struct pipe_query *pq, in nv50_render_condition()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_query.c56 struct llvmpipe_query *pq; in llvmpipe_create_query() local
74 struct llvmpipe_query *pq = llvmpipe_query(q); in llvmpipe_destroy_query() local
101 struct llvmpipe_query *pq = llvmpipe_query(q); in llvmpipe_get_query_result() local
215 struct llvmpipe_query *pq = llvmpipe_query(q); in llvmpipe_get_query_result_resource() local
386 struct llvmpipe_query *pq = llvmpipe_query(q); in llvmpipe_begin_query() local
449 struct llvmpipe_query *pq = llvmpipe_query(q); in llvmpipe_end_query() local
/third_party/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_query.c52 etna_destroy_query(struct pipe_context *pctx, struct pipe_query *pq) in etna_destroy_query()
60 etna_begin_query(struct pipe_context *pctx, struct pipe_query *pq) in etna_begin_query()
70 etna_end_query(struct pipe_context *pctx, struct pipe_query *pq) in etna_end_query()
80 etna_get_query_result(struct pipe_context *pctx, struct pipe_query *pq, in etna_get_query_result()
Detnaviv_query_acc_perfmon.c52 pm_add_signal(struct etna_pm_query *pq, struct etna_perfmon *perfmon, in pm_add_signal()
64 struct etna_pm_query *pq = etna_pm_query(aq); in pm_query() local
105 struct etna_pm_query *pq; in perfmon_allocate() local
141 const struct etna_pm_query *pq = etna_pm_query(aq); in perfmon_result() local
Detnaviv_query.h50 etna_query(struct pipe_query *pq) in etna_query()
/third_party/nghttp2/tests/
Dnghttp2_pq_test.c58 nghttp2_pq pq; in test_nghttp2_pq() local
145 nghttp2_pq pq; in test_nghttp2_pq_update() local
170 static void push_nodes(nghttp2_pq *pq, node *dest, size_t n) { in push_nodes()
179 static void check_nodes(nghttp2_pq *pq, size_t n, int *ans_key, int *ans_val) { in check_nodes()
190 nghttp2_pq pq; in test_nghttp2_pq_remove() local
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
Dnv30_query.c141 nv30_query_destroy(struct pipe_context *pipe, struct pipe_query *pq) in nv30_query_destroy()
147 nv30_query_begin(struct pipe_context *pipe, struct pipe_query *pq) in nv30_query_begin()
177 nv30_query_end(struct pipe_context *pipe, struct pipe_query *pq) in nv30_query_end()
199 nv30_query_result(struct pipe_context *pipe, struct pipe_query *pq, in nv30_query_result()
239 struct pipe_query *pq, in nv40_query_render_condition()
/third_party/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_query.c55 fd_destroy_query(struct pipe_context *pctx, struct pipe_query *pq) in_dt in fd_destroy_query()
62 fd_begin_query(struct pipe_context *pctx, struct pipe_query *pq) in_dt in fd_begin_query()
72 fd_end_query(struct pipe_context *pctx, struct pipe_query *pq) in_dt in fd_end_query()
88 fd_get_query_result(struct pipe_context *pctx, struct pipe_query *pq, bool wait, in fd_get_query_result()
99 fd_render_condition(struct pipe_context *pctx, struct pipe_query *pq, in fd_render_condition()
/third_party/ffmpeg/libavcodec/
Dxfaceenc.c82 static inline int pq_push(ProbRangesQueue *pq, const ProbRange *p) in pq_push()
90 static void push_greys(ProbRangesQueue *pq, char *bitmap, int w, int h) in push_greys()
109 static void encode_block(char *bitmap, int w, int h, int level, ProbRangesQueue *pq) in encode_block()
141 ProbRangesQueue pq = {{{ 0 }}, 0}; in xface_encode_frame() local
Dvc1_loopfilter.c210 int pq = v->pq; in vc1_i_h_loop_filter() local
243 int pq = v->pq; in vc1_i_v_loop_filter() local
368 int pq = v->pq; in vc1_p_h_loop_filter() local
421 int pq = v->pq; in vc1_p_v_loop_filter() local
806 int pq = v->pq; in vc1_p_h_intfr_loop_filter() local
856 int pq = v->pq; in vc1_p_v_intfr_loop_filter() local
1116 int pq = v->pq; in vc1_b_h_intfi_loop_filter() local
1148 int pq = v->pq; in vc1_b_v_intfi_loop_filter() local
Ddvbsubenc.c41 static int dvb_encode_rle2(uint8_t **pq, int buf_size, in dvb_encode_rle2()
136 static int dvb_encode_rle4(uint8_t **pq, int buf_size, in dvb_encode_rle4()
211 static int dvb_encode_rle8(uint8_t **pq, int buf_size, in dvb_encode_rle8()
Dvc1dsp.c150 static av_always_inline int vc1_filter_line(uint8_t *src, ptrdiff_t stride, int pq) in vc1_filter_line()
200 int len, int pq) in vc1_loop_filter()
216 static void vc1_v_loop_filter4_c(uint8_t *src, ptrdiff_t stride, int pq) in vc1_v_loop_filter4_c()
221 static void vc1_h_loop_filter4_c(uint8_t *src, ptrdiff_t stride, int pq) in vc1_h_loop_filter4_c()
226 static void vc1_v_loop_filter8_c(uint8_t *src, ptrdiff_t stride, int pq) in vc1_v_loop_filter8_c()
231 static void vc1_h_loop_filter8_c(uint8_t *src, ptrdiff_t stride, int pq) in vc1_h_loop_filter8_c()
236 static void vc1_v_loop_filter16_c(uint8_t *src, ptrdiff_t stride, int pq) in vc1_v_loop_filter16_c()
241 static void vc1_h_loop_filter16_c(uint8_t *src, ptrdiff_t stride, int pq) in vc1_h_loop_filter16_c()
/third_party/FreeBSD/sys/dev/usb/
Dusb_transfer.c1947 struct usb_xfer_queue *pq; in usbd_transfer_pending() local
2230 struct usb_xfer_queue *pq = &info->done_q; in usbd_callback_ss_done_defer() local
2264 usbd_callback_wrapper(struct usb_xfer_queue *pq) in usbd_callback_wrapper()
2418 struct usb_xfer_queue *pq; in usbd_transfer_dequeue() local
2439 usbd_transfer_enqueue(struct usb_xfer_queue *pq, struct usb_xfer *xfer) in usbd_transfer_enqueue()
2500 struct usb_xfer_queue *pq; in usbd_transfer_done() local
2621 usbd_pipe_start(struct usb_xfer_queue *pq) in usbd_pipe_start()
2957 usb_command_wrapper(struct usb_xfer_queue *pq, struct usb_xfer *xfer) in usb_command_wrapper()
/third_party/ffmpeg/libavcodec/mips/
Dvc1dsp_mmi.c1488 static av_always_inline int vc1_filter_line(uint8_t *src, int stride, int pq) in vc1_filter_line()
1538 int len, int pq) in vc1_loop_filter()
1554 void ff_vc1_v_loop_filter4_mmi(uint8_t *src, ptrdiff_t stride, int pq) in ff_vc1_v_loop_filter4_mmi()
1559 void ff_vc1_h_loop_filter4_mmi(uint8_t *src, ptrdiff_t stride, int pq) in ff_vc1_h_loop_filter4_mmi()
1564 void ff_vc1_v_loop_filter8_mmi(uint8_t *src, ptrdiff_t stride, int pq) in ff_vc1_v_loop_filter8_mmi()
1569 void ff_vc1_h_loop_filter8_mmi(uint8_t *src, ptrdiff_t stride, int pq) in ff_vc1_h_loop_filter8_mmi()
1574 void ff_vc1_v_loop_filter16_mmi(uint8_t *src, ptrdiff_t stride, int pq) in ff_vc1_v_loop_filter16_mmi()
1579 void ff_vc1_h_loop_filter16_mmi(uint8_t *src, ptrdiff_t stride, int pq) in ff_vc1_h_loop_filter16_mmi()
/third_party/ffmpeg/libavcodec/x86/
Dvc1dsp_init.c63 static void vc1_h_loop_filter16_sse4(uint8_t *src, ptrdiff_t stride, int pq) in vc1_h_loop_filter16_sse4()
/third_party/mesa3d/src/gallium/frontends/nine/
Dquery9.h38 struct pipe_query *pq; member

123