Lines Matching refs:input1
116 static inline u64 _hv_do_fast_hypercall8(u64 control, u64 input1) in _hv_do_fast_hypercall8() argument
122 return hv_tdx_hypercall(control, input1, 0); in _hv_do_fast_hypercall8()
128 "+c" (control), "+d" (input1) in _hv_do_fast_hypercall8()
133 "+c" (control), "+d" (input1) in _hv_do_fast_hypercall8()
139 u32 input1_hi = upper_32_bits(input1); in _hv_do_fast_hypercall8()
140 u32 input1_lo = lower_32_bits(input1); in _hv_do_fast_hypercall8()
155 static inline u64 hv_do_fast_hypercall8(u16 code, u64 input1) in hv_do_fast_hypercall8() argument
159 return _hv_do_fast_hypercall8(control, input1); in hv_do_fast_hypercall8()
163 static inline u64 _hv_do_fast_hypercall16(u64 control, u64 input1, u64 input2) in _hv_do_fast_hypercall16() argument
169 return hv_tdx_hypercall(control, input1, input2); in _hv_do_fast_hypercall16()
175 "+c" (control), "+d" (input1) in _hv_do_fast_hypercall16()
182 "+c" (control), "+d" (input1) in _hv_do_fast_hypercall16()
189 u32 input1_hi = upper_32_bits(input1); in _hv_do_fast_hypercall16()
190 u32 input1_lo = lower_32_bits(input1); in _hv_do_fast_hypercall16()
206 static inline u64 hv_do_fast_hypercall16(u16 code, u64 input1, u64 input2) in hv_do_fast_hypercall16() argument
210 return _hv_do_fast_hypercall16(control, input1, input2); in hv_do_fast_hypercall16()