Home
last modified time | relevance | path

Searched defs:q (Results 1 – 25 of 998) sorted by relevance

12345678910>>...40

/freebsd-12-stable/sys/dev/netmap/
Dnetmap_mbq.c49 static inline void __mbq_init(struct mbq *q) in __mbq_init()
56 void mbq_safe_init(struct mbq *q) in mbq_safe_init()
63 void mbq_init(struct mbq *q) in mbq_init()
69 static inline void __mbq_enqueue(struct mbq *q, struct mbuf *m) in __mbq_enqueue()
82 void mbq_safe_enqueue(struct mbq *q, struct mbuf *m) in mbq_safe_enqueue()
90 void mbq_enqueue(struct mbq *q, struct mbuf *m) in mbq_enqueue()
96 static inline struct mbuf *__mbq_dequeue(struct mbq *q) in __mbq_dequeue()
114 struct mbuf *mbq_safe_dequeue(struct mbq *q) in mbq_safe_dequeue()
126 struct mbuf *mbq_dequeue(struct mbq *q) in mbq_dequeue()
133 static void __mbq_purge(struct mbq *q, int safe) in __mbq_purge()
[all …]
Dnetmap_mbq.h70 mbq_peek(struct mbq *q) in mbq_peek()
76 mbq_lock(struct mbq *q) in mbq_lock()
82 mbq_unlock(struct mbq *q) in mbq_unlock()
94 static inline unsigned int mbq_len(struct mbq *q) in mbq_len()
/freebsd-12-stable/sys/netgraph/bluetooth/include/
Dng_bluetooth.h77 #define NG_BT_MBUFQ_INIT(q, _maxlen) \ argument
86 #define NG_BT_MBUFQ_DESTROY(q) \ argument
91 #define NG_BT_MBUFQ_FIRST(q) (q)->head argument
93 #define NG_BT_MBUFQ_LEN(q) (q)->len argument
95 #define NG_BT_MBUFQ_FULL(q) ((q)->len >= (q)->maxlen) argument
97 #define NG_BT_MBUFQ_DROP(q) (q)->drops ++ argument
99 #define NG_BT_MBUFQ_ENQUEUE(q, i) \ argument
112 #define NG_BT_MBUFQ_DEQUEUE(q, i) \ argument
125 #define NG_BT_MBUFQ_PREPEND(q, i) \ argument
135 #define NG_BT_MBUFQ_DRAIN(q) \ argument
[all …]
/freebsd-12-stable/sys/net/altq/
Daltq_classq.h70 #define qtype(q) (q)->qtype_ /* Get queue type */ argument
71 #define qlimit(q) (q)->qlim_ /* Max packets to be queued */ argument
72 #define qlen(q) (q)->qlen_ /* Current queue length. */ argument
73 #define qsize(q) (q)->qsize_ /* Current queue size. */ argument
74 #define qtail(q) (q)->tail_ /* Tail of the queue */ argument
75 #define qhead(q) ((q)->tail_ ? (q)->tail_->m_nextpkt : NULL) argument
77 #define qempty(q) ((q)->qlen_ == 0) /* Is the queue empty?? */ argument
78 #define q_is_codel(q) ((q)->qtype_ == Q_CODEL) /* Is the queue a codel queue */ argument
79 #define q_is_red(q) ((q)->qtype_ == Q_RED) /* Is the queue a red queue */ argument
80 #define q_is_rio(q) ((q)->qtype_ == Q_RIO) /* Is the queue a rio queue */ argument
[all …]
/freebsd-12-stable/crypto/heimdal/lib/asn1/
Dder_cmp.c37 der_heim_oid_cmp(const heim_oid *p, const heim_oid *q) in der_heim_oid_cmp()
48 const heim_octet_string *q) in der_heim_octet_string_cmp()
57 const heim_printable_string *q) in der_printable_string_cmp()
64 const heim_ia5_string *q) in der_ia5_string_cmp()
71 const heim_bit_string *q) in der_heim_bit_string_cmp()
92 const heim_integer *q) in der_heim_integer_cmp()
102 der_heim_bmp_string_cmp(const heim_bmp_string *p, const heim_bmp_string *q) in der_heim_bmp_string_cmp()
111 const heim_universal_string *q) in der_heim_universal_string_cmp()
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
Dbqueue.c23 obj2node(bqueue_t *q, void *data) in obj2node()
35 bqueue_init(bqueue_t *q, uint64_t size, size_t node_offset) in bqueue_init()
54 bqueue_destroy(bqueue_t *q) in bqueue_destroy()
69 bqueue_enqueue(bqueue_t *q, void *data, uint64_t item_size) in bqueue_enqueue()
88 bqueue_dequeue(bqueue_t *q) in bqueue_dequeue()
108 bqueue_empty(bqueue_t *q) in bqueue_empty()
/freebsd-12-stable/contrib/amd/fsinfo/
Dfsinfo.h127 #define AM_FIRST(ty, q) ((ty *) ((q)->q_forw)) argument
128 #define HEAD(ty, q) ((ty *) q) argument
130 #define ITER(v, ty, q) for ((v) = AM_FIRST(ty,(q)); (v) != HEAD(ty,(q)); (v) = NEXT(ty,(v))) argument
131 #define AM_LAST(ty, q) ((ty *) ((q)->q_back)) argument
132 #define NEXT(ty, q) ((ty *) (((qelem *) q)->q_forw)) argument
Dfsi_analyze.c141 char *q; in find_volname() local
174 check_exportfs(qelem *q, fsi_mount *e) in check_exportfs()
211 analyze_dkmount_tree(qelem *q, fsi_mount *parent, disk_fs *dk) in analyze_dkmount_tree()
247 analyze_dkmounts(disk_fs *dk, qelem *q) in analyze_dkmounts()
358 qelem *q = new_que(); in fixup_required_disk_info() local
455 qelem *q = hp->h_disk_fs; in analyze_drives() local
478 qelem *q = hp->h_mount; in analyze_mounts() local
568 analyze_hosts(qelem *q) in analyze_hosts()
622 analyze_automount_tree(qelem *q, char *pref, int lvl) in analyze_automount_tree()
657 analyze_automounts(qelem *q) in analyze_automounts()
Dwr_exportfs.c49 write_export_info(FILE *ef, qelem *q, int errors) in write_export_info()
65 write_dkexports(FILE *ef, qelem *q) in write_dkexports()
80 write_exportfs(qelem *q) in write_exportfs()
/freebsd-12-stable/sys/contrib/dev/ath/ath_hal/ar9300/
Dar9300_xmit.c97 ar9300_set_tx_queue_props(struct ath_hal *ah, int q, const HAL_TXQ_INFO *q_info) in ar9300_set_tx_queue_props()
113 ar9300_get_tx_queue_props(struct ath_hal *ah, int q, HAL_TXQ_INFO *q_info) in ar9300_get_tx_queue_props()
143 int q; in ar9300_setup_tx_queue() local
248 ar9300_release_tx_queue(struct ath_hal *ah, u_int q) in ar9300_release_tx_queue()
283 ar9300_reset_tx_queue(struct ath_hal *ah, u_int q) in ar9300_reset_tx_queue()
538 ar9300_get_tx_dp(struct ath_hal *ah, u_int q) in ar9300_get_tx_dp()
548 ar9300_set_tx_dp(struct ath_hal *ah, u_int q, u_int32_t txdp) in ar9300_set_tx_dp()
563 ar9300_start_tx_dma(struct ath_hal *ah, u_int q) in ar9300_start_tx_dma()
573 ar9300_num_tx_pending(struct ath_hal *ah, u_int q) in ar9300_num_tx_pending()
609 ar9300_stop_tx_dma(struct ath_hal *ah, u_int q, u_int timeout) in ar9300_stop_tx_dma()
[all …]
/freebsd-12-stable/contrib/unbound/libunbound/
Dcontext.c121 context_query_delete(struct ctx_query* q) in context_query_delete()
150 struct ctx_query* q = (struct ctx_query*)calloc(1, sizeof(*q)); in context_new() local
230 context_serialize_new_query(struct ctx_query* q, uint32_t* len) in context_serialize_new_query()
255 struct ctx_query* q = (struct ctx_query*)calloc(1, sizeof(*q)); in context_deserialize_new_query() local
288 struct ctx_query* q; in context_lookup_new_query() local
304 context_serialize_answer(struct ctx_query* q, int err, sldns_buffer* pkt, in context_serialize_answer()
344 struct ctx_query* q = NULL ; in context_deserialize_answer() local
383 context_serialize_cancel(struct ctx_query* q, uint32_t* len) in context_serialize_cancel()
399 struct ctx_query* q; in context_deserialize_cancel() local
/freebsd-12-stable/sys/dev/neta/
Dif_mvneta.c439 size_t q; in mvneta_dma_create() local
554 int q, error; in mvneta_attach() local
839 int q; in mvneta_detach() local
984 int q; in mvneta_portup() local
1005 int q, cnt; in mvneta_portdown() local
1083 int q; in mvneta_initreg() local
1194 mvneta_ring_alloc_rx_queue(struct mvneta_softc *sc, int q) in mvneta_ring_alloc_rx_queue()
1240 mvneta_ring_alloc_tx_queue(struct mvneta_softc *sc, int q) in mvneta_ring_alloc_tx_queue()
1281 mvneta_ring_dealloc_tx_queue(struct mvneta_softc *sc, int q) in mvneta_ring_dealloc_tx_queue()
1341 mvneta_ring_dealloc_rx_queue(struct mvneta_softc *sc, int q) in mvneta_ring_dealloc_rx_queue()
[all …]
Dif_mvnetareg.h124 #define MVNETA_PRXC(q) (0x1400 + ((q) << 2)) /*Port RX queues Config*/ argument
125 #define MVNETA_PRXSNP(q) (0x1420 + ((q) << 2)) /* Port RX queues Snoop */ argument
126 #define MVNETA_PRXDQA(q) (0x1480 + ((q) << 2)) /*P RXqueues desc Q Addr*/ argument
127 #define MVNETA_PRXDQS(q) (0x14a0 + ((q) << 2)) /*P RXqueues desc Q Size*/ argument
128 #define MVNETA_PRXDQTH(q) (0x14c0 + ((q) << 2)) /*P RXqueues desc Q Thrs*/ argument
129 #define MVNETA_PRXS(q) (0x14e0 + ((q) << 2)) /*Port RX queues Status */ argument
130 #define MVNETA_PRXSU(q) (0x1500 + ((q) << 2)) /*P RXqueues Stat Update*/ argument
131 #define MVNETA_PRXDI(q) (0x1520 + ((q) << 2)) /*P RXqueues Stat Update*/ argument
144 #define MVNETA_PTXDQA(q) (0x3c00 + ((q) << 2)) /*P TXqueues desc Q Addr*/ argument
145 #define MVNETA_PTXDQS(q) (0x3c20 + ((q) << 2)) /*P TXqueues desc Q Size*/ argument
[all …]
/freebsd-12-stable/contrib/ntp/libparse/
Dparsesolaris.c284 queue_t *q, in setup_stream()
319 queue_t *q, in parseopen()
409 queue_t *q, in parseclose()
443 queue_t *q in parsersvc()
472 queue_t *q, in parsewput()
616 queue_t *q, in parserput()
779 queue_t *q in init_linemon()
825 queue_t *q, in close_linemon()
872 queue_t *q, in init_zs_linemon()
942 queue_t *q, in close_zs_linemon()
[all …]
Dparsestreams.c440 queue_t *q, in setup_stream()
471 queue_t *q, in parseopen()
566 queue_t *q, in parseclose()
601 queue_t *q in parsersvc()
630 queue_t *q, in parsewput()
773 queue_t *q, in parserput()
929 register queue_t *q in init_linemon()
975 register queue_t *q, in close_linemon()
1018 register queue_t *q, in init_zs_linemon()
1084 register queue_t *q, in close_zs_linemon()
[all …]
/freebsd-12-stable/sys/netpfil/ipfw/
Ddn_sched_qfq.c264 static inline struct qfq_group *qfq_ffs(struct qfq_sched *q, in qfq_ffs()
305 struct qfq_sched *q = (struct qfq_sched *)(_q->_si + 1); in qfq_new_queue() local
336 struct qfq_sched *q = (struct qfq_sched *)(_q->_si + 1); in qfq_free_queue() local
360 qfq_calc_state(struct qfq_sched *q, struct qfq_group *grp) in qfq_calc_state()
383 qfq_move_groups(struct qfq_sched *q, unsigned long mask, int src, int dst) in qfq_move_groups()
390 qfq_unblock_groups(struct qfq_sched *q, int index, uint64_t old_finish) in qfq_unblock_groups()
417 qfq_make_eligible(struct qfq_sched *q, uint64_t old_V) in qfq_make_eligible()
494 qfq_slot_rotate(struct qfq_sched *q, struct qfq_group *grp, uint64_t roundedS) in qfq_slot_rotate()
505 qfq_update_eligible(struct qfq_sched *q, uint64_t old_V) in qfq_update_eligible()
525 qfq_update_class(struct qfq_sched *q, struct qfq_group *grp, in qfq_update_class()
[all …]
Ddn_sched_fifo.c66 fifo_enqueue(struct dn_sch_inst *si, struct dn_queue *q, struct mbuf *m) in fifo_enqueue()
86 struct dn_queue *q = (struct dn_queue *)(si + 1); in fifo_new_sched() local
97 struct dn_queue *q = (struct dn_queue *)(si + 1); in fifo_free_sched() local
Ddn_sched_rr.c61 struct dn_queue q; /* Standard queue */ member
84 rr_append(struct rr_queue *q, struct rr_si *si) in rr_append()
119 remove_queue_q(struct rr_queue *q, struct rr_si *si) in remove_queue_q()
153 rr_enqueue(struct dn_sch_inst *_si, struct dn_queue *q, struct mbuf *m) in rr_enqueue()
260 struct rr_queue *q = (struct rr_queue *)_q; in rr_new_queue() local
285 struct rr_queue *q = (struct rr_queue *)_q; in rr_free_queue() local
Ddn_aqm_codel.c189 codel_extract_head(struct dn_queue *q, aqm_time_t *pkt_ts) in codel_extract_head()
221 aqm_codel_enqueue(struct dn_queue *q, struct mbuf *m) in aqm_codel_enqueue()
275 aqm_codel_dequeue(struct dn_queue *q) in aqm_codel_dequeue()
285 aqm_codel_init(struct dn_queue *q) in aqm_codel_init()
320 aqm_codel_cleanup(struct dn_queue *q) in aqm_codel_cleanup()
/freebsd-12-stable/contrib/bearssl/src/symcipher/
Daes_ct_dec.c29 br_aes_ct_bitslice_invSbox(uint32_t *q) in br_aes_ct_bitslice_invSbox()
89 add_round_key(uint32_t *q, const uint32_t *sk) in add_round_key()
99 inv_shift_rows(uint32_t *q) in inv_shift_rows()
121 inv_mix_columns(uint32_t *q) in inv_mix_columns()
156 const uint32_t *skey, uint32_t *q) in br_aes_ct_bitslice_decrypt()
Daes_ct64_dec.c29 br_aes_ct64_bitslice_invSbox(uint64_t *q) in br_aes_ct64_bitslice_invSbox()
75 add_round_key(uint64_t *q, const uint64_t *sk) in add_round_key()
85 inv_shift_rows(uint64_t *q) in inv_shift_rows()
110 inv_mix_columns(uint64_t *q) in inv_mix_columns()
145 const uint64_t *skey, uint64_t *q) in br_aes_ct64_bitslice_decrypt()
Daes_ct64_enc.c28 add_round_key(uint64_t *q, const uint64_t *sk) in add_round_key()
41 shift_rows(uint64_t *q) in shift_rows()
66 mix_columns(uint64_t *q) in mix_columns()
101 const uint64_t *skey, uint64_t *q) in br_aes_ct64_bitslice_encrypt()
Daes_ct_enc.c28 add_round_key(uint32_t *q, const uint32_t *sk) in add_round_key()
41 shift_rows(uint32_t *q) in shift_rows()
63 mix_columns(uint32_t *q) in mix_columns()
98 const uint32_t *skey, uint32_t *q) in br_aes_ct_bitslice_encrypt()
/freebsd-12-stable/contrib/jemalloc/include/jemalloc/internal/
Djemalloc_internal_macros.h17 #define QU(q) ((uint64_t)q) argument
18 #define QD(q) ((int64_t)q) argument
22 #define KQU(q) QU(q##ULL) argument
23 #define KQD(q) QI(q##LL) argument
/freebsd-12-stable/lib/msun/tests/
Drem_test.c113 int q; in test_invalid() local
146 int q; in testl() local
168 int q; in testd() local
190 int q; in testf() local

12345678910>>...40