Lines Matching refs:Step
396 OUT UINT64 *Step, in GetValueFromNum() argument
415 *Step = NumericOp->data.u8.Step; in GetValueFromNum()
429 *Step = NumericOp->data.u16.Step; in GetValueFromNum()
443 *Step = NumericOp->data.u32.Step; in GetValueFromNum()
457 *Step = NumericOp->data.u64.Step; in GetValueFromNum()
499 UINT64 Step; in GetNumericInput() local
546 Step = 1; in GetNumericInput()
592 Step = 1; in GetNumericInput()
620 …lags & EFI_IFR_DISPLAY) == 0, QuestionValue, &EditValue, &Minimum, &Maximum, &Step, &StorageWidth); in GetNumericInput()
789 if ((Step != 0) && !ManualInput) { in GetNumericInput()
792 if ((INT64) EditValue >= (INT64) Minimum + (INT64) Step) { in GetNumericInput()
793 EditValue = EditValue - Step; in GetNumericInput()
800 if (EditValue >= Minimum + Step) { in GetNumericInput()
801 EditValue = EditValue - Step; in GetNumericInput()
810 if ((INT64) EditValue + (INT64) Step <= (INT64) Maximum) { in GetNumericInput()
811 EditValue = EditValue + Step; in GetNumericInput()
818 if (EditValue + Step <= Maximum) { in GetNumericInput()
819 EditValue = EditValue + Step; in GetNumericInput()