Lines Matching refs:prev
26 assert(n->prev == NULL && n->next == NULL in list_insert_tail()
27 && l->prev != NULL && l->next != NULL); in list_insert_tail()
29 n->prev = l->prev; in list_insert_tail()
30 n->prev->next = n; in list_insert_tail()
31 l->prev = n; in list_insert_tail()
38 assert(n->prev != NULL && n->next != NULL in list_remove()
39 && n->prev != n && n->next != n); in list_remove()
41 n->prev->next = n->next; in list_remove()
42 n->next->prev = n->prev; in list_remove()
43 n->next = n->prev = NULL; in list_remove()
49 assert(n->prev != NULL && n->next != NULL in list_next()
50 && (n == l || (n->prev != n && n->next != n)) in list_next()
51 && l->prev != NULL && l->next != NULL); in list_next()
98 qsm->active_list.prev = qsm->active_list.next = &qsm->active_list; in ossl_quic_stream_map_init()
99 qsm->accept_list.prev = qsm->accept_list.next = &qsm->accept_list; in ossl_quic_stream_map_init()
100 qsm->ready_for_gc_list.prev = qsm->ready_for_gc_list.next in ossl_quic_stream_map_init()