/src/lib/libc/gen/ |
time.c | 50 struct timeval tt; local in function:time 52 if (gettimeofday(&tt, NULL) == -1) 55 *t = (time_t)tt.tv_sec; 56 return (time_t)tt.tv_sec;
|
/src/sys/arch/hppa/stand/common/ |
time.c | 42 satime_t tt; local in function:getsecs 45 tt = 0; 51 tt = ((struct pdc_tod *)pdcbuf)->sec; 53 if (debug && tt < 800000000) 54 printf("getsecs: got %u seconds\n", tt); 58 return tt;
|
/src/tests/lib/libc/time/ |
t_mktime.c | 46 struct tm tt; local in function:ATF_TC_BODY 50 localtime_r(&x, &tt); 53 if (t->tm_sec != tt.tm_sec || t->tm_min != tt.tm_min || 54 t->tm_hour != tt.tm_hour || t->tm_mday != tt.tm_mday)
|
/src/usr.bin/xlint/lint2/ |
emit2.c | 49 static const char tt[NTSPEC] = "???BCCCSSIILLQQJJDDD?XXXV?TTTPAF"; local in function:outtype 52 static const char tt[NTSPEC] = "???BCCCSSIILLQQDDD?XXXV?TTTPAF"; 60 if (!ch_isupper(tt[ts])) 71 outchar(tt[ts]);
|
/src/sys/arch/m68k/fpe/ |
fpu_sqrt.c | 192 uint32_t bit, q, tt; local in function:fpu_sqrt 265 * The variable `tt' holds the actual `t?' variable. 269 #define t0 tt 293 #define t1 tt 324 #define t2 tt
|
/src/sys/arch/powerpc/fpu/ |
fpu_sqrt.c | 196 u_int bit, q, tt; local in function:fpu_sqrt 285 * The variable `tt' holds the actual `t?' variable. 289 #define t0 tt 313 #define t1 tt 344 #define t2 tt 377 #define t3 tt
|
/src/sys/arch/sparc/fpu/ |
fpu_sqrt.c | 192 u_int bit, q, tt; local in function:fpu_sqrt 265 * The variable `tt' holds the actual `t?' variable. 269 #define t0 tt 293 #define t1 tt 324 #define t2 tt 357 #define t3 tt
|
/src/usr.bin/xlint/lint1/ |
emit1.c | 94 static const char tt[NTSPEC] = "???BCCCSSIILLQQJJDDD?XXXV?TTTPAF"; local in function:outtype 97 static const char tt[NTSPEC] = "???BCCCSSIILLQQDDD?XXXV?TTTPAF"; 106 lint_assert(tt[ts] != '?' && ss[ts] != '?'); 113 outchar(tt[ts]);
|
/src/games/hack/ |
hack.trap.c | 222 int tt = trap->ttyp; local in function:mintrap 225 if (mtmp->mtrapseen & (1 << tt)) { 230 mtmp->mtrapseen |= (1 << tt); 231 switch (tt) {
|
/src/sys/compat/linux/common/ |
linux_misc_notalpha.c | 191 linux_time_t tt; local in function:linux_sys_time 196 tt = atv.tv_sec; 197 if (SCARG(uap, t) && (error = copyout(&tt, SCARG(uap, t), sizeof tt))) 200 retval[0] = tt; 324 linux_time_t tt; local in function:linux_sys_stime 327 if ((error = copyin(SCARG(uap, t), &tt, sizeof tt)) != 0) 330 ats.tv_sec = tt;
|
/src/bin/csh/ |
str.c | 358 const Char *tt = t; local in function:s_strstr 361 if (*tt == '\0') 363 while (*ss++ == *tt++);
|
misc.c | 163 char *tt; local in function:strstr 166 tt = t; 169 if (*tt == '\0') 171 while (*ss++ == *tt++);
|
/src/sys/arch/usermode/dev/ |
ld_thunkbus.c | 158 struct ld_thunkbus_transfer *tt = &sc->sc_tt; local in function:ld_thunkbus_ldstart 163 tt->tt_sc = sc; 164 tt->tt_bp = bp; 166 memset(&tt->tt_aio, 0, sizeof(tt->tt_aio)); 167 tt->tt_aio.aio_fildes = sc->sc_fd; 168 tt->tt_aio.aio_buf = bp->b_data; 169 tt->tt_aio.aio_nbytes = bp->b_bcount; 170 tt->tt_aio.aio_offset = offset; 172 tt->tt_aio.aio_sigevent.sigev_notify = SIGEV_SIGNAL 204 struct ld_thunkbus_transfer *tt = &sc->sc_tt; local in function:ld_thunkbus_complete 245 struct ld_thunkbus_transfer *tt = &sc->sc_tt; local in function:ld_thunkbus_ldstart 262 struct ld_thunkbus_transfer *tt = &sc->sc_tt; local in function:ld_thunkbus_complete [all...] |
/src/lib/libc/isc/ |
ev_timers.c | 370 idle_timer *tt; local in function:evSetIdleTimer 373 OKNEW(tt); 374 tt->func = func; 375 tt->uap = uap; 376 tt->lastTouched = ctx->lastEventTime; 377 tt->max_idle = max_idle; 379 if (evSetTimer(opaqueCtx, idle_timeout, tt, 382 FREE(tt); 386 tt->timer = opaqueID->opaque; 394 idle_timer *tt = del->uap local in function:evClearIdleTimer 409 idle_timer *tt = timer->uap; local in function:evResetIdleTimer 425 idle_timer *tt = t->uap; local in function:evTouchIdleTimer [all...] |
/src/sys/arch/sparc64/include/ |
db_machdep.h | 60 int64_t tt; member in struct:trapstate
|
/src/sys/compat/linux32/common/ |
linux32_time.c | 136 linux32_time_t tt; local in function:linux32_sys_time 141 tt = (linux32_time_t)atv.tv_sec; 143 if (SCARG_P32(uap, t) && (error = copyout(&tt, 144 SCARG_P32(uap, t), sizeof(tt)))) 147 retval[0] = tt;
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu/ |
nouveau_nvkm_subdev_mmu_base.c | 231 struct nvkm_mmu_pt *pt, *tt; local in function:nvkm_mmu_ptc_dump 232 list_for_each_entry_safe(pt, tt, &ptc->item, head) {
|
/src/usr.bin/login/ |
login.c | 617 const char *tt = stypeof(tty); local in function:main 619 if (tt == NULL) 620 tt = login_getcapstr(lc, "term", NULL, NULL); 623 (void)strlcpy(term, tt != NULL ? tt : "su", sizeof(term));
|
login_pam.c | 586 const char *tt = stypeof(tty); local in function:main 588 if (tt == NULL) 589 tt = login_getcapstr(lc, "term", NULL, NULL); 592 (void)strlcpy(term, tt != NULL ? tt : "su", sizeof(term));
|
/src/usr.sbin/sysinst/ |
run.c | 420 struct termios rtt, tt; local in function:launch_subwin 424 (void)tcgetattr(STDIN_FILENO, &tt); 425 if (openpty(&master, &slave, NULL, &tt, win) == -1) { 430 rtt = tt; 471 rtt = tt;
|
/src/bin/ksh/ |
syn.c | 692 struct tokeninfo const *tt; local in function:initkeywords 696 for (tt = tokentab; tt->name; tt++) { 697 if (tt->reserved) { 698 p = tenter(&keywords, tt->name, hash(tt->name)); 701 p->val.i = tt->val; 712 struct tokeninfo const *tt; local in function:syntaxerr 741 for (tt = tokentab; tt->name; tt++ [all...] |
/src/lib/libedit/ |
tty.c | 970 tcflag_t *tt, *ed, *ex; local in function:tty_update_flags 971 tt = tty__get_flag(&el->el_tty.t_ts, kind); 975 if (*tt != *ex && (kind != MD_CTL || *tt != *ed)) { 976 *ed = tty_update_flag(el, *tt, ED_IO, kind); 977 *ex = tty_update_flag(el, *tt, EX_IO, kind);
|
/src/lib/libm/src/ |
e_lgammaf_r.c | 43 /* tt = -(tail of tf) */ 44 tt = 6.6971006518e-09, /* 0x31e61c52 */ variable in typeref:typename:const float 198 p = z*p1-(tt-w*(p2+y*p3));
|
/src/sbin/routed/ |
radix.c | 331 struct radix_node *tt = nodes, *t = tt + 1; local in function:rn_newpair 333 t->rn_l = tt; t->rn_off = b >> 3; 334 tt->rn_b = -1; tt->rn_key = (caddr_t)v; tt->rn_p = t; 335 tt->rn_flags = t->rn_flags = RNF_ACTIVE; 337 tt->rn_info = rn_nodenum++; t->rn_info = rn_nodenum++; 338 tt->rn_twin = t; tt->rn_ybro = rn_clist; rn_clist = tt 355 struct radix_node *tt; local in function:rn_insert 667 struct radix_node *t, *p, *x, *tt; local in function:rn_delete 856 struct radix_node *t, *tt, *ttt; local in function:rn_inithead [all...] |
/src/sys/dev/ic/ |
athrate-sample.c | 176 int tt = sn->stats[size_bin][x].average_tx_time; local in function:best_rate_ndx 177 if (tt <= 0 || (require_acked_before && 190 if (!best_rate_tt || best_rate_tt > tt) { 191 best_rate_tt = tt; 405 int tt = 0; local in function:update_stats 418 tt += calc_usecs_unicast_packet(sc, size, sn->rates[ndx0].rix, 422 tt += calc_usecs_unicast_packet(sc, size, 429 tt += calc_usecs_unicast_packet(sc, size, 437 tt += calc_usecs_unicast_packet(sc, size, 446 sn->stats[size_bin][ndx0].average_tx_time = (tt+(avg_tx*packets))/(packets+1) [all...] |