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

/freebsd-11-stable/sys/i386/i386/
H A Dvm86.c99 PUSH(u_short x, struct vm86frame *vmf) argument
101 vmf->vmf_sp -= 2;
102 suword16(MAKE_ADDR(vmf->vmf_ss, vmf->vmf_sp), x);
106 PUSHL(u_int x, struct vm86frame *vmf) argument
108 vmf->vmf_sp -= 4;
109 suword(MAKE_ADDR(vmf->vmf_ss, vmf->vmf_sp), x);
113 POP(struct vm86frame *vmf) argument
115 u_short x = fuword16(MAKE_ADDR(vmf
122 POPL(struct vm86frame *vmf) argument
131 vm86_emulate(struct vm86frame *vmf) argument
512 vm86_prepcall(struct vm86frame *vmf) argument
547 vm86_trap(struct vm86frame *vmf) argument
565 vm86_intcall(int intnum, struct vm86frame *vmf) argument
588 vm86_datacall(int intnum, struct vm86frame *vmf, struct vm86context *vmc) argument
[all...]
H A Dmachdep.c2063 struct vm86frame vmf; local
2082 bzero(&vmf, sizeof(vmf));
2117 vm86_intcall(0x12, &vmf);
2118 basemem = vmf.vmf_ax;
2130 res = vm86_getptr(&vmc, (vm_offset_t)smap, &vmf.vmf_es, &vmf.vmf_di);
2133 vmf.vmf_ebx = 0;
2135 vmf.vmf_eax = 0xE820;
2136 vmf
[all...]
/freebsd-11-stable/sys/i386/bios/
H A Dmca_machdep.c73 struct vm86frame vmf; local
77 bzero(&vmf, sizeof(struct vm86frame));
79 vmf.vmf_ah = 0xc0;
80 if (vm86_intcall(0x15, &vmf)) {
87 if ((vmf.vmf_ah != 0) && (vmf.vmf_flags & 0x01)) {
91 vmf.vmf_ah, vmf.vmf_flags);
96 paddr = vmf.vmf_es;
97 paddr = (paddr << 4) + vmf
[all...]
H A Dapm.c895 struct vm86frame vmf; local
913 bzero(&vmf, sizeof(struct vm86frame)); /* safety */
915 vmf.vmf_ah = APM_BIOS;
916 vmf.vmf_al = APM_INSTCHECK;
917 vmf.vmf_bx = 0;
918 if (vm86_intcall(APM_INT, &vmf))
920 if (vmf.vmf_bx != 0x504d) {
921 printf("apm: incorrect signature (0x%x)\n", vmf.vmf_bx);
924 if ((vmf.vmf_cx & (APM_32BIT_SUPPORT | APM_16BIT_SUPPORT)) == 0) {
929 apm_version = vmf
[all...]
/freebsd-11-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-11-stable/sys/x86/cpufreq/
H A Dsmist.c130 struct vm86frame vmf; local
132 bzero(&vmf, sizeof(vmf));
133 vmf.vmf_eax = 0x0000E980; /* IST support */
134 vmf.vmf_edx = 0x47534943; /* 'GSIC' in ASCII */
135 vm86_intcall(0x15, &vmf);
137 if (vmf.vmf_eax == 0x47534943) {
138 *sig = vmf.vmf_eax;
139 *smi_cmd = vmf.vmf_ebx & 0xff;
140 *command = (vmf
[all...]
/freebsd-11-stable/sys/i386/include/
H A Dvm86.h145 struct vm86frame vmf; member in struct:vm86_intcall_args
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_compat.c544 struct vm_fault vmf; local
547 vmf.virtual_address = (void *)(uintptr_t)IDX_TO_OFF(pidx);
548 vmf.flags = (fault_type & VM_PROT_WRITE) ? FAULT_FLAG_WRITE : 0;
549 vmf.pgoff = 0;
550 vmf.page = NULL;
551 vmf.vma = vmap;
557 err = vmap->vm_ops->fault(vmap, &vmf);
561 err = vmap->vm_ops->fault(vmap, &vmf);
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_ttm.c803 static int radeon_ttm_fault(struct vm_area_struct *vma, struct vm_fault *vmf) argument
815 r = ttm_vm_ops->fault(vma, vmf);
/freebsd-11-stable/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_xmit_ds.c942 u_int vmf)
946 if (vmf) {
941 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-11-stable/sys/dev/ath/ath_hal/ar5416/
H A Dar5416.h421 struct ath_desc *ds, u_int vmf);
H A Dar5416_xmit.c1053 u_int vmf)
1056 if (vmf)
1052 ar5416Set11nVirtualMoreFrag(struct ath_hal *ah, struct ath_desc *ds, u_int vmf) argument

Completed in 142 milliseconds