Searched refs:tb (Results 1 - 21 of 21) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/x2p/
H A Dhash.h45 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 );
H A Dhash.c22 hfetch(register HASH *tb, char *key) argument
29 if (!tb)
36 entry = tb->tbl_array[hash & tb->tbl_max];
48 hstore(register HASH *tb, char *key, STR *val) argument
56 if (!tb)
64 oentry = &(tb->tbl_array[hash & tb->tbl_max]);
87 tb->tbl_fill++;
88 if ((tb
97 hdelete(register HASH *tb, char *key) argument
134 hsplit(HASH *tb) argument
173 register HASH *tb = (HASH*)safemalloc(sizeof(HASH)); local
184 hshow(register HASH *tb) argument
194 hiterinit(register HASH *tb) argument
202 hiternext(register HASH *tb) argument
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Simple/t/
H A Dundef.t50 my $tb = Test::More->builder;
54 my $old_fail = $tb->failure_output;
55 $tb->failure_output(\*CATCH);
57 $tb->failure_output($old_fail);
/osnet-11/usr/src/lib/libast/common/comp/
H A Diconv.c260 _win_iconv(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
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_ argument
605 bin2utf(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
715 ume2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
791 bin2ume(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
865 ucs2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
910 bin2ucs(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
956 scu2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
1001 bin2scu(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
1235 _ast_iconv(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
1345 char* tb; local
1441 char* tb; local
[all...]
H A Domitted.c671 char tb[PATH_MAX]; local
676 if (execrate(tp, tb, sizeof(tb), 1))
677 tp = tb;
805 char tb[PATH_MAX]; local
810 if (execrate(tp, tb, sizeof(tb), 1))
811 tp = tb;
/osnet-11/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...]
/osnet-11/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)
/osnet-11/usr/src/lib/libresolv2/common/irs/
H A Dirpmarshall.c241 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, 1
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...]
/osnet-11/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...]
/osnet-11/usr/src/lib/storage/libg_fc/common/hdrs/
H A Dg_scsi.h110 tb : 1, /* transfer block */ member in struct:mode_page_01_struct
116 tb : 1, /* transfer block */ member in struct:mode_page_01_struct
/osnet-11/usr/src/lib/rad/pyrad/common/
H A Drecordmarking.py40 def __exit__(self, type, value, tb):
H A Dutil.py61 def __exit__(self, type, value, tb):
103 def __exit__(self, type, value, tb):
H A Dclient.py1128 def __exit__(self, type, value, tb):
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dmft.c566 u8 b, tb; local
600 tb = 1 << (lcn & 7ull);
601 if (ret == 1 && b != 0xff && !(b & tb)) {
603 b |= tb;
/osnet-11/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DOption.java183 tb(int n) method in class:Option
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Locale/
H A DScript.pm278 tb:tbw:373:Tagbanwa
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dproto.h259 PERL_CALLCONV void Perl_hv_clear(pTHX_ HV* tb);
261 PERL_CALLCONV SV* Perl_hv_delete(pTHX_ HV* tb, const char* key, I32 klen, I32 flags);
262 PERL_CALLCONV SV* Perl_hv_delete_ent(pTHX_ HV* tb, SV* key, I32 flags, U32 hash);
263 PERL_CALLCONV bool Perl_hv_exists(pTHX_ HV* tb, const char* key, I32 klen);
264 PERL_CALLCONV bool Perl_hv_exists_ent(pTHX_ HV* tb, SV* key, U32 hash);
265 PERL_CALLCONV SV** Perl_hv_fetch(pTHX_ HV* tb, const char* key, I32 klen, I32 lval);
266 PERL_CALLCONV HE* Perl_hv_fetch_ent(pTHX_ HV* tb, SV* key, I32 lval, U32 hash);
268 PERL_CALLCONV I32 Perl_hv_iterinit(pTHX_ HV* tb);
271 PERL_CALLCONV HE* Perl_hv_iternext(pTHX_ HV* tb);
273 PERL_CALLCONV HE* Perl_hv_iternext_flags(pTHX_ HV* tb, I3
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dsendto_kdc.c567 struct _timeb tb; local
568 _ftime(&tb);
569 tvp->tv_sec = tb.time;
570 tvp->tv_usec = tb.millitm * 1000;
/osnet-11/usr/src/lib/libc/port/gen/
H A Dlocaltime.c1947 const ttinfo_t *ta, *tb; local
1953 tb = &sp->ttis[b];
1954 if (ta->tt_gmtoff == tb->tt_gmtoff &&
1955 ta->tt_isdst == tb->tt_isdst &&
1956 ta->tt_ttisstd == tb->tt_ttisstd &&
1957 ta->tt_ttisgmt == tb->tt_ttisgmt) {
1959 &sp->chars[tb->tt_abbrind]) == 0)
/osnet-11/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c3072 inflate_huft *tb; /* bit length decoding tree */ member in struct:inflate_blocks_state::__anon13::__anon14
3391 &s->sub.trees.tb, z);
3411 h = s->sub.trees.tb + ((uInt)b & inflate_mask[t]);
3444 inflate_trees_free(s->sub.trees.tb, z);
3445 s->sub.trees.tb = Z_NULL;
3894 local int inflate_trees_bits(c, bb, tb, z)
3897 inflate_huft * FAR *tb; /* bits tree result */
3902 r = huft_build(c, 19, 19, (uIntf*)Z_NULL, (uIntf*)Z_NULL, tb, bb, z);
3907 inflate_trees_free(*tb, z);
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dxec.c2379 struct timeval tb,ta; local
2404 timeofday(&tb);
2427 at = shp->gd->lim.clk_tck*(ta.tv_sec-tb.tv_sec);
2428 at += ((shp->gd->lim.clk_tck*(((1000000L/2)/shp->gd->lim.clk_tck)+(ta.tv_usec-tb.tv_usec)))/1000000L);

Completed in 93 milliseconds