Searched refs:qnext (Results 1 - 7 of 7) sorted by relevance
/third_party/nghttp2/lib/ |
H A D | nghttp2_outbound_item.c | 32 item->qnext = NULL; in nghttp2_outbound_item_init() 111 q->tail = q->tail->qnext = item; in nghttp2_outbound_queue_push() 124 q->head = q->head->qnext; in nghttp2_outbound_queue_pop() 125 item->qnext = NULL; in nghttp2_outbound_queue_pop()
|
H A D | nghttp2_outbound_item.h | 122 nghttp2_outbound_item *qnext; member
|
H A D | nghttp2_session.c | 756 next = item->qnext; in ob_q_free() 1250 for (item = session->ob_syn.head; item; item = item->qnext) { in nghttp2_session_add_rst_stream() 7822 for (item = session->ob_syn.head; item; item = item->qnext) { in nghttp2_session_set_stream_user_data()
|
/third_party/node/deps/nghttp2/lib/ |
H A D | nghttp2_outbound_item.c | 32 item->qnext = NULL; in nghttp2_outbound_item_init() 111 q->tail = q->tail->qnext = item; in nghttp2_outbound_queue_push() 124 q->head = q->head->qnext; in nghttp2_outbound_queue_pop() 125 item->qnext = NULL; in nghttp2_outbound_queue_pop()
|
H A D | nghttp2_outbound_item.h | 122 nghttp2_outbound_item *qnext; member
|
H A D | nghttp2_session.c | 751 next = item->qnext; in ob_q_free() 1245 for (item = session->ob_syn.head; item; item = item->qnext) { in nghttp2_session_add_rst_stream() 7811 for (item = session->ob_syn.head; item; item = item->qnext) { in nghttp2_session_set_stream_user_data()
|
/third_party/rust/crates/regex/src/ |
H A D | dfa.rs | 87 /// qcur and qnext are ordered sets with constant time 95 qnext: SparseSet, 429 qnext: SparseSet::new(prog.insts.len()), in new() 473 dfa.exec_at(&mut cache.qcur, &mut cache.qnext, text) in forward() 503 dfa.exec_at_reverse(&mut cache.qcur, &mut cache.qnext, text) in reverse() 534 let result = dfa.exec_at(&mut cache.qcur, &mut cache.qnext, text); in forward_many() 553 /// {qcur,qnext} are scratch ordered sets which may be non-empty. 558 qnext: &mut SparseSet, in exec_at() 708 next_si = match self.next_state(qcur, qnext, prev_si, byte) { in exec_at() 732 prev_si = match self.next_state(qcur, qnext, prev_s in exec_at() [all...] |
Completed in 21 milliseconds