Searched refs:tfp (Results 1 - 11 of 11) sorted by relevance

/freebsd-13-stable/sys/riscv/include/
H A Dcpu.h44 #define TRAPF_PC(tfp) ((tfp)->tf_ra)
45 #define TRAPF_USERMODE(tfp) (((tfp)->tf_sstatus & SSTATUS_SPP) == 0)
/freebsd-13-stable/contrib/ipfilter/lib/
H A Dipft_hx.c27 static FILE *tfp = NULL; variable
33 if (tfp && tfd != -1) {
34 rewind(tfp);
40 tfp = stdin;
44 tfp = fdopen(tfd, "r");
81 while (fgets(line, sizeof(line)-1, tfp)) {
152 if (feof(tfp))
H A Dipft_tx.c33 static FILE *tfp = NULL; variable
90 if (tfp && tfd != -1) {
91 rewind(tfp);
97 tfp = stdin;
101 tfp = fdopen(tfd, "r");
131 while (fgets(line, sizeof(line)-1, tfp)) {
159 if (feof(tfp))
/freebsd-13-stable/sys/i386/i386/
H A Ddb_interface.c89 db_segsize(struct trapframe *tfp) argument
95 if (tfp == NULL)
97 if (tfp->tf_eflags & PSL_VM)
99 sel = tfp->tf_cs & 0xffff;
H A Ddb_trace.c107 struct trapframe_vm86 *tfp; local
116 tfp = (void *)kdb_frame;
119 reg = (uint16_t *)&tfp->tf_cs;
122 reg = (uint16_t *)&tfp->tf_vm86_ds;
125 reg = (uint16_t *)&tfp->tf_vm86_es;
128 reg = (uint16_t *)&tfp->tf_vm86_fs;
157 struct trapframe_vm86 *tfp; local
160 tfp = (void *)kdb_frame;
162 *valuep = tfp->tf_vm86_gs;
164 tfp
[all...]
/freebsd-13-stable/contrib/nvi/ex/
H A Dex_tag.c542 TAGF *atfp, *tfp; local
564 if (tagf_copy(sp, atfp, &tfp))
566 TAILQ_INSERT_TAIL(nexp->tagfq, tfp, q);
586 TAGF *tfp; local
588 MALLOC_RET(sp, tfp, sizeof(TAGF));
589 *tfp = *otfp;
592 if ((tfp->name = strdup(otfp->name)) == NULL) {
593 free(tfp);
597 *tfpp = tfp;
662 tagf_free(SCR *sp, TAGF *tfp) argument
843 TAGF *tfp; local
885 TAGF *tfp; local
970 TAGF *tfp; local
1024 ctag_sfile(SCR *sp, TAGF *tfp, TAGQ *tqp, char *tname) argument
1161 ctag_file(SCR *sp, TAGF *tfp, char *name, char **dirp, size_t *dlenp) argument
[all...]
/freebsd-13-stable/sys/arm/include/
H A Dcpu.h55 #define TRAPF_PC(tfp) ((tfp)->tf_pc)
/freebsd-13-stable/sys/arm64/include/
H A Dcpu.h48 #define TRAPF_PC(tfp) ((tfp)->tf_lr)
49 #define TRAPF_USERMODE(tfp) (((tfp)->tf_spsr & PSR_M_MASK) == PSR_M_EL0t)
/freebsd-13-stable/sys/i386/include/
H A Ddb_machdep.h88 int db_segsize(struct trapframe *tfp);
/freebsd-13-stable/sys/dev/mlx5/mlx5_core/
H A Dmlx5_pagealloc.c211 struct mlx5_fw_page *tfp; local
215 tfp = rb_entry(parent, struct mlx5_fw_page, rb_node);
216 if (tfp->dma_addr < nfp->dma_addr)
218 else if (tfp->dma_addr > nfp->dma_addr)
235 struct mlx5_fw_page *tfp; local
238 tfp = rb_entry(tmp, struct mlx5_fw_page, rb_node);
239 if (tfp->dma_addr < addr) {
241 } else if (tfp->dma_addr > addr) {
244 rb_erase(&tfp->rb_node, &dev->priv.page_root);
245 result = tfp;
[all...]
/freebsd-13-stable/contrib/sendmail/src/
H A Dqueue.c353 register SM_FILE_T *tfp; local
385 tfp = e->e_lockfp;
386 if (tfp == NULL && newid)
400 (tfp = sm_io_open(SmFtStdiofd, SM_TIME_DEFAULT,
409 tf, (long) geteuid(), tfd, (void *)tfp);
412 e->e_lockfp = tfp;
469 if (tfd < 0 || (tfp = sm_io_open(SmFtStdiofd, SM_TIME_DEFAULT,
499 sm_dprintf(" tfp=");
500 dumpfd(sm_io_getinfo(tfp, SM_IO_WHAT_FD, NULL), true, false);
611 (void) sm_io_fprintf(tfp, SM_TIME_DEFAUL
[all...]

Completed in 169 milliseconds