Searched refs:vmf (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/sys/i386/i386/
H A Dvm86.c150 PUSH(u_short x, struct vm86frame *vmf) argument
152 vmf->vmf_sp -= 2;
153 vm86_suword16(MAKE_ADDR(vmf->vmf_ss, vmf->vmf_sp), x);
157 PUSHL(u_int x, struct vm86frame *vmf) argument
159 vmf->vmf_sp -= 4;
160 vm86_suword(MAKE_ADDR(vmf->vmf_ss, vmf->vmf_sp), x);
164 POP(struct vm86frame *vmf) argument
166 u_short x = vm86_fuword16(MAKE_ADDR(vmf
173 POPL(struct vm86frame *vmf) argument
182 vm86_emulate(struct vm86frame *vmf) argument
645 vm86_prepcall(struct vm86frame *vmf) argument
680 vm86_trap(struct vm86frame *vmf) argument
701 vm86_intcall(int intnum, struct vm86frame *vmf) argument
727 vm86_datacall(int intnum, struct vm86frame *vmf, struct vm86context *vmc) argument
[all...]
H A Dmachdep.c1825 struct vm86frame vmf; local
1832 bzero(&vmf, sizeof(vmf));
1870 vm86_intcall(0x12, &vmf);
1871 basemem = vmf.vmf_ax;
1882 res = vm86_getptr(&vmc, (vm_offset_t)smap, &vmf.vmf_es, &vmf.vmf_di);
1885 vmf.vmf_ebx = 0;
1887 vmf.vmf_eax = 0xE820;
1888 vmf
[all...]
/freebsd-13-stable/sys/compat/x86bios/
H A Dx86bios.c88 x86bios_emu2vmf(struct x86emu_regs *regs, struct vm86frame *vmf) argument
91 vmf->vmf_ds = regs->R_DS;
92 vmf->vmf_es = regs->R_ES;
93 vmf->vmf_ax = regs->R_AX;
94 vmf->vmf_bx = regs->R_BX;
95 vmf->vmf_cx = regs->R_CX;
96 vmf->vmf_dx = regs->R_DX;
97 vmf->vmf_bp = regs->R_BP;
98 vmf->vmf_si = regs->R_SI;
99 vmf
103 x86bios_vmf2emu(struct vm86frame *vmf, struct x86emu_regs *regs) argument
180 struct vm86frame vmf; local
215 struct vm86frame vmf; local
[all...]
/freebsd-13-stable/sys/x86/cpufreq/
H A Dsmist.c132 struct vm86frame vmf; local
134 bzero(&vmf, sizeof(vmf));
135 vmf.vmf_eax = 0x0000E980; /* IST support */
136 vmf.vmf_edx = 0x47534943; /* 'GSIC' in ASCII */
137 vm86_intcall(0x15, &vmf);
139 if (vmf.vmf_eax == 0x47534943) {
140 *sig = vmf.vmf_eax;
141 *smi_cmd = vmf.vmf_ebx & 0xff;
142 *command = (vmf
[all...]
/freebsd-13-stable/sys/i386/include/
H A Dvm86.h147 struct vm86frame vmf; member in struct:vm86_intcall_args
/freebsd-13-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_compat.c537 struct vm_fault vmf; local
540 vmf.virtual_address = (void *)(uintptr_t)IDX_TO_OFF(pidx);
541 vmf.flags = (fault_type & VM_PROT_WRITE) ? FAULT_FLAG_WRITE : 0;
542 vmf.pgoff = 0;
543 vmf.page = NULL;
544 vmf.vma = vmap;
550 err = vmap->vm_ops->fault(vmap, &vmf);
554 err = vmap->vm_ops->fault(vmap, &vmf);
/freebsd-13-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_xmit_ds.c954 u_int vmf)
958 if (vmf) {
953 ar9300_set_11n_virtual_more_frag(struct ath_hal *ah, struct ath_desc *ds, u_int vmf) argument
H A Dar9300desc.h556 struct ath_desc *ds, u_int vmf);
/freebsd-13-stable/sys/dev/ath/ath_hal/ar5416/
H A Dar5416.h418 struct ath_desc *ds, u_int vmf);
H A Dar5416_xmit.c1054 u_int vmf)
1057 if (vmf)
1053 ar5416Set11nVirtualMoreFrag(struct ath_hal *ah, struct ath_desc *ds, u_int vmf) argument

Completed in 262 milliseconds