Searched defs:FileSize (Results 26 - 35 of 35) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DFirmwareVolumeBuffer.c219 UINT32 FileSize; local
221 FileSize = FvBufExpand3ByteSize (File->Size);
240 FileSize - sizeof (EFI_FFS_FILE_HEADER)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenFv/
H A DGenFvInternalLib.c949 UINTN FileSize; local
978 FileSize = _filelength (fileno (NewFile));
983 FileBuffer = malloc (FileSize);
989 NumBytesRead = fread (FileBuffer, sizeof (UINT8), FileSize, NewFile);
999 if (NumBytesRead != sizeof (UINT8) * FileSize) {
1009 memcpy (FvImage->CurrentFilePointer, FileBuffer, FileSize);
1010 if (FvInfo->SizeofFvFiles[Index] > FileSize) {
1013 FvImage->CurrentFilePointer += FileSize;
1031 if (FileSize > (UINTN) ((UINTN) *VtfFileImage - (UINTN) FvImage->CurrentFilePointer)) {
1076 *VtfFileImage = (EFI_FFS_FILE_HEADER *) (UINTN) ((UINTN) FvImage->FileImage + FvInfo->Size - FileSize);
1191 UINTN FileSize; local
2003 UINTN FileSize; local
3590 UINT32 FileSize; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenVtf/
H A DGenVtf.c1143 UINT64 FileSize; local
1162 FileSize = _filelength (fileno (Fp));
1168 FileSize -= SIZE_OF_PAL_HEADER;
1172 if (FileSize > VtfInfo->CompSize) {
1177 FileSize = VtfInfo->CompSize;
1180 Buffer = malloc ((UINTN) FileSize);
1184 memset (Buffer, 0, (UINTN) FileSize);
1202 fread (Buffer, sizeof (UINT8), (UINTN) FileSize, Fp);
1217 CompStartAddress = (Vtf2LastStartAddress - FileSize);
1219 CompStartAddress = (Vtf1LastStartAddress - FileSize);
1330 UINT64 FileSize; local
1759 UINTN FileSize; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
H A DFileBuffer.c788 UINTN FileSize; local
797 FileSize = 0;
840 FileSize = (UINTN) Info->FileSize;
902 Buffer = AllocateZeroPool (FileSize);
909 Status = ShellReadFile (FileHandle, &FileSize, Buffer);
920 if (FileSize == 0) {
932 if (FileSize < 2) {
945 if ((FileSize % 2) != 0) {
951 FileSize /
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c1609 UINTN FileSize; local
1623 FileSize = ftell (InputFile);
1628 if (FileSize > 0 && FileBuffer != NULL) {
1629 if (fread (FileBuffer, FileSize, 1, InputFile) != 1) {
1637 Size += (UINTN) FileSize;
/vbox/src/VBox/Storage/
H A DVHD.cpp792 uint64_t FileSize; local
815 rc = vdIfIoIntFileGetSize(pImage->pIfIo, pImage->pStorage, &FileSize);
816 pImage->uCurrentEndOfFile = FileSize - sizeof(VHDFooter);
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/
H A Dpxe_api.h688 UINT32_t FileSize; /**< Size of the file */ member in struct:s_PXENV_TFTP_GET_FSIZE
1622 UINT32_t FileSize; /**< File size */ member in struct:s_PXENV_GET_FILE_SIZE
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA.cpp154 uint32_t FileSize; /* Size of File */ member in struct:__anon13205
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dsetupapi.h742 DWORD FileSize; member in struct:_FILE_IN_CABINET_INFO_A
752 DWORD FileSize; member in struct:_FILE_IN_CABINET_INFO_W
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dsetupapi.h741 DWORD FileSize; member in struct:_FILE_IN_CABINET_INFO_A
751 DWORD FileSize; member in struct:_FILE_IN_CABINET_INFO_W

Completed in 393 milliseconds

12