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

/haiku-fatelf/src/bin/bash/lib/sh/
H A Drename.c45 struct stat fb, tb; local
50 if (stat (to, &tb) < 0)
57 if (fb.st_dev == tb.st_dev && fb.st_ino == tb.st_ino)
/haiku-fatelf/src/kits/network/libbind/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)
/haiku-fatelf/src/libs/print/libgutenprint/test/
H A Dpcl-unprint.c539 char tb[8]; local
548 tb[j] = (((buf[i] >> (7-j)) & 1));
549 tb[j] = output->output_depth - tb[j];
551 (void) fwrite(&tb[0], sizeof(char), 8, write_fd);
554 tb[j] = (((buf[wholebytes] >> (7-j)) & 1));
555 tb[j] = output->output_depth - tb[j];
557 (void) fwrite(&tb[0], sizeof(char), (size_t) crumbs, write_fd);
573 char tb[ local
[all...]
/haiku-fatelf/src/bin/unzip/
H A Dexplode.c133 static int explode_lit OF((__GPRO__ struct huft *tb, struct huft *tl,
250 static int explode_lit(__G__ tb, tl, td, bb, bl, bd, bdl)
252 struct huft *tb, *tl, *td; /* literal, length, and distance tables */ variable in typeref:struct:huft
286 DECODEHUFT(tb, bb, mb) /* get coded literal */
498 struct huft *tb; /* literal code table */ local
501 int bb; /* bits for tb */
542 if ((r = huft_build(__G__ l, 256, 256, NULL, NULL, &tb, &bb)) != 0)
545 huft_free(tb);
549 huft_free(tb);
556 huft_free(tb);
[all...]
H A Dtimezone.h65 int _isindst OF((struct tm *tb));
H A Dtimezone.c580 int _isindst(tb)
581 struct tm *tb;
594 localt = mkgmtime(tb);
/haiku-fatelf/src/bin/makeudfimage/
H A DStatistics.cpp26 const uint64 tb = 1024 * gb; // tera local
27 const uint64 pb = 1024 * tb; // peta
37 } else if (bytes >= tb) {
39 divisor = tb;
/haiku-fatelf/src/kits/network/libbind/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...]
/haiku-fatelf/src/bin/gdb/bfd/
H A Dconfigure11496 tb=
11507 a29kcoff_big_vec) tb="$tb coff-a29k.lo cofflink.lo" ;;
11508 a_out_adobe_vec) tb="$tb aout-adobe.lo aout32.lo" ;;
11509 aix5coff64_vec) tb="$tb coff64-rs6000.lo xcofflink.lo aix5ppc-core.lo"; target_size=64 ;;
11510 aout0_big_vec) tb="$tb aout0.lo aout32.lo" ;;
11511 aout_arm_big_vec) tb
[all...]
/haiku-fatelf/src/bin/ideinfo/
H A Dideinfo.c64 float mb, gb, tb; local
79 tb = gb / 1024.0;
80 if (tb < 1.0) {
84 sprintf(string, "%.1f TB", tb);
/haiku-fatelf/src/bin/coreutils/lib/
H A Dreadtokens.c156 token_buffer tb, *token = &tb; local
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/broadcom43xx/dev/bwi/
H A Dif_bwi.c2313 struct bwi_txbuf *tb = &tbd->tbd_buf[j]; local
2315 if (tb->tb_mbuf != NULL) {
2317 tb->tb_dmap);
2318 m_freem(tb->tb_mbuf);
2320 if (tb->tb_ni != NULL)
2321 ieee80211_free_node(tb->tb_ni);
2322 bus_dmamap_destroy(sc->sc_buf_dtag, tb->tb_dmap);
2850 struct bwi_txbuf *tb = &tbd->tbd_buf[i]; local
2852 if (tb->tb_mbuf != NULL) {
2853 bus_dmamap_unload(sc->sc_buf_dtag, tb
2952 struct bwi_txbuf *tb = &tbd->tbd_buf[idx]; local
3143 struct bwi_txbuf *tb = &tbd->tbd_buf[idx]; local
3343 struct bwi_txbuf *tb; local
[all...]
/haiku-fatelf/src/libs/tiff/
H A Dtif_dirinfo.c559 const TIFFFieldInfo* tb = *(const TIFFFieldInfo**) b; local
561 if (ta->field_tag != tb->field_tag)
562 return (int)ta->field_tag - (int)tb->field_tag;
565 0 : ((int)tb->field_type - (int)ta->field_type);
572 const TIFFFieldInfo* tb = *(const TIFFFieldInfo**) b; local
573 int ret = strcmp(ta->field_name, tb->field_name);
579 0 : ((int)tb->field_type - (int)ta->field_type);
/haiku-fatelf/src/libs/pdflib/libs/flate/
H A Dinfutil.h44 inflate_huft *tb; /* bit length decoding tree */ member in struct:inflate_blocks_state::__anon4904::__anon4905
H A Dinfblock.c251 &s->sub.trees.tb, s->hufts, z);
274 h = s->sub.trees.tb + ((uInt)b & inflate_mask[t]);
308 s->sub.trees.tb = Z_NULL;
H A Dinftrees.c298 inflate_huft * FAR *tb, /* bits tree result */
309 tb, bb, hp, &hn, v);
295 inflate_trees_bits( uIntf *c, uIntf *bb, inflate_huft * FAR *tb, inflate_huft *hp, z_streamp z) argument
/haiku-fatelf/src/libs/pdflib/libs/tiff/
H A Dtif_dirinfo.c282 const TIFFFieldInfo* tb = *(const TIFFFieldInfo**) b; local
284 if (ta->field_tag != tb->field_tag)
285 return (ta->field_tag < tb->field_tag ? -1 : 1);
287 return (tb->field_type < ta->field_type ? -1 : 1);
/haiku-fatelf/src/libs/zlib/
H A Dinfutil.h41 inflate_huft *tb; /* bit length decoding tree */ member in struct:inflate_blocks_state::__anon5230::__anon5231
/haiku-fatelf/src/bin/
H A Dtop.c118 thread_times_t *tb = (thread_times_t *)b; local
120 return ((tb->user_time + tb->kernel_time) -
/haiku-fatelf/src/add-ons/translators/gif/
H A DGIFView.cpp115 BTextView *tb = fTransparentBlueTC->TextView(); local
121 tb->DisallowChar(x);
/haiku-fatelf/src/tests/kits/interface/picture/
H A DSVGViewView.cpp446 double tb = atan2(vy, vx);
448 if (tb >= ta)
449 return tb - ta;
451 return 6.28318530718 - (ta - tb);
445 double tb = atan2(vy, vx); local
/haiku-fatelf/src/bin/rcs/
H A Drcsedit.c286 struct stat sb, tb; local
289 stat(t, &tb) == 0 &&
290 same_file(sb, tb, 0)
/haiku-fatelf/src/bin/gdb/gdb/
H A Dremote.c2784 char tb[2];
2786 tb[0] = c;
2787 tb[1] = 0;
2788 fputs_unfiltered (tb, gdb_stdtarg);
2776 char tb[2]; local
/haiku-fatelf/docs/develop/storage/resources/
H A DResourcesFormat.tex187 \begin{figure}[h!tb]

Completed in 207 milliseconds