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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplustypes.h 67 INT Height;
70 Size(): Width(0), Height(0) {}
71 Size(INT width, INT height): Width(width), Height(height) {}
72 Size(const Size& size): Width(size.Width), Height(size.Height) {}
75 return Width == 0 && Height == 0;
78 return Width == size.Width && Height == size.Height;
    [all...]
  /device/linaro/bootloader/edk2/OptionRomPkg/Library/GopBltLib/
GopBltLib.c 92 @param[in] Height - The height of a rectangle in the blt rectangle in pixels
112 IN UINTN Height,
129 Height,
145 @param[in] Height - The height of a rectangle in the blt rectangle in pixels
166 IN UINTN Height,
178 Height,
191 @param[in] Height Height to fill
    [all...]
  /device/linaro/bootloader/edk2/OptionRomPkg/Include/Library/
BltLib.h 49 @param[in] Height - The height of a rectangle in the blt rectangle in pixels
70 IN UINTN Height,
82 @param[in] Height Height to fill
96 IN UINTN Height
107 @param[in] Height Height
121 IN UINTN Height
135 @param[in] Height Height
    [all...]
  /device/linaro/bootloader/edk2/OvmfPkg/VirtioGpuDxe/
Gop.c 68 0, 0, 0, 0, // X, Y, Width, Height
143 UINT32 Height;
217 GopModeInfo->VerticalResolution = mGopResolutions[ModeNumber].Height;
290 mGopResolutions[ModeNumber].Height // Height
300 mGopResolutions[ModeNumber].Height * sizeof (UINT32);
333 mGopResolutions[ModeNumber].Height, // Height
352 mGopResolutions[ModeNumber].Height, // Height
    [all...]
Commands.c 357 IN UINT32 Height
369 Request.Height = Height;
469 IN UINT32 Height,
483 Request.Rectangle.Height = Height;
502 IN UINT32 Height,
516 Request.Rectangle.Height = Height;
536 IN UINT32 Height,
    [all...]
