HomeSort by relevance Sort by last modified time
    Searched refs:StorageWidth (Results 1 - 17 of 17) sorted by null

  /device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckHiiLib/
InternalVarCheckStructure.h 44 UINT8 StorageWidth;
51 UINT8 StorageWidth;
59 UINT8 StorageWidth;
66 UINT8 StorageWidth;
75 UINT8 StorageWidth;
VarCheckHiiLibNullClass.c 97 if ((UINTN) (HiiQuestion->VarOffset + HiiQuestion->StorageWidth) > DataSize) {
98 DEBUG ((EFI_D_INFO, "VarCheckHiiQuestion fail: (VarOffset(0x%04x) + StorageWidth(0x%02x)) > Size(0x%x)\n", HiiQuestion->VarOffset, HiiQuestion->StorageWidth, DataSize));
103 CopyMem (&OneData, (UINT8 *) Data + HiiQuestion->VarOffset, HiiQuestion->StorageWidth);
110 CopyMem (&OneValue, Ptr, HiiQuestion->StorageWidth);
117 Ptr += HiiQuestion->StorageWidth;
141 CopyMem (&Minimum, Ptr, HiiQuestion->StorageWidth);
142 Ptr += HiiQuestion->StorageWidth;
143 CopyMem (&Maximum, Ptr, HiiQuestion->StorageWidth);
144 Ptr += HiiQuestion->StorageWidth;
    [all...]
VarCheckHiiGen.c 504 ASSERT ((HiiQuestion1->OpCode == HiiQuestion2->OpCode) && (HiiQuestion1->StorageWidth == HiiQuestion2->StorageWidth));
520 CopyMem (&OneValue2, Ptr2, HiiQuestion2->StorageWidth);
525 CopyMem (&OneValue1, Ptr1, HiiQuestion1->StorageWidth);
532 Ptr1 += HiiQuestion1->StorageWidth;
538 NewLength = (UINT8) (NewLength + HiiQuestion1->StorageWidth);
540 Ptr2 += HiiQuestion2->StorageWidth;
559 CopyMem (&OneValue2, Ptr2, HiiQuestion2->StorageWidth);
564 CopyMem (&OneValue1, Ptr1, HiiQuestion1->StorageWidth);
571 Ptr1 += HiiQuestion1->StorageWidth;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckPcdLib/
VarCheckPcdStructure.h 50 UINT8 StorageWidth;
57 UINT8 StorageWidth;
70 UINT8 StorageWidth;
VarCheckPcdLibNullClass.c 105 CopyMem (&OneData, (UINT8 *) Data + PcdValidData->VarOffset, PcdValidData->StorageWidth);
112 CopyMem (&OneValue, Ptr, PcdValidData->StorageWidth);
119 Ptr += PcdValidData->StorageWidth;
136 CopyMem (&Minimum, Ptr, PcdValidData->StorageWidth);
137 Ptr += PcdValidData->StorageWidth;
138 CopyMem (&Maximum, Ptr, PcdValidData->StorageWidth);
139 Ptr += PcdValidData->StorageWidth;
225 if (((UINTN) PcdValidData->VarOffset + PcdValidData->StorageWidth) <= DataSize) {
270 DEBUG ((EFI_D_INFO, " StorageWidth - 0x%02x\n", PcdValidData->StorageWidth));
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
ValidCheckingInfoObject.py 66 realLength += item.StorageWidth
68 realLength += item.StorageWidth
69 realLength += item.StorageWidth
153 b = pack("=B", item.StorageWidth)
158 b = pack(FormatMap[item.StorageWidth], v_data)
160 realLength += item.StorageWidth
162 b = pack(FormatMap[item.StorageWidth], v_data[0])
164 realLength += item.StorageWidth
165 b = pack(FormatMap[item.StorageWidth], v_data[1])
167 realLength += item.StorageWidth
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Protocol/
FrameworkFormCallback.h 99 UINT8 StorageWidth; ///< Width of the value.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
UefiIfrParser.c 808 CurrentStatement->StorageWidth = (UINT16) sizeof (UINT8);
816 CurrentStatement->StorageWidth = (UINT16) sizeof (UINT16);
824 CurrentStatement->StorageWidth = (UINT16) sizeof (UINT32);
832 CurrentStatement->StorageWidth = (UINT16) sizeof (UINT64);
852 CurrentStatement->StorageWidth = (UINT16)(CurrentStatement->MaxContainers * sizeof (UINT8));
860 CurrentStatement->BufferValue = AllocateZeroPool (CurrentStatement->StorageWidth);
869 CurrentStatement->StorageWidth = (UINT16) sizeof (BOOLEAN);
885 CurrentStatement->StorageWidth = (UINT16)((UINTN) CurrentStatement->Maximum * sizeof (UINT16));
889 CurrentStatement->BufferValue = AllocateZeroPool (CurrentStatement->StorageWidth);
904 CurrentStatement->StorageWidth = (UINT16)((UINTN) CurrentStatement->Maximum * sizeof (UINT16));
    [all...]
UefiIfrDefault.c 119 SetNodeBuffer (Node, HiiValue, Question->VarStoreInfo.VarOffset, Question->StorageWidth);
144 SetNodeBuffer (Node, HiiValue, Question->VarStoreInfo.VarOffset, Question->StorageWidth);
169 SetNodeBuffer (Node, HiiValue, Question->VarStoreInfo.VarOffset, Question->StorageWidth);
UefiIfrParser.h 204 UINT16 StorageWidth;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
Setup.c     [all...]
IfrParse.c 716 Question->StorageWidth
    [all...]
Presentation.c 344 DisplayStatement->CurrentValue.Buffer = AllocateCopyPool(Statement->StorageWidth,Statement->BufferValue);
345 DisplayStatement->CurrentValue.BufferLen = Statement->StorageWidth;
    [all...]
Setup.h 331 UINT16 StorageWidth;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
InputHandler.c 385 @param StorageWidth The storage width info for this opcode.
397 OUT UINT16 *StorageWidth
416 *StorageWidth = (UINT16) sizeof (UINT8);
430 *StorageWidth = (UINT16) sizeof (UINT16);
444 *StorageWidth = (UINT16) sizeof (UINT32);
458 *StorageWidth = (UINT16) sizeof (UINT64);
508 UINT16 StorageWidth;
516 StorageWidth = 0;
620 GetValueFromNum(Question->OpCode, (NumericOp->Flags & EFI_IFR_DISPLAY) == 0, QuestionValue, &EditValue, &Minimum, &Maximum, &Step, &StorageWidth);
641 InputWidth = StorageWidth * 2;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Include/
EfiInternalFormRepresentation.h 420 UINT8 StorageWidth; // Width of the value
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
ConfigRouting.c     [all...]

Completed in 637 milliseconds