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

  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
Compress.h 35 IN UINT8 *DstBuffer,
51 IN UINT8 *DstBuffer,
66 DstBuffer - The buffer to store the compressed data
67 DstSize - On input, the size of DstBuffer; On output,
72 EFI_BUFFER_TOO_SMALL - The DstBuffer is too small. In this case,
84 IN UINT8 *DstBuffer,
EfiCompress.c 263 IN UINT8 *DstBuffer,
276 DstBuffer - The buffer to store the compressed data
277 DstSize - On input, the size of DstBuffer; On output,
282 EFI_BUFFER_TOO_SMALL - The DstBuffer is too small. In this case,
306 mDst = DstBuffer;
336 mDst = DstBuffer;
TianoCompress.c 269 IN UINT8 *DstBuffer,
282 DstBuffer - The buffer to store the compressed data
283 DstSize - On input, the size of DstBuffer; On output,
291 EFI_BUFFER_TOO_SMALL - The DstBuffer is too small. In this case,
316 mDst = DstBuffer;
343 mDst = DstBuffer;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
Compress.h 37 IN UINT8 *DstBuffer,
52 IN UINT8 *DstBuffer,
66 DstBuffer - The buffer to store the compressed data
67 DstSize - On input, the size of DstBuffer; On output,
72 EFI_BUFFER_TOO_SMALL - The DstBuffer is too small. In this case,
84 IN UINT8 *DstBuffer,
EfiCustomizedCompress.h 108 IN UINT8 *DstBuffer,
122 DstBuffer - The buffer to store the compressed data
123 DstSize - On input, the size of DstBuffer; On output,
128 EFI_BUFFER_TOO_SMALL - The DstBuffer is too small. In this case,
TianoCompress.c 73 IN UINT8 *DstBuffer,
289 IN UINT8 *DstBuffer,
302 DstBuffer - The buffer to store the compressed data
303 DstSize - On input, the size of DstBuffer; On output,
311 EFI_BUFFER_TOO_SMALL - The DstBuffer is too small. In this case,
336 mDst = DstBuffer;
363 mDst = DstBuffer;
EfiCompress.c 273 IN UINT8 *DstBuffer,
286 DstBuffer - The buffer to store the compressed data
287 DstSize - On input, the size of DstBuffer; On output,
292 EFI_BUFFER_TOO_SMALL - The DstBuffer is too small. In this case,
316 mDst = DstBuffer;
346 mDst = DstBuffer;
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
Compress.h 23 @param[in] DstBuffer The buffer to put the compressed image in.
24 @param[in, out] DstSize On input the size (in bytes) of DstBuffer, on
25 return the number of bytes placed in DstBuffer.
35 IN VOID *DstBuffer,
Compress.c 1341 @param[in] DstBuffer The buffer to put the compressed image in.
1342 @param[in, out] DstSize On input the size (in bytes) of DstBuffer, on
1343 return the number of bytes placed in DstBuffer.
1353 IN VOID *DstBuffer,
1374 mDst = DstBuffer;
1401 mDst = DstBuffer;
  /device/linaro/bootloader/edk2/IntelFspPkg/FspDxeIpl/