VirtioGpu.h 238 IN UINT32 Height
267 IN UINT32 Height,
278 IN UINT32 Height,
289 IN UINT32 Height,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
Image.c 89 ReadUnaligned16 (&((EFI_HII_IIBT_IMAGE_1BIT_BLOCK *) CurrentImageBlock)->Bitmap.Height)
99 ReadUnaligned16 (&((EFI_HII_IIBT_IMAGE_4BIT_BLOCK *) CurrentImageBlock)->Bitmap.Height)
109 ReadUnaligned16 (&((EFI_HII_IIBT_IMAGE_8BIT_BLOCK *) CurrentImageBlock)->Bitmap.Height)
119 ReadUnaligned16 ((VOID *) &((EFI_HII_IIBT_IMAGE_24BIT_BLOCK *) CurrentImageBlock)->Bitmap.Height)
289 for (Ypos = 0; Ypos < Image->Height; Ypos++) {
378 for (Ypos = 0; Ypos < Image->Height; Ypos++) {
455 for (Ypos = 0; Ypos < Image->Height; Ypos++) {
495 for (Ypos = 0; Ypos < Image->Height; Ypos++) {
515 @param Height Height of the incoming image, in pixels.
    [all...]
  /device/linaro/bootloader/edk2/Omap35xxPkg/LcdGraphicsOutputDxe/
LcdGraphicsOutputBlt.c 42 IN UINTN Height
61 SourceLine = SourceY + Height;
62 DestinationLine = DestinationY + Height;
68 for( LineCount = 0; LineCount < Height; LineCount++ ) {
95 IN UINTN Height
109 PixelBuffer16bit = (UINT16 *) AllocatePool((Height * Width) * sizeof(UINT16));
121 SourcePixelY < SourceY + Height;
134 DestinationPixelY < DestinationY + Height;
162 IN UINTN Height,
189 DestinationLine < DestinationY + Height;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/FrameBufferBltLib/
FrameBufferBltLib.c 28 UINTN Height;
151 Configure->Height = (UINTN) FrameBufferInfo->VerticalResolution;
168 @param[in] Height Height to fill.
181 IN UINTN Height
199 if (DestinationY + Height > Configure->Height) {
209 if (Width == 0 || Height == 0) {
210 DEBUG ((EFI_D_VERBOSE, "VideoFill: Width or Height is 0\n"));
262 SizeInBytes = WidthInBytes * Height;
    [all...]
  /device/linaro/bootloader/edk2/OptionRomPkg/Library/FrameBufferBltLib/
FrameBufferBltLib.c 140 @param[in] Height - The height of a rectangle in the blt rectangle in pixels
161 IN UINTN Height,
174 Height,
185 Height
194 Height
205 Height,
221 @param[in] Height Height to fill
235 IN UINTN Height
    [all...]
  /device/linaro/bootloader/edk2/OptionRomPkg/Application/BltLibSample/
BltLibSample.c 81 UINTN Height;
83 BltLibGetSizes (&Width, &Height);
86 H = Height - (Rand32 () % Height);
92 if (H != Height) {
93 Y = Rand32 () % (Height - H);
112 UINTN Height;
114 BltLibGetSizes (&Width, &Height);
117 for (Y = 0; Y < Height; Y++) {
120 Color.Green = (UINT8) ((Y * 0x100) / Height);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
texture9.c 43 UINT Width, UINT Height, UINT Levels,
58 DBG("(%p) Width=%u Height=%u Levels=%u Usage=%s Format=%s Pool=%s "
59 "pSharedHandle=%p\n", This, Width, Height, Levels,
63 user_assert(Width && Height, D3DERR_INVALIDCALL);
119 user_assert(!(Width % w) && !(Height % h), D3DERR_INVALIDCALL);
126 info->height0 = Height;
131 info->last_level = util_logbase2(MAX2(Width, Height));
155 Width, Height,
166 Width, Height,
180 This->base.pstype = (Height == 1) ? 1 : 0
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/Library/PlatformBootManagerLib/
QuietBoot.c 33 @param PixelHeight Height of GopBlt/BmpImage in pixels
62 UINTN Height;
187 for (Height = 0; Height < BmpHeader->PixelHeight; Height++) {
188 Blt = &BltBuffer[(BmpHeader->PixelHeight - Height - 1) * BmpHeader->PixelWidth];
297 UINTN Height;
371 Height = 0;
431 &Height,
465 DestY = (SizeOfY - Height) / 2;
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/PlatformBootManagerLib/
QuietBoot.c 33 @param PixelHeight Height of GopBlt/BmpImage in pixels
62 UINTN Height;
187 for (Height = 0; Height < BmpHeader->PixelHeight; Height++) {
188 Blt = &BltBuffer[(BmpHeader->PixelHeight - Height - 1) * BmpHeader->PixelWidth];
297 UINTN Height;
371 Height = 0;
431 &Height,
465 DestY = (SizeOfY - Height) / 2;
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/
LcdGraphicsOutputBlt.c 42 IN UINTN Height
61 SourceLine = SourceY + Height;
62 DestinationLine = DestinationY + Height;
72 for( LineCount = 0; LineCount < Height; LineCount++ ) {
92 for( LineCount = 0; LineCount < Height; LineCount++ ) {
134 IN UINTN Height
157 PixelBuffer32bit = (UINT32 *) AllocatePool((Height * Width) * sizeof(UINT32));
168 SourcePixelY < SourceY + Height;
180 DestinationPixelY < DestinationY + Height;
200 PixelBuffer16bit = (UINT16 *) AllocatePool((Height * Width) * sizeof(UINT16));
    [all...]
  /external/pdfium/core/fpdfapi/render/
cpdf_devicebuffer.cpp 52 m_pBitmap->Create(bitmap_rect.Width(), bitmap_rect.Height(), FXDIB_Argb);
62 m_Rect.Width(), m_Rect.Height());
73 m_Rect.Height());
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/
BootLogo.h 40 @param Height Hight of rectangle in BltBuffer in pixels.
56 IN UINTN Height
  /external/pdfium/core/fpdfdoc/
cpvt_floatrect.h 33 float Height() const {
  /external/skia/tests/
CachedDecodingPixelRefTest.cpp 31 static int Height() { return 10; }
45 return SkImageInfo::Make(TestImageGenerator::Width(), TestImageGenerator::Height(),
62 for (int y = 0; y < info.height(); ++y) {
69 for (int y = 0; y < info.height(); ++y) {
110 REPORTER_ASSERT(r, TestImageGenerator::Height() == image->height());
114 bitmap.allocN32Pixels(TestImageGenerator::Width(), TestImageGenerator::Height());
  /external/skqp/tests/
CachedDecodingPixelRefTest.cpp 31 static int Height() { return 10; }
45 return SkImageInfo::Make(TestImageGenerator::Width(), TestImageGenerator::Height(),
62 for (int y = 0; y < info.height(); ++y) {
69 for (int y = 0; y < info.height(); ++y) {
110 REPORTER_ASSERT(r, TestImageGenerator::Height() == image->height());
114 bitmap.allocN32Pixels(TestImageGenerator::Width(), TestImageGenerator::Height());
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Graphics/
Graphics.c 139 PixelHeight - Height of GopBlt/BmpImage in pixels
162 UINTN Height;
275 for (Height = 0; Height < BmpHeader->PixelHeight; Height++) {
276 Blt = &BltBuffer[(BmpHeader->PixelHeight - Height - 1) * BmpHeader->PixelWidth];
458 UINTN Height;
548 &Height,
578 DestY = (SizeOfY - Height) / 2;
583 DestY = (SizeOfY - Height - CoordinateY);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/
Graphics.c 140 PixelHeight - Height of GopBlt/BmpImage in pixels
163 UINTN Height;
276 for (Height = 0; Height < BmpHeader->PixelHeight; Height++) {
277 Blt = &BltBuffer[(BmpHeader->PixelHeight - Height - 1) * BmpHeader->PixelWidth];
457 UINTN Height;
547 &Height,
577 DestY = (SizeOfY - Height) / 2;
582 DestY = (SizeOfY - Height - CoordinateY);
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
big_glyph_metrics.h 52 int32_t Height();
53 void SetHeight(byte_t height);
82 int32_t Height();
small_glyph_metrics.h 48 int32_t Height();
49 void SetHeight(byte_t height);
69 int32_t Height();
  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 37 // dependencies only. We also compute the resource height, which is the number
124 /// For virtual registers: Minimum height of the defining instruction.
125 /// For regunits: Height of the highest user in the trace.
126 unsigned Height;
128 LiveInReg(unsigned Reg, unsigned Height = 0) : Reg(Reg), Height(Height) {}
166 /// Returns true if the height resources have been computed from the trace
173 /// Invalidate height resources when a block below this one has changed.
197 // Data-dependency-related information. Per-instruction depth and height
    [all...]

Completed in 763 milliseconds

1 2 3 4 5 6 7 8 91011>>