Home | History | Annotate | Download | only in VarCheckHiiLib

Lines Matching refs:IfrNumeric

175               EFI_IFR_NUMERIC           *IfrNumeric;

210 IfrNumeric = (EFI_IFR_NUMERIC *) IfrOpCodeHeader;
211 DEBUG ((EFI_D_INFO, " Flags - 0x%02x\n", IfrNumeric->Flags));
212 switch (IfrNumeric->Flags & EFI_IFR_NUMERIC_SIZE) {
214 DEBUG ((EFI_D_INFO, " MinValue - 0x%02x\n", IfrNumeric->data.u8.MinValue));
215 DEBUG ((EFI_D_INFO, " MaxValue - 0x%02x\n", IfrNumeric->data.u8.MaxValue));
216 DEBUG ((EFI_D_INFO, " Step - 0x%02x\n", IfrNumeric->data.u8.Step));
219 DEBUG ((EFI_D_INFO, " MinValue - 0x%04x\n", IfrNumeric->data.u16.MinValue));
220 DEBUG ((EFI_D_INFO, " MaxValue - 0x%04x\n", IfrNumeric->data.u16.MaxValue));
221 DEBUG ((EFI_D_INFO, " Step - 0x%04x\n", IfrNumeric->data.u16.Step));
224 DEBUG ((EFI_D_INFO, " MinValue - 0x%08x\n", IfrNumeric->data.u32.MinValue));
225 DEBUG ((EFI_D_INFO, " MaxValue - 0x%08x\n", IfrNumeric->data.u32.MaxValue));
226 DEBUG ((EFI_D_INFO, " Step - 0x%08x\n", IfrNumeric->data.u32.Step));
229 DEBUG ((EFI_D_INFO, " MinValue - 0x%016lx\n", IfrNumeric->data.u64.MinValue));
230 DEBUG ((EFI_D_INFO, " MaxValue - 0x%016lx\n", IfrNumeric->data.u64.MaxValue));
231 DEBUG ((EFI_D_INFO, " Step - 0x%016lx\n", IfrNumeric->data.u64.Step));
912 EFI_IFR_NUMERIC *IfrNumeric;
916 IfrNumeric = (EFI_IFR_NUMERIC *) IfrOpCodeHeader;
921 Width = (UINT8) (1 << (IfrNumeric->Flags & EFI_IFR_NUMERIC_SIZE));
925 Numeric->VarOffset = IfrNumeric->Question.VarStoreInfo.VarOffset;
928 CopyMem (Numeric + 1, &IfrNumeric->data, Width * 2);