Searched refs:tt (Results 1 - 25 of 39) sorted by relevance

12

/haiku-fatelf/src/bin/bash/
H A Dversion.c62 static char tt[32] = { '\0' }; local
64 if (tt[0] == '\0')
68 snprintf (tt, sizeof (tt), "%s.%d(%d)-%s", dist_version, patch_level, build_version, release_status);
70 sprintf (tt, "%s.%d(%d)-%s", dist_version, patch_level, build_version, release_status);
74 snprintf (tt, sizeof (tt), "%s.%d(%d)", dist_version, patch_level, build_version);
76 sprintf (tt, "%s.%d(%d)", dist_version, patch_level, build_version);
79 return tt;
H A Dhashlib.c409 BUCKET_CONTENTS *tt; local
421 tt = hash_insert (temp_string, table, 0);
422 if (tt->times_found)
/haiku-fatelf/src/add-ons/kernel/network/stack/
H A Dradix.c70 static struct radix_mask *rn_new_radix_mask(struct radix_node *tt,
150 rn_new_radix_mask(register struct radix_node *tt, register struct radix_mask *next) argument
164 m->rm_bit = tt->rn_bit;
165 m->rm_flags = tt->rn_flags;
166 if (tt->rn_flags & RNF_NORMAL)
167 m->rm_leaf = tt;
169 m->rm_mask = tt->rn_mask;
171 tt->rn_mklist = m;
249 register struct radix_node *tt = nodes, *t = tt local
281 struct radix_node *tt; local
698 register struct radix_node *t, *x = 0, *tt; local
848 register struct radix_node *t, *p, *x, *tt; local
1058 register struct radix_node *t, *tt, *ttt; local
[all...]
/haiku-fatelf/src/bin/bash/lib/sh/
H A Dshtty.c167 TTYSTRUCT tt; local
171 tt = ttin;
172 return (ttfd_onechar (0, &tt));
207 TTYSTRUCT tt; local
211 tt = ttin;
212 return (ttfd_noecho (0, &tt));
249 TTYSTRUCT tt; local
253 tt = ttin;
254 return (ttfd_eightbit (0, &tt));
287 TTYSTRUCT tt; local
324 TTYSTRUCT tt; local
[all...]
/haiku-fatelf/src/libs/util/
H A Dlogin_times.c110 in_ltm(const login_time_t * ltm, struct tm * tt, time_t * ends) argument
114 if (tt != NULL) {
116 if ((u_char)(0x01 << tt->tm_wday) & ltm->lt_dow) {
118 u_short now = (u_short)((tt->tm_hour * 60) + tt->tm_min);
120 if (tt->tm_sec > 30)
126 tt->tm_hour = (int)(ltm->lt_end / 60);
127 tt->tm_min = (int)(ltm->lt_end % 60);
128 *ends = mktime(tt);
/haiku-fatelf/src/bin/bash/lib/readline/examples/
H A Dhistexamp.c90 time_t tt; local
97 tt = history_get_time (the_list[i]);
98 if (tt)
99 strftime (timestr, sizeof (timestr), "%a %R", localtime(&tt));
/haiku-fatelf/src/bin/coreutils/lib/
H A Dmpsort.c113 void const *tt; local
122 tt = tmp[t];
126 if (cmp (tt, bb) <= 0)
128 base[i++] = tt;
132 tt = tmp[t];
/haiku-fatelf/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_rate/sample/
H A Dsample.h129 int tt = 0; local
208 tt += (short_retries + 1) * ctsduration;
210 tt += t_difs;
213 tt += (long_retries+1)*ath_hal_pkt_txtime(sc->sc_ah, rt, length, rix,
216 tt += (long_retries+1)*(t_sifs + rt->info[rix].spAckDuration);
220 tt += (t_slot * cw/2);
222 return tt;
H A Dsample.c170 int rix, tt; local
184 tt = sn->stats[size_bin][rix].average_tx_time;
185 if (tt <= 0 ||
194 if (best_rate_tt == 0 || tt < best_rate_tt) {
195 best_rate_tt = tt;
504 int tt, tries_so_far; local
509 tt = calc_usecs_unicast_packet(sc, size, rix0, short_tries,
516 tt += calc_usecs_unicast_packet(sc, size, rix1, short_tries,
524 tt += calc_usecs_unicast_packet(sc, size, rix2, short_tries,
532 tt
[all...]
/haiku-fatelf/src/kits/network/libbind/isc/
H A Dev_timers.c351 idle_timer *tt; local
354 OKNEW(tt);
355 tt->func = func;
356 tt->uap = uap;
357 tt->lastTouched = ctx->lastEventTime;
358 tt->max_idle = max_idle;
360 if (evSetTimer(opaqueCtx, idle_timeout, tt,
363 FREE(tt);
367 tt->timer = opaqueID->opaque;
375 idle_timer *tt local
390 idle_timer *tt = timer->uap; local
406 idle_timer *tt = t->uap; local
[all...]
H A Dlogging.c282 time_t tt; local
314 tt = tv.tv_sec;
316 local_tm = localtime_r(&tt, &tm_tmp);
318 local_tm = localtime(&tt);
/haiku-fatelf/src/bin/gdb/gdb/
H A Dsparc-stub.c448 unsigned char tt; /* Trap type code for SPARClite */ member in struct:hard_trap_info
470 for (ht = hard_trap_info; ht->tt && ht->signo; ht++)
471 exceptionHandler(ht->tt, trap_low);
507 computeSignal (int tt) argument
511 for (ht = hard_trap_info; ht->tt && ht->signo; ht++)
512 if (ht->tt == tt)
557 int tt; /* Trap type */ local
592 tt = (registers[TBR] >> 4) & 0xff;
595 sigval = computeSignal(tt);
[all...]
/haiku-fatelf/src/bin/bash/builtins/
H A Devalfile.c97 char *t, tt[2]; local
224 tt[0] = '1'; tt[1] = '\0';
225 array_push (bash_argc_a, tt);
/haiku-fatelf/src/bin/network/tcpdump/
H A Dprint-ip.c101 int tt; local
104 tt = *cp;
105 if (tt == IPOPT_EOL)
107 else if (tt == IPOPT_NOP)
116 switch (tt) {
/haiku-fatelf/src/add-ons/media/plugins/ffmpeg/libbz2/
H A Ddecompress.c218 s->tt = BZALLOC( s->blockSize100k * 100000 * sizeof(Int32) );
219 if (s->tt == NULL) RETURN(BZ_MEM_ERROR);
405 s->tt[nblock] = (UInt32)uc;
473 s->tt[nblock] = (UInt32)(s->seqToUnseq[uc]);
541 uc = (UChar)(s->tt[i] & 0xff);
542 s->tt[s->cftab[uc]] |= (i << 8);
546 s->tPos = s->tt[s->origPtr] >> 8;
H A Dbzlib_private.h381 UInt32 *tt; member in struct:__anon2613
447 s->tPos = s->tt[s->tPos]; \
H A Dbzlib.c523 s->tt = NULL;
597 UInt32* c_tt = s->tt;
675 s->tt = c_tt;
870 if (s->tt != NULL) BZFREE(s->tt);
/haiku-fatelf/docs/user/
H A Dapidoc.dox102 space. If the text is part of a category, such as <tt>Authors</tt>, put
108 -# Then there is a label <tt>Authors:</tt>, which is followed by
111 -# In the same vein there is the label <tt>Proofreaders:</tt> in case the
113 -# The final part is underneath the label <tt>Corresponds to:</tt>.
162 another five slashes. Like this: <tt>///// Global Functions /////</tt>
[all...]
/haiku-fatelf/headers/private/kernel/arch/m68k/
H A Darch_cpu.h58 uint16 tt:2; member in struct:mc68040_ssw
69 uint32 tt:2; member in struct:mc68060_fslw
/haiku-fatelf/src/system/libroot/posix/glibc/arch/generic/
H A De_lgamma_r.c110 /* tt = -(tail of tf) */
111 tt = -3.63867699703950536541e-18, /* 0xBC50C7CA, 0xA48A971F */ variable
276 p = z*p1-(tt-w*(p2+y*p3));
H A De_lgammaf_r.c46 /* tt = -(tail of tf) */
47 tt = 6.6971006518e-09, /* 0x31e61c52 */ variable
212 p = z*p1-(tt-w*(p2+y*p3));
H A De_lgammal_r.c127 /* tt = (tail of tf), i.e. tf + tt has extended precision. */
128 tt = 3.3649914684731379602768989080467587736363E-18L, variable
132 /* lgam (x + tc) = tf + tt + x g(x)/h(x)
394 p = tt + y * p1/p2;
/haiku-fatelf/src/libs/print/libgutenprint/src/ghost/
H A Dijsgutenprint.c1368 int lt, rt, bt, tt; local
1370 stp_get_maximum_imageable_area(img.v, &lt, &rt, &bt, &tt);
1372 w, h, l, lt, t, tt, r, rt, b, bt));
1375 if (tt < 0)
1376 tt = 0;
1390 w, h, l, lt, t, tt, r, rt, b, bt));
1403 if (tt < t)
1405 STP_DEBUG(fprintf(stderr, "ijsgutenprint: t %d, tt %d\n", t, tt));
1406 img.top_margin = (t - tt) * p
[all...]
/haiku-fatelf/src/bin/gdb/texinfo/
H A Dtexinfo.tex550 \def\@{{\tt\char64}}
560 \def\mylbrace {{\tt\char123}}
561 \def\myrbrace {{\tt\char125}}
1397 \def\tt{\fam=\ttfam \setfontstyle{tt}}
1445 \def\ttshape{tt}
1446 \def\ttbshape{tt}
1731 {\tt \rawbackslash \frenchspacing #1}%
1745 \def\ctrl #1{{\tt \rawbackslash \hat}#1}
1759 \tt
[all...]
/haiku-fatelf/src/bin/gdb/readline/
H A Ddisplay.c831 char *tt; local
834 tt = VIS_CHARS (linenum);
836 _rl_move_cursor_relative (0, tt);
838 ((linenum == _rl_vis_botlin) ? strlen (tt) : _rl_screenwidth);

Completed in 315 milliseconds

12