Home
last modified time | relevance | path

Searched refs:qn (Results 1 – 25 of 26) sorted by relevance

12

/titanic_41/usr/src/cmd/tnf/prex/
H A Dexpr.c88 queue_init(&new_p->qn); in expr()
116 while (expr_p = (expr_t *) queue_next(&list_p->qn, &expr_p->qn)) { in expr_dup()
121 (void) queue_append(&head_p->qn, &new_p->qn); in expr_dup()
138 while (expr_p = (expr_t *) queue_next(&list_p->qn, &list_p->qn)) { in expr_destroy()
139 (void) queue_remove(&expr_p->qn); in expr_destroy()
166 return ((expr_t *) queue_append(&h->qn, &f->qn)); in expr_list()
181 while ((expr_p = (expr_t *) queue_next(&list_p->qn, &expr_p->qn))) { in expr_print()
201 while ((expr_p = (expr_t *) queue_next(&list_p->qn, &expr_p->qn))) { in expr_match()
H A Dcmd.c76 queue_init(&new_p->qn); in cmd_set()
88 (void) queue_append(&g_cmdlist, &new_p->qn); in cmd_set()
108 queue_init(&new_p->qn); in cmd_expr()
115 (void) queue_append(&g_cmdlist, &new_p->qn); in cmd_expr()
132 if (!queue_isempty(&cmd_p->qn))
133 (void) queue_remove(&cmd_p->qn);
156 while ((cmd_p = (cmd_t *) queue_next(&g_cmdlist, &cmd_p->qn))) { in cmd_list()
206 while ((cmd_p = (cmd_t *) queue_next(&g_cmdlist, &cmd_p->qn))) { in cmd_traverse()
270 while ((cmd_p = (cmd_t *) queue_next(&g_cmdlist, &cmd_p->qn))) { in cmd_mark()
287 while ((cmd_p = (cmd_t *) queue_next(&g_cmdlist, &cmd_p->qn))) { in cmd_delete()
H A Dfcn.c77 queue_init(&new_p->qn); in fcn()
103 (void) queue_append(&g_fcnlist, &new_p->qn); in fcn()
126 if (!queue_isempty(&fcn_p->qn)) in fcn_destroy()
127 (void) queue_remove(&fcn_p->qn); in fcn_destroy()
149 while ((fcn_p = (fcn_t *) queue_next(&g_fcnlist, &fcn_p->qn))) { in fcn_list()
185 while ((fcn_p = (fcn_t *) queue_next(&g_fcnlist, &fcn_p->qn))) in fcn_findname()
207 while ((fcn_p = (fcn_t *) queue_next(&g_fcnlist, &fcn_p->qn))) in fcn_find()
H A Dset.c74 queue_init(&new_p->qn); in set()
79 (void) queue_append(&g_setlist, &new_p->qn); in set()
97 if (!queue_isempty(&set_p->qn)) in set_destroy()
98 (void) queue_remove(&set_p->qn); in set_destroy()
121 while ((set_p = (set_t *) queue_next(&g_setlist, &set_p->qn))) { in set_list()
175 while ((set_p = (set_t *) queue_next(&g_setlist, &set_p->qn))) in set_find()
H A Dspec.c71 queue_init(&new_p->qn); in spec()
114 while ((spec_p = (spec_t *) queue_next(&list_p->qn, &list_p->qn))) { in spec_destroy()
115 (void) queue_remove(&spec_p->qn); in spec_destroy()
142 return ((spec_t *) queue_append(&h->qn, &f->qn)); in spec_list()
157 while ((spec_p = (spec_t *) queue_next(&list_p->qn, &spec_p->qn))) { in spec_print()
H A Dsource.c52 queue_node_t qn; member
95 queue_init(&new_p->qn); in source_init()
101 (void) queue_prepend(&stack, &new_p->qn); in source_init()
143 queue_init(&new_p->qn); in source_file()
149 (void) queue_prepend(&stack, &new_p->qn); in source_file()
188 (void) queue_remove(&top->qn); in source_input()
H A Dlist.c313 while (spec_p = (spec_t *) queue_next(&speclist_p->qn, &spec_p->qn)) { in probescan()
543 queue_next(&speclist_p->qn, &spec_p->qn)) { in listprobe()
H A Dfcn.h46 queue_node_t qn; member
H A Dset.h50 queue_node_t qn; member
H A Dexpr.h49 queue_node_t qn; member
H A Dspec.h58 queue_node_t qn; member
H A Dcmd.h61 queue_node_t qn; member
/titanic_41/usr/src/cmd/refer/
H A Dmkey1.c45 char *name, qn[200]; in main() local
96 while (fgets(qn, 200, ff)) { in main()
97 trimnl(qn); in main()
98 f = fopen(qn, "r"); in main()
100 dofile(f, qn); in main()
102 fprintf(stderr, gettext("Can't read %s\n"), qn); in main()
/titanic_41/usr/src/lib/libm/common/C/
H A Dpow.c94 double f, s, z, qn, h, t; in log2_x() local
108 qn = one / (two + f); in log2_x()
109 s = f * qn; /* |s|<2**-6 */ in log2_x()
113 t = qn * (((f - two * h) - h * f1) - h * (f - f1)); in log2_x()
134 qn = one / (x + z); in log2_x()
136 s = f * qn; in log2_x()
138 t = qn * ((f - (h + h) * z) - h * f); in log2_x()
143 qn = h * A1_hi; in log2_x()
145 h = qn + s; in log2_x()
146 t += _TBL_log2_lo[j] - ((h - s) - qn); in log2_x()
/titanic_41/usr/src/lib/libm/common/Q/
H A Dpowl.c68 long double f, f1, v, s, z, qn, h, t; in logl_x() local
82 qn = one / (two + f); in logl_x()
83 s = f * qn; /* |s|<2**-6 */ in logl_x()
87 t = ((two * (f - h) - h * f1) - h * (f - f1)) * qn + in logl_x()
106 qn = one / (x + z); in logl_x()
108 s = f * qn; in logl_x()
111 t = qn * ((two * (f - z * h) - h * f1) - h * (f - f1)); in logl_x()
114 qn = (long double) n; in logl_x()
115 t += qn * ln2lo + _TBL_logl_lo[j]; in logl_x()
118 v = qn * ln2hi + _TBL_logl_hi[j]; in logl_x()
H A Dlogl.c108 long double f, s, z, qn, h, t; in logl() local
167 qn = (long double) n; in logl()
168 t = qn * ln2lo + _TBL_logl_lo[j]; in logl()
169 h = qn * ln2hi + _TBL_logl_hi[j]; in logl()
H A Dlog1pl.c143 long double f, s, z, qn, h, t, y, g; in log1pl() local
211 qn = (long double) n; in log1pl()
212 t = qn * ln2lo + _TBL_logl_lo[j]; in log1pl()
213 h = qn * ln2hi + _TBL_logl_hi[j]; in log1pl()
/titanic_41/usr/src/uts/common/sys/scsi/adapters/pmcs/
H A Dpmcs_iomb.h760 #define GET_OQ_ENTRY(hwp, qn, ix, o) \ argument
761 &hwp->oqp[qn][QI2O(ix, o, hwp->ioq_depth) >> 2]
763 #define STEP_OQ_ENTRY(hwp, qn, ix, n) ix = ADDQI(ix, n, hwp->ioq_depth) argument
765 #define SYNC_OQ_ENTRY(hwp, qn, ci, pi) \ argument
766 pmcs_wr_oqci(hwp, qn, ci); \
767 (hwp)->oqci[qn] = ci; \
768 (hwp)->oqpi[qn] = pi
/titanic_41/usr/src/lib/libslp/javalib/com/sun/slp/
H A DStreamListener.java89 int qn = config.getServerSocketQueueLength(); in StreamListener() local
95 qn, in StreamListener()
/titanic_41/usr/src/lib/libsqlite/tool/
H A Dspaceanal.tcl255 regsub ' $tbl '' qn
257 set n [mem eval "SELECT count(*) FROM space_used WHERE tblname='$qn'"]
259 subreport "Table $name and all its indices" "tblname='$qn'"
260 subreport "Table $name w/o any indices" "name='$qn'"
261 subreport "Indices of table $name" "tblname='$qn' AND is_index"
263 subreport "Table $name" "name='$qn'"
432 regsub ' $x(name) '' qn
434 puts -nonewline "'$qn','$qtn',"
/titanic_41/usr/src/cmd/dtrace/test/tst/common/dtraceUtil/
H A Dtst.ZeroNameProbes.d.ksh49 -qn BEGIN'{printf("I am done"); exit(0);}'
/titanic_41/usr/src/cmd/sendmail/src/
H A Dqueue.c6021 multiqueue_cache(basedir, blen, qg, qn, phash) in multiqueue_cache() argument
6025 int qn;
6072 return qn;
6082 return qn;
6092 return qn;
6106 return qn;
6132 return qn;
6172 if (qn == 0)
6190 return qn;
6232 return qn;
[all …]
/titanic_41/usr/src/lib/libpp/common/
H A Dppproto.c580 int qn = 0; in lex() local
738 qn = n; in lex()
758 while (qn > 0) in lex()
760 qn--; in lex()
774 while (qn > 0) in lex()
776 qn--; in lex()
/titanic_41/usr/src/lib/libc/port/threads/
H A Dsynch.c3926 int qn; in dump_queue_statistics() local
3935 for (qn = 0, qp = udp->queue_head; qn < QHASHSIZE; qn++, qp++) { in dump_queue_statistics()
3939 if (fprintf(stderr, "%5d %12llu%12u%12u\n", qn, in dump_queue_statistics()
3948 for (qn = 0; qn < QHASHSIZE; qn++, qp++) { in dump_queue_statistics()
3952 if (fprintf(stderr, "%5d %12llu%12u%12u\n", qn, in dump_queue_statistics()
/titanic_41/usr/src/lib/libast/common/misc/
H A Dmagic.c1914 int qn = 0; in load() local
1930 qn++; in load()
1936 qn++; in load()
1942 qn++; in load()
1947 if (qe == n && qn > 0) in load()
1948 qn--; in load()

12