HomeSort by relevance Sort by last modified time
    Searched refs:tb (Results 1 - 25 of 64) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/uts/common/io/xge/hal/include/
xge-os-pal.h 67 #define __xge_trace(tb) { \
68 int msgsize = xge_os_strlen(tb->msg) + 2; \
69 int offset = tb->offset; \
70 if (msgsize != 2 && msgsize < tb->msgbuf_max) { \
71 int leftsize = tb->size - offset; \
72 if ((msgsize + tb->msgbuf_max) > leftsize) { \
73 xge_os_memzero(tb->data + offset, leftsize); \
75 tb->wrapped_once = 1; \
77 xge_os_memcpy(tb->data + offset, tb->msg, msgsize-1);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/acct/
acctdisk.c 42 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);
acctcon2.c 43 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);
acctprc2.c 46 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), 1, stdout)
    [all...]
acctprc.c 51 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), 1, stdout)
    [all...]
acctmerg.c 56 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];
acctcon.c 57 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);
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/x2p/
hash.h 45 bool hdelete (HASH *tb, char *key);
46 STR * hfetch ( HASH *tb, char *key );
47 int hiterinit ( HASH *tb );
49 HENT * hiternext ( HASH *tb );
52 void hsplit ( HASH *tb );
53 bool hstore ( HASH *tb, char *key, STR *val );
hash.c 22 hfetch(register HASH *tb, char *key)
29 if (!tb)
36 entry = tb->tbl_array[hash & tb->tbl_max];
48 hstore(register HASH *tb, char *key, STR *val)
56 if (!tb)
64 oentry = &(tb->tbl_array[hash & tb->tbl_max]);
87 tb->tbl_fill++;
88 if ((tb->tbl_fill * 100 / (tb->tbl_max + 1)) > FILLPCT
173 register HASH *tb = (HASH*)safemalloc(sizeof(HASH)); local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/nfs/dfmounts/
dfmounts.c 121 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)->ml_directory) == '\0' |
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fs.d/nfs/showmount/
showmount.c 79 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 = table; tb < table + numentries; tb++)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Simple/t/
undef.t 50 my $tb = Test::More->builder;
54 my $old_fail = $tb->failure_output;
55 $tb->failure_output(\*CATCH);
57 $tb->failure_output($old_fail);
  /onnv/onnv-gate/usr/src/cmd/calendar/
calprog.c 223 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 - 1) == '0'
    [all...]
  /onnv/onnv-gate/usr/src/cmd/refer/
refer7.c 76 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);
  /onnv/onnv-gate/usr/src/lib/libast/common/comp/
iconv.c 260 _win_iconv(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn)
281 memcpy(*tb, *fb, fz);
294 if ((tz = MultiByteToWideChar(cc->from.index, 0, (LPCSTR)*fb, (int)*fn, (LPWSTR)*tb, *tn)) && tz <= *tn)
311 while (!(tz = MultiByteToWideChar(cc->from.index, 0, (LPCSTR)*fb, (int)fz, (LPWSTR)*tb, 0)))
340 else if (!(un = MultiByteToWideChar(cc->from.index, 0, (LPCSTR)*fb, (int)*fn, (LPWSTR)*tb, 0)))
351 if (tz = WideCharToMultiByte(cc->to.index, 0, (LPCWSTR)ub, un, *tb, *tn, 0, 0))
368 if (!(tz = WideCharToMultiByte(cc->to.index, 0, (LPCWSTR)ub, fz, *tb, 0, 0, 0)))
386 if (!(tz = WideCharToMultiByte(cc->to.index, 0, (LPCWSTR)ub, fz, *tb, tz, 0, 0)))
401 *tb += tz;
531 utf2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn
1342 char* tb; local
1399 char* tb; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libresolv2/common/nameser/
ns_samedomain.c 196 char ta[NS_MAXDNAME], tb[NS_MAXDNAME]; local
199 ns_makecanon(b, tb, sizeof tb) < 0)
201 if (strcasecmp(ta, tb) == 0)
  /onnv/onnv-gate/usr/src/lib/libast/common/string/
