Symbol: PRIORITY_QUEUE_OF
crypto/openssl/include/internal/priority_queue.h
21
static ossl_unused ossl_inline PRIORITY_QUEUE_OF(type) * ossl_pqueue_##type##_new(int (*compare)(const ctype *, const ctype *)) \
crypto/openssl/include/internal/priority_queue.h
23
return (PRIORITY_QUEUE_OF(type) *)ossl_pqueue_new( \
crypto/openssl/include/internal/priority_queue.h
27
ossl_pqueue_##type##_free(PRIORITY_QUEUE_OF(type) * pq) \
crypto/openssl/include/internal/priority_queue.h
32
ossl_pqueue_##type##_pop_free(PRIORITY_QUEUE_OF(type) * pq, \
crypto/openssl/include/internal/priority_queue.h
38
ossl_pqueue_##type##_reserve(PRIORITY_QUEUE_OF(type) * pq, size_t n) \
crypto/openssl/include/internal/priority_queue.h
43
ossl_pqueue_##type##_num(const PRIORITY_QUEUE_OF(type) * pq) \
crypto/openssl/include/internal/priority_queue.h
48
ossl_pqueue_##type##_push(PRIORITY_QUEUE_OF(type) * pq, \
crypto/openssl/include/internal/priority_queue.h
54
ossl_pqueue_##type##_peek(const PRIORITY_QUEUE_OF(type) * pq) \
crypto/openssl/include/internal/priority_queue.h
59
ossl_pqueue_##type##_pop(PRIORITY_QUEUE_OF(type) * pq) \
crypto/openssl/include/internal/priority_queue.h
64
ossl_pqueue_##type##_remove(PRIORITY_QUEUE_OF(type) * pq, \
crypto/openssl/ssl/quic/quic_rcidm.c
194
PRIORITY_QUEUE_OF(RCID) * rcids;
crypto/openssl/test/priority_queue_test.c
185
PRIORITY_QUEUE_OF(INFO) *pq = ossl_pqueue_INFO_new(cmp);
crypto/openssl/test/priority_queue_test.c
54
PRIORITY_QUEUE_OF(size_t) *pq = NULL;
crypto/openssl/test/quic_cc_test.c
102
PRIORITY_QUEUE_OF(NET_PKT) * pkts;