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

/freebsd-10.2-release/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
513 vm86_prepcall(struct vm86frame *vmf) argument
548 vm86_trap(struct vm86frame *vmf) argument
566 vm86_intcall(int intnum, struct vm86frame *vmf) argument
[all...]
H A Dmachdep.c2483 struct vm86frame vmf; local
2512 bzero(&vmf, sizeof(vmf));
2553 vm86_intcall(0x12, &vmf);
2554 basemem = vmf.vmf_ax;
2566 res = vm86_getptr(&vmc, (vm_offset_t)smap, &vmf.vmf_es, &vmf.vmf_di);
2569 vmf.vmf_ebx = 0;
2571 vmf.vmf_eax = 0xE820;
2572 vmf
[all...]
/freebsd-10.2-release/sys/i386/bios/
H A Dmca_machdep.c74 struct vm86frame vmf; local
78 bzero(&vmf, sizeof(struct vm86frame));
80 vmf.vmf_ah = 0xc0;
81 if (vm86_intcall(0x15, &vmf)) {
88 if ((vmf.vmf_ah != 0) && (vmf.vmf_flags & 0x01)) {
92 vmf.vmf_ah, vmf.vmf_flags);
97 paddr = vmf.vmf_es;
98 paddr = (paddr << 4) + vmf
[all...]
H A Dapm.c896 struct vm86frame vmf; local
914 bzero(&vmf, sizeof(struct vm86frame)); /* safety */
916 vmf.vmf_ah = APM_BIOS;
917 vmf.vmf_al = APM_INSTCHECK;
918 vmf.vmf_bx = 0;
919 if (vm86_intcall(APM_INT, &vmf))
921 if (vmf.vmf_bx != 0x504d) {
922 printf("apm: incorrect signature (0x%x)\n", vmf.vmf_bx);
925 if ((vmf.vmf_cx & (APM_32BIT_SUPPORT | APM_16BIT_SUPPORT)) == 0) {
930 apm_version = vmf
[all...]
/freebsd-10.2-release/sys/compat/x86bios/
H A Dx86bios.c90 x86bios_emu2vmf(struct x86emu_regs *regs, struct vm86frame *vmf) argument
93 vmf->vmf_ds = regs->R_DS;
94 vmf->vmf_es = regs->R_ES;
95 vmf->vmf_ax = regs->R_AX;
96 vmf->vmf_bx = regs->R_BX;
97 vmf->vmf_cx = regs->R_CX;
98 vmf->vmf_dx = regs->R_DX;
99 vmf->vmf_bp = regs->R_BP;
100 vmf->vmf_si = regs->R_SI;
101 vmf
105 x86bios_vmf2emu(struct vm86frame *vmf, struct x86emu_regs *regs) argument
182 struct vm86frame vmf; local
217 struct vm86frame vmf; local
[all...]
/freebsd-10.2-release/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-10.2-release/sys/i386/include/
H A Dvm86.h145 struct vm86frame vmf; member in struct:vm86_intcall_args
/freebsd-10.2-release/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-10.2-release/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_xmit_ds.c936 u_int vmf)
940 if (vmf) {
935 ar9300_set_11n_virtual_more_frag(struct ath_hal *ah, struct ath_desc *ds, u_int vmf) argument
H A Dar9300desc.h554 struct ath_desc *ds, u_int vmf);
/freebsd-10.2-release/sys/dev/ath/ath_hal/ar5416/
H A Dar5416.h419 struct ath_desc *ds, u_int vmf);
H A Dar5416_xmit.c1047 u_int vmf)
1050 if (vmf)
1046 ar5416Set11nVirtualMoreFrag(struct ath_hal *ah, struct ath_desc *ds, u_int vmf) argument

Completed in 64 milliseconds