HomeSort by relevance Sort by last modified time
    Searched full:imageindex (Results 1 - 25 of 37) sorted by null

1 2

  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DeferredImageLoad.h 37 consecutively, starting with 0. If there is no image which corresponds to ImageIndex, then
45 @param[in] ImageIndex Zero-based index of the deferred index.
56 @retval EFI_NOT_FOUND ImageIndex does not refer to a valid image.
64 IN UINTN ImageIndex,
FirmwareManagement.h 45 UINT8 ImageIndex;
68 /// Size of the image in bytes. If size=0, then only ImageIndex and ImageTypeId are valid.
108 /// ImageIndex. For FMP instances that have multiple descriptors for a single
320 @param[in] ImageIndex A unique number identifying the firmware image(s) within the device.
340 IN UINT8 ImageIndex,
372 @param[in] ImageIndex A unique number identifying the firmware image(s) within the device.
395 IN UINT8 ImageIndex,
410 @param[in] ImageIndex A unique number identifying the firmware image(s) within the device.
427 IN UINT8 ImageIndex,
  /device/linaro/bootloader/edk2/SecurityPkg/Library/DxeDeferImageLoadLib/
DxeDeferImageLoadLib.h 72 ImageIndex, then EFI_NOT_FOUND is returned. All deferred images may be returned by
78 @param[in] ImageIndex Zero-based index of the deferred index.
89 @retval EFI_NOT_FOUND ImageIndex does not refer to a valid image.
98 IN UINTN ImageIndex,
DxeDeferImageLoadLib.c 709 ImageIndex, then EFI_NOT_FOUND is returned. All deferred images may be returned by
715 @param[in] ImageIndex Zero-based index of the deferred index.
726 @retval EFI_NOT_FOUND ImageIndex does not refer to a valid image.
735 IN UINTN ImageIndex,
756 if (ImageIndex >= mDeferredImage.Count) {
763 ReqImageInfo = &mDeferredImage.ImageInfo[ImageIndex];
  /frameworks/av/media/libstagefright/include/
ItemTable.h 54 status_t findPrimaryImage(uint32_t *imageIndex);
57 uint32_t *imageIndex, off64_t *offset, size_t *size);
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
LoadPciRom.c 208 UINTN ImageIndex;
227 ImageIndex = 0;
236 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_LOADPCIROM_CORRUPT), gShellDebug1HiiHandle, L"loadpcirom", FileName, ImageIndex);
237 // PrintToken (STRING_TOKEN (STR_LOADPCIROM_IMAGE_CORRUPT), HiiHandle, ImageIndex);
330 UnicodeSPrint (RomFileName, sizeof (RomFileName), L"%s[%d]", FileName, ImageIndex);
342 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_LOADPCIROM_LOAD_FAIL), gShellDebug1HiiHandle, L"loadpcirom", FileName, ImageIndex);
343 // PrintToken (STRING_TOKEN (STR_LOADPCIROM_LOAD_IMAGE_ERROR), HiiHandle, ImageIndex, Status);
347 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_LOADPCIROM_START_FAIL), gShellDebug1HiiHandle, L"loadpcirom", FileName, ImageIndex);
348 // PrintToken (STRING_TOKEN (STR_LOADPCIROM_START_IMAGE), HiiHandle, ImageIndex, Status);
363 ImageIndex++;
    [all...]
  /frameworks/av/media/libstagefright/
