Lines Matching full:in
6 * This program is distributed in the hope that it will be useful,
72 extern unsigned long kvm_hypercall(unsigned long *in,
83 static unsigned long kvm_hypercall(unsigned long *in, in kvm_hypercall() argument
94 unsigned long in[8]; in kvm_hypercall0_1() local
98 r = kvm_hypercall(in, out, nr | HC_VENDOR_KVM); in kvm_hypercall0_1()
106 unsigned long in[8]; in kvm_hypercall0() local
109 return kvm_hypercall(in, out, nr | HC_VENDOR_KVM); in kvm_hypercall0()
114 unsigned long in[8]; in kvm_hypercall1() local
117 in[0] = p1; in kvm_hypercall1()
118 return kvm_hypercall(in, out, nr | HC_VENDOR_KVM); in kvm_hypercall1()
124 unsigned long in[8]; in kvm_hypercall2() local
127 in[0] = p1; in kvm_hypercall2()
128 in[1] = p2; in kvm_hypercall2()
129 return kvm_hypercall(in, out, nr | HC_VENDOR_KVM); in kvm_hypercall2()
135 unsigned long in[8]; in kvm_hypercall3() local
138 in[0] = p1; in kvm_hypercall3()
139 in[1] = p2; in kvm_hypercall3()
140 in[2] = p3; in kvm_hypercall3()
141 return kvm_hypercall(in, out, nr | HC_VENDOR_KVM); in kvm_hypercall3()
148 unsigned long in[8]; in kvm_hypercall4() local
151 in[0] = p1; in kvm_hypercall4()
152 in[1] = p2; in kvm_hypercall4()
153 in[2] = p3; in kvm_hypercall4()
154 in[3] = p4; in kvm_hypercall4()
155 return kvm_hypercall(in, out, nr | HC_VENDOR_KVM); in kvm_hypercall4()