HomeSort by: relevance | last modified time | path
    Searched refs:tq (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/external/cddl/osnet/dist/lib/libzpool/common/
taskq.c 59 task_alloc(taskq_t *tq, int tqflags)
64 again: if ((t = tq->tq_freelist) != NULL && tq->tq_nalloc >= tq->tq_minalloc) {
65 tq->tq_freelist = t->tqent_next;
67 if (tq->tq_nalloc >= tq->tq_maxalloc) {
81 tq->tq_maxalloc_wait++;
82 rv = cv_timedwait(&tq->tq_maxalloc_cv,
83 &tq->tq_lock, ddi_get_lbolt() + hz)
193 taskq_t *tq = arg; local
232 taskq_t *tq = kmem_zalloc(sizeof (taskq_t), KM_SLEEP); local
    [all...]
  /src/external/cddl/osnet/sys/kern/
taskq.c 76 taskq_t *tq = state->te_self; local
81 lwp_setspecific(taskq_lwp_key, tq);
83 mutex_enter(&tq->tq_lock);
84 while (!tq->tq_destroyed) {
85 if (SIMPLEQ_EMPTY(&tq->tq_list)) {
86 if (ISSET(tq->tq_flags, TASKQ_DYNAMIC))
88 tq->tq_waiting++;
89 error = cv_timedwait(&tq->tq_cv, &tq->tq_lock,
91 tq->tq_waiting--
261 taskq_t *tq; local
    [all...]
  /src/external/bsd/zstd/dist/tests/cli-tests/file-stat/
compress-file-to-stdout.sh 8 zstd -tq file.zst
compress-stdin-to-file.sh 8 zstd -tq file.zst
compress-stdin-to-stdout.sh 8 zstd -tq file.zst
compress-file-to-file.sh 9 zstd -tq file.zst
compress-file-to-dir-without-write-perm.sh 10 zstd -tq out/file.zst
  /src/sys/external/bsd/common/linux/
linux_tasklet.c 140 * tasklet_queue_init(tq, prio)
142 * Initialize the tasklet queue tq for running tasklets at softint
146 tasklet_queue_init(struct tasklet_queue *tq, unsigned prio)
151 tq->tq_percpu = percpu_create(sizeof(struct tasklet_cpu),
153 KASSERT(tq->tq_percpu != NULL);
156 tq->tq_sih = softint_establish(prio|SOFTINT_MPSAFE, &tasklet_softintr,
157 tq);
158 if (tq->tq_sih == NULL) {
167 softint_disestablish(tq->tq_sih);
168 tq->tq_sih = NULL
201 struct tasklet_queue *const tq = cookie; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgfortran/io/
async.c 267 transfer_queue *tq = calloc (sizeof (transfer_queue), 1); local
268 tq->arg = *arg;
269 tq->type = type;
270 tq->has_id = 0;
273 au->head = tq;
275 au->tail->next = tq;
276 au->tail = tq;
289 transfer_queue *tq = calloc (sizeof (transfer_queue), 1); local
291 tq->type = type;
292 tq->has_id = 1
313 transfer_queue *tq = calloc (sizeof (transfer_queue), 1); local
333 transfer_queue *tq = calloc (sizeof (transfer_queue), 1); local
355 transfer_queue *tq = xmalloc (sizeof (transfer_queue)); local
    [all...]
  /src/external/bsd/nvi/dist/ex/
ex_tag.c 192 if ((tqp = TAILQ_FIRST(&exp->tq)) == NULL) {
232 if ((tqp = TAILQ_FIRST(&exp->tq)) == NULL) {
364 if (TAILQ_EMPTY(&exp->tq)) {
372 dtqp = TAILQ_FIRST(&exp->tq);
384 TAILQ_FOREACH(tqp, &exp->tq, q)
398 for (tqp = TAILQ_FIRST(&exp->tq);
402 if (tqp == TAILQ_FIRST(&exp->tq))
440 if (TAILQ_EMPTY(&exp->tq)) {
446 tqp = TAILQ_LAST(&exp->tq, _tqh);
487 tqp = TAILQ_FIRST(&exp->tq);
    [all...]
ex.h 164 TAILQ_HEAD(_tqh, _tagq) tq; /* Tag queue. */ member in struct:_ex_private
ex_cscope.c 472 if (TAILQ_EMPTY(&exp->tq)) {
544 if (TAILQ_EMPTY(&exp->tq)) {
545 TAILQ_INSERT_HEAD(&exp->tq, rtqp, q);
549 rtqp = TAILQ_FIRST(&exp->tq);
553 TAILQ_INSERT_HEAD(&exp->tq, tqp, q);
ex_init.c 60 TAILQ_INIT(&nexp->tq);
  /src/libexec/ftpd/
cmds.c 852 char tq[MAXPATHLEN + 1] = ""; local
887 sz2 = readlink(tp, tq, MAXPATHLEN);
904 tq[sz2] = 0;
905 sz2 = strlen(tq);
906 if (tq[sz2 - 1] == '/')
907 tq[--sz2] = 0;
912 if (tq[0] == '/') {
917 memcpy(tp, tq, sz2);
927 (void)memcpy(cq + 1, tq, sz2);
  /src/sbin/canconfig/
canconfig.c 389 uint32_t tq, ntq, bps; local
390 tq = ((uint64_t)clt.clt_brp * (uint64_t)1000000000) /
394 1 + clt.clt_prop + clt.clt_ps1 + clt.clt_ps2, tq);
395 bps = 1000000000 / (tq * ntq);
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/
i915_gem_context.c 655 struct i915_request *tq[5] = {}; local
713 err = throttle(ce, tq, ARRAY_SIZE(tq));
748 throttle_release(tq, ARRAY_SIZE(tq));
765 struct i915_request *tq[5] = {}; local
851 err = throttle(ce, tq, ARRAY_SIZE(tq));
887 throttle_release(tq, ARRAY_SIZE(tq));
1352 struct i915_request *tq[5] = {}; local
    [all...]
  /src/usr.bin/xlint/lint1/
debug.c 345 type_qualifiers_string(type_qualifiers tq)
350 tq.tq_const ? " const" : "",
351 tq.tq_restrict ? " restrict" : "",
352 tq.tq_volatile ? " volatile" : "",
353 tq.tq_atomic ? " atomic" : "");
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_libdispatch_mac.cc 78 dispatch_queue_t tq = *( local
80 return tq;
84 dispatch_queue_t tq = GetTargetQueueFromQueue((dispatch_queue_t)source); local
85 CHECK_NE(tq, 0);
86 return tq;
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_interceptors_libdispatch.cpp 70 dispatch_queue_t tq = *( local
72 return tq;
76 dispatch_queue_t tq = GetTargetQueueFromQueue((dispatch_queue_t)source); local
77 CHECK_NE(tq, 0);
78 return tq;
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
dmu_objset.c 1846 taskq_t *tq = NULL; local
1885 tq = taskq_create("dmu_objset_find", ntasks, minclsyspri, ntasks,
1887 if (tq == NULL) {
1893 dcp->dc_tq = tq;
1896 (void) taskq_dispatch(tq, dmu_objset_find_dp_cb, dcp, TQ_SLEEP);
1907 taskq_wait(tq);
1908 taskq_destroy(tq);
  /src/external/bsd/wpa/dist/src/tls/
libtommath.c 1603 mp_int ta, tb, tq, q; local
1625 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL)) != MP_OKAY) {
1630 mp_set(&tq, 1);
1635 ((res = mp_mul_2d(&tq, n, &tq)) != MP_OKAY)) {
1642 ((res = mp_add(&q, &tq, &q)) != MP_OKAY)) {
1647 ((res = mp_div_2d(&tq, 1, &tq, NULL)) != MP_OKAY)) {
1664 mp_clear_multi(&ta, &tb, &tq, &q, NULL);
  /src/usr.sbin/mtrace/
mtrace.c 394 struct timeval tq, tr, tv; local
453 gettimeofday(&tq, 0);
463 tv.tv_sec = tq.tv_sec + timeout - tv.tv_sec;
464 tv.tv_usec = tq.tv_usec - tv.tv_usec;
595 save->qtime = ((tq.tv_sec + JAN_1970) << 16) +
596 (tq.tv_usec << 10) / 15625;
  /src/sys/kern/
tty.c 1288 struct clist tq; local
1291 tq = tp->t_rawq;
1293 tp->t_canq = tq;
1942 struct clist tq; local
1949 tq = tp->t_rawq;
1952 while ((c = getc(&tq)) >= 0)
  /src/external/gpl3/gcc.old/dist/libgcc/
fixed-bit.h 40 Fract: QQ, UQQ, HQ, UHQ, SQ, USQ, DQ, UDQ, TQ, UTQ
112 typedef _Fract TQtype __attribute__ ((mode (TQ)));
275 #define MODE_NAME TQ
276 #define MODE_NAME_S tq
706 #define FROM_MODE_NAME TQ
707 #define FROM_MODE_NAME_S tq
968 #define TO_MODE_NAME TQ
969 #define TO_MODE_NAME_S tq
  /src/external/cddl/osnet/dist/lib/libzpool/common/sys/
zfs_context.h 435 #define taskq_dispatch_safe(tq, func, arg, flags, task) \
436 taskq_dispatch((tq), (func), (arg), (flags))

Completed in 73 milliseconds

1 2