Searched defs:Size (Results 126 - 150 of 315) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiPciLibPciRootBridgeIo/
H A DPciLib.c1232 Size into the buffer specified by Buffer. This function only allows the PCI
1233 configuration registers from a single PCI function to be read. Size is
1235 from StartAdress to StartAddress + Size. Due to alignment restrictions, 8-bit
1240 If ((StartAddress & 0xFFF) + Size) > 0x1000, then ASSERT().
1241 If Size > 0 and Buffer is NULL, then ASSERT().
1245 @param Size The size in bytes of the transfer.
1248 @return Size
1255 IN UINTN Size,
1262 ASSERT (((StartAddress & 0xFFF) + Size) <= 0x1000);
1264 if (Size
1253 PciReadBuffer( IN UINTN StartAddress, IN UINTN Size, OUT VOID *Buffer ) argument
1351 PciWriteBuffer( IN UINTN StartAddress, IN UINTN Size, IN VOID *Buffer ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiPciSegmentLibPciRootBridgeIo/
H A DPciSegmentLib.c1284 Size into the buffer specified by Buffer. This function only allows the PCI
1285 configuration registers from a single PCI function to be read. Size is
1287 from StartAdress to StartAddress + Size. Due to alignment restrictions, 8-bit
1292 If ((StartAddress & 0xFFF) + Size) > 0x1000, then ASSERT().
1293 If Size > 0 and Buffer is NULL, then ASSERT().
1297 @param Size The size in bytes of the transfer.
1300 @return Size
1307 IN UINTN Size,
1314 ASSERT (((StartAddress & 0xFFF) + Size) <= 0x1000);
1316 if (Size
1305 PciSegmentReadBuffer( IN UINT64 StartAddress, IN UINTN Size, OUT VOID *Buffer ) argument
1403 PciSegmentWriteBuffer( IN UINT64 StartAddress, IN UINTN Size, IN VOID *Buffer ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/Sec/
H A DSecMain.c150 UINT32 Size; local
172 Size = SECTION_SIZE (Section);
173 if (Size < sizeof (*Section)) {
177 EndOfSection = CurrentAddress + Size;
222 UINT32 Size; local
244 Size = *(UINT32*) File->Size & 0xffffff;
245 if (Size < (sizeof (*File) + sizeof (EFI_COMMON_SECTION_HEADER))) {
250 EndOfFile = CurrentAddress + Size;
450 UINT32 Size; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/PerformancePkg/Dp_App/
H A DDpTrace.c138 UINTN Size; local
151 Size = 0;
153 Status = gBS->LocateHandle (AllHandles, NULL, NULL, &Size, &TempHandle);
155 HandleBuffer = AllocatePool (Size);
160 Status = gBS->LocateHandle (AllHandles, NULL, NULL, &Size, HandleBuffer);
217 for (TIndex = 0; TIndex < (Size / sizeof(HandleBuffer[0])); TIndex++) {
521 UINTN Size; local
533 Size = 0;
535 Status = gBS->LocateHandle (AllHandles, NULL, NULL, &Size, &TempHandle);
537 HandleBuffer = AllocatePool (Size);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Include/Guid/
H A DAuthenticatedVariableFormat.h116 /// Size of entire variable store,
119 UINT32 Size; member in struct:__anon12675
175 /// Size of variable null-terminated Unicode string name.
179 /// Size of the variable data without this header.
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Library/DxeTcgPhysicalPresenceLib/
H A DDxeTcgPhysicalPresenceLib.c196 UINT32 Size; local
204 Size = (UINT32)(sizeof (*TpmRqu) + AdditionalParameterSize);
205 TpmRqu->paramSize = SwapBytes32 (Size);
211 Size,
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Tcg/TcgConfigDxe/
H A DTcgConfigImpl.c158 UINTN Size; local
175 Size = 0;
223 Size = (StrLen (ConfigRequestHdr) + 32 + 1) * sizeof (CHAR16);
224 ConfigRequest = AllocateZeroPool (Size);
227 UnicodeSPrint (ConfigRequest, Size, L"%s&OFFSET=0&WIDTH=%016LX", ConfigRequestHdr, (UINT64) BufferSize);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DBasePeCoff.c112 UINTN Size; local
118 Size = sizeof (EFI_IMAGE_DOS_HEADER);
122 &Size,
272 UINTN Size; local
345 } else if ((ImageContext->IsTeImage) && (TeHdr->DataDirectory[0].Size == 0)) {
400 Size = sizeof (EFI_IMAGE_SECTION_HEADER);
404 &Size,
423 for (Index = 0; Index < DebugDirectoryEntry->Size; Index += sizeof (EFI_IMAGE_DEBUG_DIRECTORY_ENTRY)) {
427 Size = sizeof (EFI_IMAGE_DEBUG_DIRECTORY_ENTRY);
431 &Size,
858 UINTN Size; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/EfiRom/
H A DEfiRom.c60 UINT32 Size; local
147 Size = 0;
153 Status = ProcessEfiFile (FptrOut, FList, mOptions.VendId, mOptions.DevId, &Size);
159 Status = ProcessBinFile (FptrOut, FList, &Size);
166 VerboseMsg(" Output size = 0x%X\n", (unsigned) Size);
173 TotalSize += Size;
210 UINT32 *Size
222 Size - pointer to where to return the size added to the output file
292 *Size = TotalSize;
415 UINT32 *Size
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenFfs/
H A DGenFfs.c281 UINT32 Size; local
293 Size = 0;
305 while ((Size & 0x03) != 0) {
306 Size++;
376 if ((InputFileAlign [Index] != 0) && (((Size + HeaderSize + TeOffset) % InputFileAlign [Index]) != 0)) {
377 Offset = (Size + sizeof (EFI_COMMON_SECTION_HEADER) + HeaderSize + TeOffset + InputFileAlign [Index] - 1) & ~(InputFileAlign [Index] - 1);
378 Offset = Offset - Size - HeaderSize - TeOffset;
380 if (FileBuffer != NULL && ((Size + Offset) < *BufferLength)) {
381 memset (FileBuffer + Size, 0, Offset);
382 SectHeader = (EFI_COMMON_SECTION_HEADER *) (FileBuffer + Size);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShellParametersProtocol.c159 UINTN Size; local
170 Size = StrSize(CommandLine);
171 TempParameter = AllocateZeroPool(Size);
201 SetMem16(TempParameter, Size, CHAR_NULL);
239 UINTN Size; local
241 Size = 0;
292 Status = SHELL_GET_ENVIRONMENT_VARIABLE(L"ShellOpt", &Size, &FullCommandLine);
294 FullCommandLine = AllocateZeroPool(Size + LoadedImage->LoadOptionsSize);
295 Status = SHELL_GET_ENVIRONMENT_VARIABLE(L"ShellOpt", &Size, &FullCommandLine);
306 if (Size
582 UINTN Size; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiFileHandleLib/
H A DUefiFileHandleLib.c133 (UINTN)FileInfo->Size,
585 if Size is NULL then ASSERT()
591 @param Size pointer to size
600 OUT UINT64 *Size
606 // ASSERT for FileHandle or Size being NULL
609 ASSERT (Size != NULL);
620 // Assign the Size pointer to the correct value
622 *Size = FileInfo->FileSize;
641 @param Size New size.
650 IN UINT64 Size
805 UINTN Size; local
904 UINTN Size; local
947 FileHandleReadLine( IN EFI_FILE_HANDLE Handle, IN OUT CHAR16 *Buffer, IN OUT UINTN *Size, IN BOOLEAN Truncate, IN OUT BOOLEAN *Ascii ) argument
1051 UINTN Size; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
H A DTextEditorTypes.h49 UINTN Size; // unit is Unicode member in struct:_EFI_EDITOR_LINE
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
H A DHexEditorTypes.h46 UINTN Size; // unit is Unicode member in struct:_HEFI_EDITOR_LINE
76 UINTN Size; member in struct:__anon12813
84 UINTN Size; member in struct:__anon12814
89 UINTN Size; // file size member in struct:__anon12815
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DMemMap.c49 UINTN Size; local
93 Size = 0;
124 Status = gBS->GetMemoryMap(&Size, Buffer, &MapKey, &ItemSize, &Version);
126 Size += SIZE_1KB;
127 Buffer = AllocateZeroPool(Size);
128 Status = gBS->GetMemoryMap(&Size, Buffer, &MapKey, &ItemSize, &Version);
137 for (Walker = (UINT8*)Buffer; Walker < (((UINT8*)Buffer)+Size) && Walker != NULL; Walker += ItemSize){
H A DMm.c46 @param[in] Size The size of Buffer in Width sized units.
54 IN UINTN Size,
61 ASSERT(Size == 1);
79 Size--;
80 } while (Size > 0);
88 @param[in] Size The size of Buffer in Width sized units.
96 IN UINTN Size,
103 ASSERT(Size == 1);
123 Size--;
124 } while (Size >
51 ReadMem( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Size, OUT VOID *Buffer ) argument
93 WriteMem( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH Width, IN UINT64 Address, IN UINTN Size, IN VOID *Buffer ) argument
219 UINTN Size; local
[all...]
H A DUefiShellDebug1CommandsLib.c163 UINTN Size; local
168 Size = 16;
169 if (Size > DataSize) {
170 Size = DataSize;
173 for (Index = 0; Index < Size; Index += 1) {
185 Data += Size;
186 Offset += Size;
187 DataSize -= Size;
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/AcpiPlatformDxe/
H A DAcpiPlatform.c78 UINTN Size; local
126 &Size,
159 @param Size Number of bytes to checksum
165 IN UINTN Size
180 Buffer[ChecksumOffset] = CalculateCheckSum8(Buffer, Size);
346 UINTN Size; local
348 Size = 0;
384 Size = CurrentTable->Length;
385 DEBUG((EFI_D_ERROR, "adding %p %d\n", CurrentTable, Size));
394 &Size,
[all...]
/vbox/src/VBox/Additions/WINNT/include/
H A DVBoxDisplay.h81 RTRECTSIZE Size; member in struct:VBOXWDDM_RECOMMENDVIDPN_SOURCE
101 RTRECTSIZE Size; member in struct:VBOXDISPIFESCAPE_UPDATEMODES
/vbox/src/libs/xpcom18a4/xpcom/string/public/
H A DnsUTF8Utils.h294 size_t Size() const { return mBuffer - mStart; } function in class:ConvertUTF16toUTF8
385 size_t Size() const { return mSize; } function in class:CalculateUTF8Size
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/
H A DBdsConsole.c355 UINTN Size; local
378 Instance = GetNextDevicePathInstance (&CopyOfDevicePath, &Size);
592 @param GopBltSize Size of GopBlt in bytes.
662 if ((BmpHeader->Size != BmpImageSize) ||
663 (BmpHeader->Size < BmpHeader->ImageOffset) ||
664 (BmpHeader->Size - BmpHeader->ImageOffset != BmpHeader->PixelHeight * DataSizePerLine)) {
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
H A DBootMaint.c180 UINTN Size; local
194 Size = 0;
209 Size = (StrLen (ConfigRequestHdr) + 32 + 1) * sizeof (CHAR16);
210 ConfigRequest = AllocateZeroPool (Size);
213 UnicodeSPrint (ConfigRequest, Size, L"%s&OFFSET=0&WIDTH=%016LX", ConfigRequestHdr, (UINT64)BufferSize);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbBusDxe/
H A DUsbUtility.c754 UINTN Size; local
784 Size = GetDevicePathSize (UsbDevicePathBeginPtr);
785 Size -= GetDevicePathSize (UsbDevicePathEndPtr);
786 if (Size ==0){
796 UsbDevicePathPtr = AllocateZeroPool (Size + sizeof (EFI_DEVICE_PATH_PROTOCOL));
798 CopyMem (UsbDevicePathPtr, UsbDevicePathBeginPtr, Size);
802 UsbDevicePathEndPtr = (EFI_DEVICE_PATH_PROTOCOL *) ((UINTN) UsbDevicePathPtr + Size);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Dispatcher/
H A DDispatcher.c1099 UINTN Size; local
1199 &Size
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Image/
H A DImage.c354 UINTN Size; local
382 Size = sizeof (EFI_IMAGE_SECTION_HEADER);
386 &Size,
457 UINTN Size; local
516 Size = (UINTN)Image->ImageContext.ImageSize + Image->ImageContext.SectionAlignment;
518 Size = (UINTN)Image->ImageContext.ImageSize;
521 Image->NumberOfPages = EFI_SIZE_TO_PAGES (Size);

Completed in 96 milliseconds

1234567891011>>