Searched defs:tb (Results 1 - 25 of 52) sorted by relevance

123

/illumos-gate/usr/src/cmd/acct/
H A Dacctcon2.c43 struct tacct tb; variable in typeref:struct:tacct
48 tb.ta_sc = 1;
57 tb.ta_uid = cb.ct_uid;
58 CPYN(tb.ta_name, cb.ct_name);
59 tb.ta_con[0] = MINS(cb.ct_con[0]);
60 tb.ta_con[1] = MINS(cb.ct_con[1]);
61 fwrite(&tb, sizeof (tb), 1, stdout);
H A Dacctdisk.c42 struct tacct tb; variable in typeref:struct:tacct
50 tb.ta_dc = 1;
52 &tb.ta_uid,
54 &tb.ta_du)) == 3) {
56 CPYN(tb.ta_name, ntmp);
57 fwrite(&tb, sizeof (tb), 1, stdout);
H A Dacctmerg.c56 struct tacct tb[NFILE]; /* current record from each file */ variable in typeref:struct:tacct
121 prtacct(&tb[i]);
150 for (tp = tb; tp <= &tb[nfile]; tp++) {
175 getnext(tp-&tb[0]); /* get next one in same file */
176 while (tp <= &tb[nfile])
182 getnext(tp-&tb[0]);
222 tp = &tb[i];
H A Dacctprc2.c46 struct tacct tb; variable in typeref:struct:tacct
131 tb.ta_uid = (*(struct utab **)node)->ut_uid;
132 CPYN(tb.ta_name, (*(struct utab **)node)->ut_name);
133 tb.ta_cpu[0] = ((*(struct utab **)node)->ut_cpu[0]);
134 tb.ta_cpu[1] = ((*(struct utab **)node)->ut_cpu[1]);
135 tb.ta_kcore[0] = (*(struct utab **)node)->ut_kcore[0];
136 tb.ta_kcore[1] = (*(struct utab **)node)->ut_kcore[1];
137 tb.ta_pc = (*(struct utab **)node)->ut_pc;
138 fwrite(&tb, sizeof(tb),
[all...]
H A Dacctprc.c51 struct tacct tb; variable in typeref:struct:tacct
158 tb.ta_uid = (*(struct utab **)node)->ut_uid;
159 CPYN(tb.ta_name, (char *)uidtonam((*(struct utab **)node)->ut_uid));
160 tb.ta_cpu[0] = (*(struct utab **)node)->ut_cpu[0];
161 tb.ta_cpu[1] = (*(struct utab **)node)->ut_cpu[1];
162 tb.ta_kcore[0] = (*(struct utab **)node)->ut_kcore[0];
163 tb.ta_kcore[1] = (*(struct utab **)node)->ut_kcore[1];
164 tb.ta_pc = (*(struct utab **)node)->ut_pc;
165 fwrite(&tb, sizeof(tb),
[all...]
H A Dacctcon.c57 struct tacct tb; variable in typeref:struct:tacct
502 tb.ta_uid = (*(struct ctab **)node)->ct_uid;
503 CPYN(tb.ta_name, (*(struct ctab **)node)->ct_name);
504 tb.ta_con[0] = ((*(struct ctab **)node)->ct_con[0]) / 60.0;
505 tb.ta_con[1] = ((*(struct ctab **)node)->ct_con[1]) / 60.0;
506 tb.ta_sc = (*(struct ctab **)node)->ct_sess;
507 fwrite(&tb, sizeof (tb), 1, stdout);
/illumos-gate/usr/src/lib/libresolv2/common/nameser/
H A Dns_samedomain.c196 char ta[NS_MAXDNAME], tb[NS_MAXDNAME]; local
199 ns_makecanon(b, tb, sizeof tb) < 0)
201 if (strcasecmp(ta, tb) == 0)
/illumos-gate/usr/src/cmd/refer/
H A Drefer7.c76 char tb[20]; local
77 char *s = tb;
82 newr[atoi(tb)] = nr;
84 fprintf(stderr, "nr %d assigned to atoi(tb) %d\n",
85 nr, atoi(tb));
119 char tb[10]; local
120 char *s = tb;
129 finalrn = newr[atoi(tb)];
131 finalrn = atoi(tb);
/illumos-gate/usr/src/lib/libm/common/C/
H A Dlog.c158 double *tb, dn, dn1, s, z, r, w; local
201 tb = (double *)_TBL_log + (i + i + i);
202 s = (x - tb[0]) * tb[1];
203 return (tb[2] + ((B1 * s) * (B2 + s * (B3 + s))) *
213 tb = (double *)_TBL_log + (i + i + i);
214 s = (x - tb[0]) * tb[1];
215 dn = dn * LN2LO + tb[2];
H A Dlog10.c154 double *tb, dn, dn1, s, z, r, w; local
197 tb = (double *)_TBL_log + (i + i + i);
198 s = (x - tb[0]) * tb[1];
199 return (LGH * tb[2] - (LGL * tb[2] - ((B1 * s) *
210 tb = (double *)_TBL_log + (i + i + i);
211 s = (x - tb[0]) * tb[1];
212 dn = dn * LNALO + tb[
[all...]
H A Dlog2.c199 double *tb, s; local
201 tb = (double *) _TBL_log + (i + i + i);
204 s = (x - tb[0]) * tb[1];
205 return (LGH * tb[2] - (LGL * tb[2] - ((B1 * s) *
211 double *tb, dn, s; local
219 tb = (double *) _TBL_log + (i + i + i);
220 s = (x - tb[0]) * tb[
[all...]
/illumos-gate/usr/src/cmd/calendar/
H A Dcalprog.c223 char *tb, *ob; local
227 tb = timebuf;
229 while (*tb)
230 if (isspace(*tb)) {
231 ++tb;
245 if (isalpha(*tb)) {
247 *ob++ = toupper(*tb);
248 *ob++ = tolower(*tb++);
253 *ob++ = *tb++;
254 if (*(tb
[all...]
/illumos-gate/usr/src/cmd/fs.d/nfs/dfmounts/
H A Ddfmounts.c121 struct mountbody **tb, **endtb; local
175 tb = table;
176 for (; ml != NULL && tb < &table[NTABLEENTRIES]; ml = ml->ml_next)
177 *tb++ = ml;
178 if (ml != NULL && tb == &table[NTABLEENTRIES])
181 endtb = tb;
190 for (tb = table; tb < endtb; tb++) {
191 if (*((*tb)
[all...]
/illumos-gate/usr/src/cmd/fs.d/nfs/showmount/
H A Dshowmount.c79 struct mountbody **tb; /* pointer into table */ local
190 for (ml = result_list, tb = &table[0];
192 ml = ml->ml_next, tb++) {
193 *tb = ml;
205 for (tb = table; tb < table + numentries; tb++)
206 printf("%s:%s\n", (*tb)->ml_hostname,
207 (*tb)->ml_directory);
210 for (tb
[all...]
/illumos-gate/usr/src/lib/libast/common/string/
H A Dbase64.c51 base64encode(const void* fb, size_t fz, void** fn, void* tb, size_t tz, void** tn) argument
71 if (tp = (unsigned char*)tb)
99 n = tp - (unsigned char*)tb + 1;
128 n = tp - (unsigned char*)tb + 1;
144 if (tp > (unsigned char*)tb && *(tp - 1) == '\n')
148 n = tp - (unsigned char*)tb;
162 base64decode(const void* fb, size_t fz, void** fn, void* tb, size_t tz, void** tn) argument
186 if (tp = (unsigned char*)tb)
217 n = tp - (unsigned char*)tb + 4;
259 n = tp - (unsigned char*)tb
[all...]
/illumos-gate/usr/src/cmd/sh/
H A Dio.c101 pushtemp(int fd, struct tempblk *tb) argument
103 tb->fdes = fd;
104 tb->fstak = tmpfptr;
105 tmpfptr = tb;
181 tmpfil(struct tempblk *tb) argument
205 pushtemp(fd, tb);
234 struct tempblk tb; local
240 fd = tmpfil(&tb);
H A Dservice.c71 struct tempblk tb; local
73 subst(chkopen(ion, 0), (fd = tmpfil(&tb)));
/illumos-gate/usr/src/cmd/sort/common/
H A Dstreams.c584 void *tb = *buf; local
590 str->s_buffer = tb;
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DOption.java183 tb(int n) method in class:Option
/illumos-gate/usr/src/cmd/fs.d/ufs/fstyp/
H A Dfstyp.c457 long tb = 0; local
489 tb += dbtob(ep->nbno);
492 ebp->nbytes, tb);
/illumos-gate/usr/src/tools/ctf/dwarf/common/
H A Ddwarf_util.c509 struct Dwarf_Hash_Table_Entry_s *tb = &hash_table->tb_entries[hashnum]; local
511 abbrev = tb->at_head;
/illumos-gate/usr/src/uts/common/io/
H A Dbufmod.c312 struct timeval *tb; local
314 tb = (struct timeval *)mp->b_cont->b_rptr;
316 if (tb->tv_sec < 0 || tb->tv_usec < 0) {
320 ticks = TIMEVAL_TO_TICK(tb);
/illumos-gate/usr/src/uts/i86pc/i86hvm/io/
H A Dpv_cmdk.c128 int tb; local
147 tb = i + 1;
155 return (tb);
/illumos-gate/usr/src/uts/common/sys/scsi/impl/
H A Dmode.h81 tb : 1, /* transfer block */ member in struct:mode_err_recov_ccs
87 tb : 1, /* transfer block */ member in struct:mode_err_recov_ccs
/illumos-gate/usr/src/lib/libnsl/yp/
H A Dyp_bind.c546 CLIENT *tb = NULL; local
609 tb = __clnt_create_loopback(YPBINDPROG, YPBINDVERS, &err);
610 if (tb == NULL) {
623 ypbind_resp = ypbindproc_domain_3(&ypbd, tb);
630 clnt_perror(tb,
632 clnt_destroy(tb);
633 tb = NULL;
644 clnt_destroy(tb);
645 tb = NULL;
648 clnt_destroy(tb);
715 CLIENT *tb = NULL; local
[all...]

Completed in 98 milliseconds

123