base64.c 51 base64encode(const void* fb, size_t fz, void** fn, void* tb, size_t tz, void** tn)
71 if (tp = (unsigned char*)tb)
99 n = tp - (unsigned char*)tb + 1;
134 if (tp > (unsigned char*)tb && *(tp - 1) == '\n')
138 n = tp - (unsigned char*)tb;
152 base64decode(const void* fb, size_t fz, void** fn, void* tb, size_t tz, void** tn)
176 if (tp = (unsigned char*)tb)
207 n = tp - (unsigned char*)tb + 4;
249 n = tp - (unsigned char*)tb + 2;
264 n = tp - (unsigned char*)tb + 2
    [all...]
  /onnv/onnv-gate/usr/src/lib/libresolv2/common/irs/
irpmarshall.c 241 char *tb = &tmpbuf[0]; local
262 tb = tmpbuf;
263 if (getfield(&tb, sizeof tmpbuf, &p, fieldsep) == NULL ||
264 strlen(tb) == 0) {
267 t = strtol(tmpbuf, &tb, 10);
268 if (*tb) {
279 tb = tmpbuf;
280 if (getfield(&tb, sizeof tmpbuf, &p, fieldsep) == NULL ||
281 strlen(tb) == 0) {
284 t = strtol(tmpbuf, &tb, 10)
485 char *tb; local
651 char *tb; local
804 char *tb; local
1002 char *tb; local
1388 char *tb; local
1562 char *tb; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sh/
io.c 101 pushtemp(int fd, struct tempblk *tb)
103 tb->fdes = fd;
104 tb->fstak = tmpfptr;
105 tmpfptr = tb;
181 tmpfil(struct tempblk *tb)
205 pushtemp(fd, tb);
234 struct tempblk tb; local
240 fd = tmpfil(&tb);
  /onnv/onnv-gate/usr/src/lib/libnsl/yp/
yp_bind.c 551 CLIENT *tb = NULL; local
614 tb = __clnt_create_loopback(YPBINDPROG, YPBINDVERS, &err);
615 if (tb == NULL) {
628 ypbind_resp = ypbindproc_domain_3(&ypbd, tb);
635 clnt_perror(tb,
637 clnt_destroy(tb);
638 tb = NULL;
649 clnt_destroy(tb);
650 tb = NULL;
653 clnt_destroy(tb);
720 CLIENT *tb = NULL; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/client/
ConfigureRelayDialog.java 72 Border tb = BorderFactory.createTitledBorder( local
75 serverList.setBorder(BorderFactory.createCompoundBorder(tb,
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
parseMode.cxx 298 TrieBuilder tb(partition.maxCode() + 1);
305 tb.recognizeEE(partition.eECode(), tokenEe);
314 tb.recognize(delimCodes[ti.delim1], ti.token,
322 tb.recognize(str, ti.token, ti.priority, ambiguities);
328 tb.recognize(delimCodes[ti.delim1], setCodes[ti.set],
332 tb.recognize(emptyString, setCodes[ti.set], ti.token,
341 tb.recognize(functionCode[ti.function], ti.token,
352 tb.recognizeB(p->chars, p->bSequenceLength,
358 tb.recognize(p->chars, tokenFirstShortref + j,
377 tb.recognize(code, tokenCharDelim, Priority::dataDelim, ambiguities)
    [all...]
  /onnv/onnv-gate/usr/src/lib/storage/libg_fc/common/hdrs/
g_scsi.h 111 tb : 1, /* transfer block */ member in struct:mode_page_01_struct
117 tb : 1, /* transfer block */ member in struct:mode_page_01_struct
  /onnv/onnv-gate/usr/src/uts/common/sys/scsi/impl/
mode.h 81 tb : 1, /* transfer block */ member in struct:mode_err_recov_ccs
87 tb : 1, /* transfer block */ member in struct:mode_err_recov_ccs
  /onnv/onnv-gate/usr/src/cmd/tbl/
Makefile 35 t8.c t9.c tb.c tc.c te.c tf.c tg.c ti.c \

Completed in 5341 milliseconds

1 2 3