/src/sys/compat/linux/arch/alpha/ |
linux_machdep.c | 96 struct trapframe *tfp = l->l_md.md_tf; local in function:linux_setregs 105 memset(tfp->tf_regs, 0, FRAME_SIZE * sizeof tfp->tf_regs[0]);
|
/src/sys/arch/arm/gemini/ |
gemini_timer.c | 203 timer_factors_t *tfp = &sc->sc_tf; local in function:_timer_start 207 GEMINI_TIMERn_COUNTER(n), tfp->tf_counter); 209 GEMINI_TIMERn_LOAD(n), tfp->tf_reload); 211 GEMINI_TIMERn_MATCH1(n), tfp->tf_match1); 213 GEMINI_TIMERn_MATCH2(n), tfp->tf_match2); 218 r |= tfp->tf_tmcr & GEMINI_TIMER_TMnCR_MASK(n); 369 timer_factors_t *tfp = &sc->sc_tf; local in function:timer_factors 379 tfp->tf_tmcr = TIMER_TMCR_TMnENABLE(n); 382 tfp->tf_counter = ~0U; 388 tfp->tf_counter = count_freq [all...] |
/src/usr.bin/rdist/ |
docmd.c | 368 FILE *tfp; variable in typeref:typename:FILE * 400 tfp = NULL; 402 if ((tfp = fopen(tempfile, "w")) == NULL) { 423 if (tfp != NULL) 424 (void) fclose(tfp); 478 dolog(tfp, "new: %s\n", name);
|
/src/usr.bin/config/ |
mkheaders.c | 364 FILE *tfp; local in function:emitlocs 367 if ((tfp = fopen(tfname, "w")) == NULL) 370 rval = ht_enumerate(attrtab, locators_print, tfp); 372 fflush(tfp); 373 if (ferror(tfp)) 375 if (fclose(tfp) == EOF) 390 FILE *tfp; local in function:emitioconfh 395 if ((tfp = fopen(tfname, "w")) == NULL) 398 fputs("\n/* pseudo-devices */\n", tfp); 400 fprintf(tfp, "void %sattach(int);\n" 475 FILE *tfp, *nfp; local in function:moveifchanged [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
dvo_tfp410.c | 101 struct tfp410_priv *tfp = dvo->dev_priv; local in function:tfp410_readb 129 if (!tfp->quiet) { 138 struct tfp410_priv *tfp = dvo->dev_priv; local in function:tfp410_writeb 154 if (!tfp->quiet) { 178 struct tfp410_priv *tfp; local in function:tfp410_init 181 tfp = kzalloc(sizeof(struct tfp410_priv), GFP_KERNEL); 182 if (tfp == NULL) 186 dvo->dev_priv = tfp; 187 tfp->quiet = true; 202 tfp->quiet = false 307 struct tfp410_priv *tfp = dvo->dev_priv; local in function:tfp410_destroy [all...] |
/src/sys/arch/m68k/m68k/ |
db_trace.c | 502 int tfp; local in function:db_stack_trace_print 505 tfp = pos.k_fp + FR_SAVFP + 4 + (5 * 4); 508 regp = tfp + offsetof(struct frame, f_sr); 515 regp = tfp + offsetof(struct frame, f_pc);
|
/src/sys/arch/alpha/alpha/ |
machdep.c | 1681 struct trapframe *tfp = l->l_md.md_tf; local in function:setregs 1695 memset(tfp, 0, sizeof(*tfp)); 1699 tfp->tf_regs[i] = 0xbabefacedeadbeef; 1704 tfp->tf_regs[FRAME_PS] = ALPHA_PSL_USERSET; 1705 tfp->tf_regs[FRAME_PC] = pack->ep_entry & ~3; 1707 tfp->tf_regs[FRAME_A0] = stack; /* a0 = sp */ 1708 tfp->tf_regs[FRAME_A1] = 0; /* a1 = rtld cleanup */ 1709 tfp->tf_regs[FRAME_A2] = 0; /* a2 = rtld object */ 1710 tfp->tf_regs[FRAME_A3] = l->l_proc->p_psstrp; /* a3 = ps_strings * [all...] |