DxeIpl.c 273 UINT8 *DstBuffer;
331 DstBuffer = AllocatePages (EFI_SIZE_TO_PAGES (DstBufferSize) + 1);
332 if (DstBuffer == NULL) {
336 // DstBuffer still is one section. Adjust DstBuffer offset, skip EFI section header
339 DstBuffer = DstBuffer + EFI_PAGE_SIZE - sizeof (EFI_COMMON_SECTION_HEADER);
345 DstBuffer,
362 DstBuffer = AllocatePages (EFI_SIZE_TO_PAGES (DstBufferSize) + 1);
363 if (DstBuffer == NULL) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/DxeIplPeim/
DxeLoad.c 594 UINT8 *DstBuffer;
653 DstBuffer = AllocatePages (EFI_SIZE_TO_PAGES (DstBufferSize) + 1);
654 if (DstBuffer == NULL) {
658 // DstBuffer still is one section. Adjust DstBuffer offset, skip EFI section header
661 DstBuffer = DstBuffer + EFI_PAGE_SIZE - sizeof (EFI_COMMON_SECTION_HEADER);
667 DstBuffer,
692 DstBuffer = AllocatePages (EFI_SIZE_TO_PAGES (DstBufferSize) + 1);
693 if (DstBuffer == NULL) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/EfiCompress/
EfiCompressMain.c 268 UINT8 *DstBuffer;
271 SrcBuffer = DstBuffer = NULL;
314 Status = CompressFunc (SrcBuffer, SrcSize, DstBuffer, &DstSize);
319 if ((DstBuffer = malloc (DstSize)) == NULL) {
324 Status = CompressFunc (SrcBuffer, SrcSize, DstBuffer, &DstSize);
332 if (DstBuffer == NULL) {
340 if (fwrite (DstBuffer, 1, DstSize, OutFileP) != DstSize) {
352 if (DstBuffer) {
353 free (DstBuffer);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/LoadPe32Image/
LoadPe32Image.h 42 IN EFI_PHYSICAL_ADDRESS DstBuffer OPTIONAL,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/CustomizedCompress/
CustomizedCompress.c 119 IN UINT8 *DstBuffer,
132 DstBuffer - The buffer to store the compressed data
133 DstSize - On input, the size of DstBuffer; On output,
138 EFI_BUFFER_TOO_SMALL - The DstBuffer is too small. In this case,
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Image/
Image.h 53 @param DstBuffer The buffer to store the image.
88 IN EFI_PHYSICAL_ADDRESS DstBuffer OPTIONAL,
Image.c 436 @param DstBuffer The buffer to store the image
453 IN EFI_PHYSICAL_ADDRESS DstBuffer OPTIONAL,
513 if (DstBuffer == 0) {
581 if (Image->ImageContext.RelocationsStripped && (Image->ImageContext.ImageAddress != DstBuffer)) {
598 Image->ImageContext.ImageAddress = DstBuffer;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/
LoadPe32Image.h 39 @param DstBuffer The buffer to store the image.
69 IN EFI_PHYSICAL_ADDRESS DstBuffer OPTIONAL,
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
Dispatcher.c 320 EFI_PHYSICAL_ADDRESS DstBuffer;
477 DstBuffer = (UINTN)gLoadModuleAtFixAddressSmramBase;
484 DstBuffer = (UINTN)(-1);
490 &DstBuffer
498 ImageContext.ImageAddress = (EFI_PHYSICAL_ADDRESS)DstBuffer;
502 DstBuffer = (UINTN)(-1);
508 &DstBuffer
517 ImageContext.ImageAddress = (EFI_PHYSICAL_ADDRESS)DstBuffer;
533 SmmFreePages (DstBuffer, PageCount);
545 SmmFreePages (DstBuffer, PageCount);
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/PrePiLib/
FwVol.c 302 VOID *DstBuffer;
357 DstBuffer = (VOID *)(UINTN)AllocatePages (EFI_SIZE_TO_PAGES (DstBufferSize) + 1);
358 if (DstBuffer == NULL) {
362 // DstBuffer still is one section. Adjust DstBuffer offset, skip EFI section header
365 DstBuffer = (UINT8 *)DstBuffer + EFI_PAGE_SIZE - sizeof (EFI_COMMON_SECTION_HEADER);
372 DstBuffer,
378 &DstBuffer,
393 DstBuffer,
    [all...]
  /external/vboot_reference/utility/include/
eficompress.h 64 IN UINT8 *DstBuffer,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
AmlString.c 351 @param[in] DstBuffer Destination buffer.
357 IN UINT8 *DstBuffer,
366 DstBuffer[Index] = (UINT8)(SrcBuffer[Index] - 'a' + 'A');
368 DstBuffer[Index] = SrcBuffer[Index];
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/SmmBaseHelper/
SmmBaseHelper.c 686 EFI_PHYSICAL_ADDRESS DstBuffer;
695 DstBuffer = (UINTN)-1;
700 &DstBuffer
712 DstBuffer,
719 FreePages ((VOID *)(UINTN)DstBuffer, OrgPageCount);
731 RegisterSmramProfileImage (FilePath, DstBuffer, PageCount);
734 UnregisterSmramProfileImage (FilePath, DstBuffer, PageCount);
737 FreePages ((VOID *)(UINTN)DstBuffer, PageCount);
    [all...]
  /external/vboot_reference/utility/
eficompress.c 283 IN UINT8 *DstBuffer,
296 DstBuffer - The buffer to store the compressed data
297 DstSize - On input, the size of DstBuffer; On output,
302 EFI_BUFFER_TOO_SMALL - The DstBuffer is too small. In this case,
326 mDst = DstBuffer;
356 mDst = DstBuffer;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/
TianoCompress.c 89 IN UINT8 *DstBuffer,
102 DstBuffer - The buffer to store the compressed data
110 EFI_BUFFER_TOO_SMALL - The DstBuffer is too small. In this case,
136 mDst = DstBuffer;
166 mDst = DstBuffer;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dbgeng.h     [all...]

Completed in 433 milliseconds