Home
last modified time | relevance | path

Searched refs:input1 (Results 1 - 17 of 17) sorted by relevance

/kernel/linux/linux-6.6/arch/x86/include/asm/
H A Dmshyperv.h129 static inline u64 _hv_do_fast_hypercall8(u64 control, u64 input1) in _hv_do_fast_hypercall8() argument
135 return hv_tdx_hypercall(control, input1, 0); in _hv_do_fast_hypercall8()
141 "+c" (control), "+d" (input1) in _hv_do_fast_hypercall8()
146 "+c" (control), "+d" (input1) in _hv_do_fast_hypercall8()
152 u32 input1_hi = upper_32_bits(input1); in _hv_do_fast_hypercall8()
153 u32 input1_lo = lower_32_bits(input1); in _hv_do_fast_hypercall8()
168 static inline u64 hv_do_fast_hypercall8(u16 code, u64 input1) in hv_do_fast_hypercall8() argument
172 return _hv_do_fast_hypercall8(control, input1); in hv_do_fast_hypercall8()
175 static inline u64 hv_do_fast_nested_hypercall8(u16 code, u64 input1) in hv_do_fast_nested_hypercall8() argument
179 return _hv_do_fast_hypercall8(control, input1); in hv_do_fast_nested_hypercall8()
183 _hv_do_fast_hypercall16(u64 control, u64 input1, u64 input2) _hv_do_fast_hypercall16() argument
226 hv_do_fast_hypercall16(u16 code, u64 input1, u64 input2) hv_do_fast_hypercall16() argument
233 hv_do_fast_nested_hypercall16(u16 code, u64 input1, u64 input2) hv_do_fast_nested_hypercall16() argument
[all...]
/kernel/linux/linux-5.10/arch/x86/include/asm/
H A Dmshyperv.h121 static inline u64 hv_do_fast_hypercall8(u16 code, u64 input1) in hv_do_fast_hypercall8() argument
129 "+c" (control), "+d" (input1) in hv_do_fast_hypercall8()
135 u32 input1_hi = upper_32_bits(input1); in hv_do_fast_hypercall8()
136 u32 input1_lo = lower_32_bits(input1); in hv_do_fast_hypercall8()
152 static inline u64 hv_do_fast_hypercall16(u16 code, u64 input1, u64 input2) in hv_do_fast_hypercall16() argument
161 "+c" (control), "+d" (input1) in hv_do_fast_hypercall16()
168 u32 input1_hi = upper_32_bits(input1); in hv_do_fast_hypercall16()
169 u32 input1_lo = lower_32_bits(input1); in hv_do_fast_hypercall16()
/kernel/linux/linux-5.10/drivers/accessibility/speakup/
H A Di18n.c479 * Compare the format specifiers pointed to by *input1 and *input2.
481 * Advance *input1 and *input2 so that they point to the character following
484 static bool compare_specifiers(char **input1, char **input2) in compare_specifiers() argument
487 char *end1 = find_specifier_end(*input1); in compare_specifiers()
489 size_t length1 = end1 - *input1; in compare_specifiers()
492 if ((length1 == length2) && !memcmp(*input1, *input2, length1)) in compare_specifiers()
495 *input1 = end1; in compare_specifiers()
/kernel/linux/linux-6.6/drivers/accessibility/speakup/
H A Di18n.c486 * Compare the format specifiers pointed to by *input1 and *input2.
488 * Advance *input1 and *input2 so that they point to the character following
491 static bool compare_specifiers(char **input1, char **input2) in compare_specifiers() argument
494 char *end1 = find_specifier_end(*input1); in compare_specifiers()
496 size_t length1 = end1 - *input1; in compare_specifiers()
499 if ((length1 == length2) && !memcmp(*input1, *input2, length1)) in compare_specifiers()
502 *input1 = end1; in compare_specifiers()
/kernel/linux/linux-5.10/drivers/media/tuners/
H A Dtuner-xc2028.h40 unsigned int input1:1; member
H A Dtuner-xc2028.c1167 if (priv->ctrl.input1) in xc2028_set_analog_freq()
/kernel/linux/linux-6.6/drivers/media/tuners/
H A Dxc2028.h40 unsigned int input1:1; member
H A Dxc2028.c1167 if (priv->ctrl.input1) in xc2028_set_analog_freq()
/kernel/linux/linux-5.10/drivers/pinctrl/
H A Dpinctrl-pic32.c293 FUNCTION(INT4, input1),
294 FUNCTION(T5CK, input1),
295 FUNCTION(T7CK, input1),
296 FUNCTION(IC4, input1),
297 FUNCTION(IC8, input1),
298 FUNCTION(U3RX, input1),
299 FUNCTION(U4CTS, input1),
300 FUNCTION(SDI2, input1),
301 FUNCTION(SDI4, input1),
302 FUNCTION(C1RX, input1),
[all...]
/kernel/linux/linux-6.6/drivers/pinctrl/
H A Dpinctrl-pic32.c293 FUNCTION(INT4, input1),
294 FUNCTION(T5CK, input1),
295 FUNCTION(T7CK, input1),
296 FUNCTION(IC4, input1),
297 FUNCTION(IC8, input1),
298 FUNCTION(U3RX, input1),
299 FUNCTION(U4CTS, input1),
300 FUNCTION(SDI2, input1),
301 FUNCTION(SDI4, input1),
302 FUNCTION(C1RX, input1),
[all...]
/kernel/linux/linux-5.10/drivers/platform/x86/
H A Ddell-laptop.c1323 u32 input1; in kbd_set_state() local
1326 input1 = BIT(state->mode_bit) & 0xFFFF; in kbd_set_state()
1327 input1 |= (state->triggers & 0xFF) << 16; in kbd_set_state()
1328 input1 |= (state->timeout_value & 0x3F) << 24; in kbd_set_state()
1329 input1 |= (state->timeout_unit & 0x3) << 30; in kbd_set_state()
1334 dell_fill_request(&buffer, 0x2, input1, input2, 0); in kbd_set_state()
/kernel/linux/linux-6.6/drivers/platform/x86/dell/
H A Ddell-laptop.c1340 u32 input1; in kbd_set_state() local
1343 input1 = BIT(state->mode_bit) & 0xFFFF; in kbd_set_state()
1344 input1 |= (state->triggers & 0xFF) << 16; in kbd_set_state()
1345 input1 |= (state->timeout_value & 0x3F) << 24; in kbd_set_state()
1346 input1 |= (state->timeout_unit & 0x3) << 30; in kbd_set_state()
1351 dell_fill_request(&buffer, 0x2, input1, input2, 0); in kbd_set_state()
/kernel/linux/linux-6.6/drivers/net/ethernet/marvell/octeontx2/af/
H A Drvu_npc_fs.c162 static bool npc_check_overlap_fields(struct npc_key_field *input1, in npc_check_overlap_fields() argument
170 if (input1->layer_mdata.lid == input2->layer_mdata.lid && in npc_check_overlap_fields()
171 input1->layer_mdata.ltype != input2->layer_mdata.ltype) in npc_check_overlap_fields()
175 if (input1->kw_mask[kwi] & input2->kw_mask[kwi]) in npc_check_overlap_fields()
/kernel/linux/linux-5.10/drivers/gpu/drm/gma500/
H A Dpsb_intel_sdvo.c1108 bool input1, input2; in psb_intel_sdvo_dpms() local
1122 status = psb_intel_sdvo_get_trained_inputs(psb_intel_sdvo, &input1, &input2); in psb_intel_sdvo_dpms()
1127 if (status == SDVO_CMD_STATUS_SUCCESS && !input1) { in psb_intel_sdvo_dpms()
/kernel/linux/linux-6.6/drivers/gpu/drm/gma500/
H A Dpsb_intel_sdvo.c1130 bool input1, input2; in psb_intel_sdvo_dpms() local
1144 status = psb_intel_sdvo_get_trained_inputs(psb_intel_sdvo, &input1, &input2); in psb_intel_sdvo_dpms()
1149 if (status == SDVO_CMD_STATUS_SUCCESS && !input1) { in psb_intel_sdvo_dpms()
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/display/
H A Dintel_sdvo.c1827 bool input1, input2; in intel_enable_sdvo() local
1838 success = intel_sdvo_get_trained_inputs(intel_sdvo, &input1, &input2); in intel_enable_sdvo()
1845 if (success && !input1) { in intel_enable_sdvo()
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/display/
H A Dintel_sdvo.c1872 bool input1, input2; in intel_enable_sdvo() local
1883 success = intel_sdvo_get_trained_inputs(intel_sdvo, &input1, &input2); in intel_enable_sdvo()
1890 if (success && !input1) { in intel_enable_sdvo()

Completed in 34 milliseconds