Searched refs:dq (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-11-stable/contrib/unbound/iterator/
H A Diter_donotq.c54 struct iter_donotq* dq = (struct iter_donotq*)calloc(1, local
56 if(!dq)
58 dq->region = regional_create();
59 if(!dq->region) {
60 donotq_delete(dq);
63 return dq;
67 donotq_delete(struct iter_donotq* dq) argument
69 if(!dq)
71 regional_destroy(dq->region);
72 free(dq);
77 donotq_insert(struct iter_donotq* dq, struct sockaddr_storage* addr, socklen_t addrlen, int net) argument
92 donotq_str_cfg(struct iter_donotq* dq, const char* str) argument
111 read_donotq(struct iter_donotq* dq, struct config_file* cfg) argument
123 donotq_apply_cfg(struct iter_donotq* dq, struct config_file* cfg) argument
[all...]
/freebsd-11-stable/sys/ufs/ufs/
H A Dufs_quota.c155 struct dquot *dq; local
180 if ((dq = ip->i_dquot[i]) == NODQUOT)
182 DQI_LOCK(dq);
183 DQI_WAIT(dq, PINOD+1, "chkdq1");
184 ncurblocks = dq->dq_curblocks + change;
186 dq->dq_curblocks = ncurblocks;
188 dq->dq_curblocks = 0;
189 dq->dq_flags &= ~DQ_BLKS;
190 dq->dq_flags |= DQ_MOD;
191 DQI_UNLOCK(dq);
255 struct dquot *dq = ip->i_dquot[type]; local
309 struct dquot *dq; local
392 struct dquot *dq = ip->i_dquot[type]; local
496 struct dquot *dq; local
652 struct dquot *dq; local
801 struct dquot *dq; local
842 struct dquot *dq; local
905 struct dquot *dq; local
1065 struct dquot *dq; local
1112 struct dquot *dq; local
1181 struct dquot *dq; local
1195 struct dquot *dq; local
1277 struct dquot *dq, *dq1; local
1494 dqref(struct dquot *dq) argument
1505 dqrele(struct vnode *vp, struct dquot *dq) argument
1548 dqsync(struct vnode *vp, struct dquot *dq) argument
1646 struct dquot *dq, *nextdq; local
1689 struct dquot *dq; local
1724 struct dquot *dq; local
1744 struct dquot *dq; local
1786 dqb32_dq(const struct dqblk32 *dqb32, struct dquot *dq) argument
1803 dqb64_dq(const struct dqblk64 *dqb64, struct dquot *dq) argument
1820 dq_dqb32(const struct dquot *dq, struct dqblk32 *dqb32) argument
1837 dq_dqb64(const struct dquot *dq, struct dqblk64 *dqb64) argument
[all...]
H A Dquota.h196 #define DQREF(dq) dqref(dq)
198 #define DQREF(dq) (dq)->dq_cnt++
201 #define DQI_LOCK(dq) mtx_lock(&(dq)->dq_lock)
202 #define DQI_UNLOCK(dq) mtx_unlock(&(dq)->dq_lock)
204 #define DQI_WAIT(dq, prio, msg) do { \
205 while ((dq)
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_mac.cpp111 INTERCEPTOR(void, dispatch_x_f, dispatch_queue_t dq, void *ctxt, \
114 return REAL(dispatch_x_f)(dq, (void *)lsan_ctxt, \
122 INTERCEPTOR(void, dispatch_after_f, dispatch_time_t when, dispatch_queue_t dq, argument
125 return REAL(dispatch_after_f)(when, dq, (void *)lsan_ctxt,
130 dispatch_queue_t dq, void *ctxt, dispatch_function_t func) {
133 (group, dq, (void *)lsan_ctxt, lsan_dispatch_call_block_and_release);
138 void dispatch_async(dispatch_queue_t dq, void (^work)(void));
139 void dispatch_group_async(dispatch_group_t dg, dispatch_queue_t dq,
157 INTERCEPTOR(void, dispatch_async, dispatch_queue_t dq, void (^work)(void)) { argument
159 REAL(dispatch_async)(dq, lsan_bloc
129 INTERCEPTOR(void, dispatch_group_async_f, dispatch_group_t group, dispatch_queue_t dq, void *ctxt, dispatch_function_t func) argument
162 INTERCEPTOR(void, dispatch_group_async, dispatch_group_t dg, dispatch_queue_t dq, void (^work)(void)) argument
[all...]
/freebsd-11-stable/contrib/nvi/vi/
H A Dv_screen.c54 else if (TAILQ_FIRST(sp->gp->dq) == sp) {
58 sp->nextdisp = TAILQ_FIRST(sp->gp->dq);
H A Dvs_split.c305 TAILQ_FOREACH(tsp, gp->dq, q)
321 TAILQ_INSERT_TAIL(gp->dq, sp, q);
324 TAILQ_INSERT_AFTER(gp->dq, tsp, sp, q);
465 tsp = TAILQ_FIRST(gp->dq);
500 tsp = TAILQ_FIRST(gp->dq);
535 tsp = TAILQ_FIRST(gp->dq);
571 tsp = TAILQ_FIRST(gp->dq);
654 TAILQ_REMOVE(gp->dq, sp, q);
684 TAILQ_REMOVE(gp->dq, sp, q);
776 TAILQ_INSERT_AFTER(gp->dq, s
[all...]
H A Dvs_refresh.c83 TAILQ_FOREACH(tsp, gp->dq, q)
100 TAILQ_FOREACH(tsp, gp->dq, q)
135 TAILQ_FOREACH(tsp, gp->dq, q)
H A Dvi.c1009 (tsp = TAILQ_FIRST(gp->dq)) != NULL; ++hidden) {
1014 TAILQ_REMOVE(gp->dq, tsp, q);
1022 TAILQ_INSERT_TAIL(gp->dq, sp, q);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_mac.cpp226 INTERCEPTOR(void, dispatch_x_f, dispatch_queue_t dq, void *ctxt, \
235 return REAL(dispatch_x_f)(dq, (void*)asan_ctxt, \
244 dispatch_queue_t dq, void *ctxt,
252 return REAL(dispatch_after_f)(when, dq, (void*)asan_ctxt,
257 dispatch_queue_t dq, void *ctxt,
266 REAL(dispatch_group_async_f)(group, dq, (void*)asan_ctxt,
272 void dispatch_async(dispatch_queue_t dq, void(^work)(void));
273 void dispatch_group_async(dispatch_group_t dg, dispatch_queue_t dq,
292 dispatch_queue_t dq, void(^work)(void)) {
295 REAL(dispatch_async)(dq, asan_bloc
243 INTERCEPTOR(void, dispatch_after_f, dispatch_time_t when, dispatch_queue_t dq, void *ctxt, dispatch_function_t func) argument
256 INTERCEPTOR(void, dispatch_group_async_f, dispatch_group_t group, dispatch_queue_t dq, void *ctxt, dispatch_function_t func) argument
291 INTERCEPTOR(void, dispatch_async, dispatch_queue_t dq, void(^work)(void)) argument
298 INTERCEPTOR(void, dispatch_group_async, dispatch_group_t dg, dispatch_queue_t dq, void(^work)(void)) argument
[all...]
/freebsd-11-stable/etc/rc.d/
H A Dpf42 $pf_program -dq
/freebsd-11-stable/contrib/gcc/
H A Dtree-dump.c50 dump_queue_p dq; local
60 dq = di->free_list;
61 di->free_list = dq->next;
64 dq = XNEW (struct dump_queue);
70 dq->node = splay_tree_insert (di->nodes, (splay_tree_key) t,
74 dq->next = 0;
76 di->queue = dq;
78 di->queue_end->next = dq;
79 di->queue_end = dq;
227 dump_queue_p dq; local
709 dump_queue_p dq; local
[all...]
/freebsd-11-stable/contrib/amd/amd/
H A Dnfs_prot_svc.c119 char dq[20], dq2[28]; local
127 inet_dquad(dq, sizeof(dq), sinp->sin_addr.s_addr),
137 inet_dquad(dq, sizeof(dq), sinp->sin_addr.s_addr),
142 inet_dquad(dq, sizeof(dq), sinp->sin_addr.s_addr),
H A Drpc_fwd.c299 char dq[20]; local
303 inet_dquad(dq, sizeof(dq), fwdto->sin_addr.s_addr),
/freebsd-11-stable/contrib/nvi/common/
H A Dscreen.c150 TAILQ_REMOVE(sp->gp->dq, sp, q);
218 TAILQ_FOREACH(next, gp->dq, q)
228 TAILQ_INSERT_HEAD(gp->dq, next, q);
H A Dmain.c71 TAILQ_INIT(gp->dq);
233 TAILQ_INSERT_HEAD(gp->dq, sp, q);
237 TAILQ_INSERT_HEAD(gp->dq, sp, q);
445 while ((sp = TAILQ_FIRST(gp->dq)) != NULL)
H A Dgs.h61 TAILQ_HEAD(_dqh, _scr) dq[1]; /* Displayed screens. */ member in struct:_gs
H A Dkey.c764 TAILQ_FOREACH(sp, gp->dq, q)
/freebsd-11-stable/contrib/amd/conf/transp/
H A Dtransp_sockets.c56 char dq[20]; local
103 preferred_localhost, inet_dquad(dq, sizeof(dq), iap->s_addr));
/freebsd-11-stable/contrib/ntp/libparse/
H A Dparsesolaris.c782 register queue_t *dq; local
784 dq = WR(q);
793 while (dq->q_next)
795 dq = dq->q_next; /* skip down to driver */
801 if (dq->q_qinfo && dq->q_qinfo->qi_minfo)
803 register char *dname = dq->q_qinfo->qi_minfo->mi_idname;
810 return init_zs_linemon(dq, q);
H A Dparsestreams.c932 register queue_t *dq; local
934 dq = WR(q);
943 while (dq->q_next)
945 dq = dq->q_next; /* skip down to driver */
951 if (dq->q_qinfo && dq->q_qinfo->qi_minfo)
953 register char *dname = dq->q_qinfo->qi_minfo->mi_idname;
960 return init_zs_linemon(dq, q);
/freebsd-11-stable/usr.sbin/syslogd/
H A Dsyslogd.c3135 struct deadq_entry *dq, *dq0; local
3156 TAILQ_FOREACH_SAFE(dq, &deadq_head, dq_entries, dq0) {
3157 switch (dq->dq_timeout) {
3160 if (kill(dq->dq_pid, SIGKILL) != 0)
3161 (void)deadq_remove(dq);
3173 if (kill(dq->dq_pid, SIGTERM) != 0)
3174 (void)deadq_remove(dq);
3176 dq->dq_timeout--;
3179 dq->dq_timeout--;
3626 struct deadq_entry *dq; local
3655 deadq_remove(struct deadq_entry *dq) argument
3669 struct deadq_entry *dq; local
[all...]
/freebsd-11-stable/contrib/nvi/ex/
H A Dex_script.c389 TAILQ_FOREACH(sp, gp->dq, q)
408 TAILQ_FOREACH(sp, gp->dq, q)
621 TAILQ_FOREACH(sp, gp->dq, q)
/freebsd-11-stable/crypto/openssl/engines/
H A De_ubsec.c100 const BIGNUM *dq, const BIGNUM *qinv,
637 const BIGNUM *dq, const BIGNUM *qinv,
668 (unsigned char *)dq->d, BN_num_bits(dq),
635 ubsec_mod_exp_crt(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, const BIGNUM *q, const BIGNUM *dp, const BIGNUM *dq, const BIGNUM *qinv, BN_CTX *ctx) argument
/freebsd-11-stable/sys/dev/usb/template/
H A Dusb_template.c1063 struct usb_device_qualifier *dq; local
1068 dq = &udev->usb_template_ptr->udq;
1069 if (dq->bDescriptorType != UDESC_DEVICE_QUALIFIER) {
1073 return (dq);
/freebsd-11-stable/sys/contrib/ncsw/Peripherals/QM/
H A Dqman_low.h686 struct qm_dqrr_entry *dq,
689 uint8_t idx = DQRR_PTR2IDX(dq);
694 ASSERT_COND((dqrr->ring + idx) == dq);

Completed in 173 milliseconds

12