ItemTable.cpp 474 ssize_t imageIndex = itemIdToImageMap.indexOfKey(mItemId);
477 if (imageIndex < 0) {
484 ImageItem &image = itemIdToImageMap.editValueAt(imageIndex);
491 imageIndex = itemIdToImageMap.indexOfKey(mRefs[i]);
494 if (imageIndex < 0) {
498 ImageItem &image = itemIdToImageMap.editValueAt(imageIndex);
    [all...]
  /packages/apps/Messaging/jni/
GifTranscoder.cpp 138 int imageIndex = 0;
172 LOGE("Could not read image descriptor (%d)", imageIndex);
193 LOGE("Could not write image descriptor (%d)", imageIndex);
202 LOGE("Could not read image data (%d)", imageIndex);
205 LOGD("Read image data (%d)", imageIndex);
209 imageIndex,
215 LOGE("Could not render %d", imageIndex);
218 LOGD("Rendered image (%d)", imageIndex);
228 LOGE("Could not write raster data (%d)", imageIndex);
232 LOGD("Wrote raster data (%d)", imageIndex);
    [all...]
GifTranscoder.h 60 int imageIndex,
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BmpImageDecoderLib/
BmpImageDecoderLib.c 62 UINTN ImageIndex;
241 ImageIndex = (UINTN) (Image - ImageHeader);
242 if ((ImageIndex % 4) != 0) {
246 Image = Image + (4 - (ImageIndex % 4));
  /device/linaro/bootloader/edk2/DuetPkg/PciBusNoEnumerationDxe/
PciRomTable.c 120 UINTN ImageIndex;
147 ImageIndex = 0;
250 HexToString (&FileName[48], ImageIndex, 4);
287 ImageIndex++;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/DxeCapsuleLib/
DxeCapsuleLib.c 328 ImageHeader->UpdateImageIndex == TempFmpImageInfo->ImageIndex) {
333 TempFmpImageInfo->ImageIndex, // ImageIndex
343 TempFmpImageInfo->ImageIndex, // ImageIndex
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
FmpCapsule.h 65 /// Passed as ImageIndex in call to EFI_FIRMWARE_MANAGEMENT_PROTOCOL.SetImage()
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Include/
Platform.h 122 UINT8 ImageIndex;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
CapsuleData.py 179 self.ImageIndex = None
209 int(self.ImageIndex, 16),
  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiIncrementalPresentTests.cpp     [all...]
vktWsiDisplayTimingTests.cpp 1095 deUint32 imageIndex;
1098 VK_CHECK(m_vkd.acquireNextImageKHR(*m_device, *m_swapchain, foreverNs, currentAcquireSemaphore, fence, &imageIndex));
1101 m_commandBuffers[m_frameNdx % m_commandBuffers.size()] = createCommandBuffer(m_vkd, *m_device, *m_commandPool, *m_pipelineLayout, *m_renderPass, m_framebuffers[imageIndex], *m_pipeline, m_frameNdx, m_quadCount, width, height).disown();
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Graphics/
Graphics.c 164 UINTN ImageIndex;
339 ImageIndex = (UINTN) (Image - ImageHeader);
340 if ((ImageIndex % 4) != 0) {
344 Image = Image + (4 - (ImageIndex % 4));
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/
Graphics.c 165 UINTN ImageIndex;
340 ImageIndex = (UINTN) (Image - ImageHeader);
341 if ((ImageIndex % 4) != 0) {
345 Image = Image + (4 - (ImageIndex % 4));
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformHelperLib/
PlatformHelperPei.c 151 switch ((UINT8)Edk2ImageHeader->ImageIndex & QUARK_STAGE1_IMAGE_TYPE_MASK) {
  /external/giflib/
gif_lib.h 276 int ImageIndex,
280 int ImageIndex);
egif_lib.c 670 GifFileType *GifFile, int ImageIndex)
676 if (ImageIndex < 0 || ImageIndex > GifFile->ImageCount - 1)
679 for (i = 0; i < GifFile->SavedImages[ImageIndex].ExtensionBlockCount; i++) {
680 ExtensionBlock *ep = &GifFile->SavedImages[ImageIndex].ExtensionBlocks[i];
688 if (GifAddExtensionBlock(&GifFile->SavedImages[ImageIndex].ExtensionBlockCount,
689 &GifFile->SavedImages[ImageIndex].ExtensionBlocks,
    [all...]
  /external/ImageMagick/MagickCore/
accelerate-kernels-private.h     [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConsole.c 684 UINTN ImageIndex;
876 ImageIndex = (UINTN) (Image - ImageHeader);
877 if ((ImageIndex % 4) != 0) {
881 Image = Image + (4 - (ImageIndex % 4));
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Override/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConsole.c 684 UINTN ImageIndex;
877 ImageIndex = (UINTN) (Image - ImageHeader);
878 if ((ImageIndex % 4) != 0) {
882 Image = Image + (4 - (ImageIndex % 4));
    [all...]

Completed in 1229 milliseconds

1 2