/src/sys/external/bsd/drm2/dist/include/drm/ttm/ |
ttm_debug.h | 32 extern void ttm_trace_dma_map(struct device *dev, struct ttm_dma_tt *tt); 33 extern void ttm_trace_dma_unmap(struct device *dev, struct ttm_dma_tt *tt);
|
ttm_page_alloc.h | 66 int ttm_populate_and_map_pages(struct device *dev, struct ttm_dma_tt *tt, 72 void ttm_unmap_and_unpopulate_pages(struct device *dev, struct ttm_dma_tt *tt);
|
/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/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/usr.bin/make/unit-tests/ |
varmod-to-title.mk | 8 .if ${:UUPPER:tt} != "Upper" 12 .if ${:Ulower:tt} != "Lower" 16 .if ${:UMixeD case.:tt} != "Mixed Case." 20 # The ':tt' modifier works on the whole string, without splitting it into 22 .if ${:Umultiple spaces:tt} != "Multiple Spaces" 27 .if ${:Uthis&that or os/2:tt} != "This&that Or Os/2"
|
/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/net/ |
radix.c | 401 struct radix_node *tt = nodes; local in function:rn_newpair 402 struct radix_node *t = tt + 1; 404 t->rn_l = tt; t->rn_off = b >> 3; 405 tt->rn_b = -1; tt->rn_key = v; tt->rn_p = t; 406 tt->rn_flags = t->rn_flags = RNF_ACTIVE; 419 struct radix_node *tt; local in function:rn_insert 457 t = rn_newpair(v_arg, b, nodes); tt = t->rn_l; 466 t->rn_r = tt; t->rn_l = x 760 struct radix_node *t, *p, *x, *tt; local in function:rn_delete1 1083 struct radix_node *tt; local in function:rn_inithead0 [all...] |
/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/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/tests/include/sys/ |
t_tree.c | 40 RB_HEAD(head, mist) tt; 67 RB_INSERT(head, &tt, m); 75 return (!!RB_FIND(head, &tt, m)); 85 RB_INIT(&tt);
|
/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/dev/ic/ |
athrate-sample.h | 197 int tt = 0; local in function:calc_usecs_unicast_packet 276 tt += (short_retries + 1) * ctsduration; 278 tt += t_difs; 279 tt += (long_retries+1)*(t_sifs + rt->info[rix].spAckDuration); 280 tt += (long_retries+1)*ath_hal_computetxtime(sc->sc_ah, rt, length, 284 tt += (t_slot * cw/2); 286 return 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/sys/crypto/des/ |
des_locl.h | 347 register DES_LONG tt; \ 348 PERM_OP(r,l,tt, 4,0x0f0f0f0fL); \ 349 PERM_OP(l,r,tt,16,0x0000ffffL); \ 350 PERM_OP(r,l,tt, 2,0x33333333L); \ 351 PERM_OP(l,r,tt, 8,0x00ff00ffL); \ 352 PERM_OP(r,l,tt, 1,0x55555555L); \ 357 register DES_LONG tt; \ 358 PERM_OP(l,r,tt, 1,0x55555555L); \ 359 PERM_OP(r,l,tt, 8,0x00ff00ffL); \ 360 PERM_OP(l,r,tt, 2,0x33333333L); [all...] |
/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/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/external/bsd/drm2/dist/drm/ttm/ |
ttm_page_alloc.c | 1102 int ttm_populate_and_map_pages(struct device *dev, struct ttm_dma_tt *tt, 1108 r = ttm_pool_populate(&tt->ttm, ctx); 1112 for (i = 0; i < tt->ttm.num_pages; ++i) { 1113 struct page *p = tt->ttm.pages[i]; 1116 for (j = i + 1; j < tt->ttm.num_pages; ++j) { 1117 if (++p != tt->ttm.pages[j]) 1123 tt->dma_address[i] = dma_map_page(dev, tt->ttm.pages[i], 1126 if (dma_mapping_error(dev, tt->dma_address[i])) { 1128 dma_unmap_page(dev, tt->dma_address[i] [all...] |
/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/sys/external/bsd/drm2/dist/drm/nouveau/ |
nouveau_mem.c | 102 nouveau_mem_host(struct ttm_mem_reg *reg, struct ttm_dma_tt *tt) 127 args.dma = tt->dma_address; 129 if (tt->ttm.sg) args.sgl = tt->ttm.sg->sgl; 130 else args.dma = tt->dma_address;
|
/src/usr.bin/script/ |
script.c | 88 static struct termios tt; variable in typeref:struct:termios 166 if (tcgetattr(STDIN_FILENO, &tt) == -1 || 173 if (openpty(&master, &slave, NULL, &tt, &win) == -1) 182 rtt = tt; 357 (void)tcsetattr(STDIN_FILENO, TCSAFLUSH, &tt); 417 if (tcgetattr(STDOUT_FILENO, &tt) == -1) { 423 traw = tt; 433 (void)tcsetattr(STDOUT_FILENO, TCSADRAIN, &tt);
|
/src/sys/arch/usermode/usermode/ |
thunk.c | 167 thunk_to_termios(const struct thunk_termios *tt, struct termios *t) 171 t->c_iflag = tt->c_iflag; 172 t->c_oflag = tt->c_oflag; 173 t->c_cflag = tt->c_cflag; 174 t->c_lflag = tt->c_lflag; 176 t->c_cc[i] = tt->c_cc[i]; 177 t->c_ispeed = tt->c_ispeed; 178 t->c_ospeed= tt->c_ospeed; 182 thunk_from_termios(const struct termios *t, struct thunk_termios *tt) 186 tt->c_iflag = t->c_iflag [all...] |
/src/tests/usr.bin/shmif_dumpbus/ |
t_basic.sh | 79 tcpdump -tt -n -r pcap
|
/src/bin/csh/ |
misc.c | 163 char *tt; local in function:strstr 166 tt = t; 169 if (*tt == '\0') 171 while (*ss++ == *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]);
|