Lines Matching refs:input1
129 static inline u64 _hv_do_fast_hypercall8(u64 control, u64 input1)
135 return hv_tdx_hypercall(control, input1, 0);
141 "+c" (control), "+d" (input1)
146 "+c" (control), "+d" (input1)
152 u32 input1_hi = upper_32_bits(input1);
153 u32 input1_lo = lower_32_bits(input1);
168 static inline u64 hv_do_fast_hypercall8(u16 code, u64 input1)
172 return _hv_do_fast_hypercall8(control, input1);
175 static inline u64 hv_do_fast_nested_hypercall8(u16 code, u64 input1)
179 return _hv_do_fast_hypercall8(control, input1);
183 static inline u64 _hv_do_fast_hypercall16(u64 control, u64 input1, u64 input2)
189 return hv_tdx_hypercall(control, input1, input2);
195 "+c" (control), "+d" (input1)
202 "+c" (control), "+d" (input1)
209 u32 input1_hi = upper_32_bits(input1);
210 u32 input1_lo = lower_32_bits(input1);
226 static inline u64 hv_do_fast_hypercall16(u16 code, u64 input1, u64 input2)
230 return _hv_do_fast_hypercall16(control, input1, input2);
233 static inline u64 hv_do_fast_nested_hypercall16(u16 code, u64 input1, u64 input2)
237 return _hv_do_fast_hypercall16(control, input1, input2);