HomeSort by relevance Sort by last modified time
    Searched defs:Pixel (Results 1 - 25 of 42) sorted by null

1 2

  /device/google/cuttlefish_common/host/frontend/vnc_server/
mocks.h 20 typedef uint32_t Pixel;
  /device/linaro/bootloader/edk2/OptionRomPkg/CirrusLogic5430Dxe/
CirrusLogic5430UgaDraw.c 131 UINT8 Pixel;
282 Pixel = (UINT8) ((Blt->Red & 0xe0) | ((Blt->Green >> 3) & 0x1c) | ((Blt->Blue >> 6) & 0x03));
283 WidePixel = (Pixel << 8) | Pixel;
304 &Pixel
326 &Pixel
CirrusLogic5430GraphicsOutput.c 234 UINT8 Pixel;
387 Pixel = RGB_BYTES_TO_PIXEL (Blt->Red, Blt->Green, Blt->Blue);
388 WidePixel = (Pixel << 8) | Pixel;
409 &Pixel
431 &Pixel
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Protocol/
UgaDraw.h 34 @param ColorDepth Current video color depth in bits per pixel
59 @param ColorDepth Current video color depth in bits per pixel
85 EFI_UGA_PIXEL Pixel;
102 <B>EfiUgaVideoFill</B> - Write data from the BltBuffer pixel (SourceX, SourceY)
103 directly to every pixel of the video display rectangle
105 Only one pixel will be used from the BltBuffer. Delta is NOT used.
GraphicsOutput.h 104 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Pixel;
119 <B>EfiBltVideoFill</B> - Write data from the BltBuffer pixel (SourceX, SourceY)
120 directly to every pixel of the video display rectangle
122 Only one pixel will be used from the BltBuffer. Delta is NOT used.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/UgaDraw/
UgaDraw.h 52 ColorDepth - Current video color depth in bits per pixel
81 ColorDepth - Current video color depth in bits per pixel
99 EFI_UGA_PIXEL Pixel;
130 EfiUgaVideoFill - Write data from the BltBuffer pixel (SourceX, SourceY)
131 directly to every pixel of the video display rectangle
133 Only one pixel will be used from the BltBuffer. Delta is NOT used.
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
UgaDraw.h 34 @param ColorDepth Number of bits per pixel, currently defined to be 32.
58 @param ColorDepth Number of bits per pixel, currently defined to be 32.
83 EFI_UGA_PIXEL Pixel;
91 EfiUgaVideoFill, ///< Write data from the BltBuffer pixel (SourceX, SourceY)
92 ///< directly to every pixel of the video display rectangle
94 ///< Only one pixel will be used from the BltBuffer. Delta is NOT used.
GraphicsOutput.h 36 /// A pixel is 32-bits and byte zero represents red, byte one represents green,
44 /// A pixel is 32-bits and byte zero represents blue, byte one represents green,
52 /// The Pixel definition of the physical frame buffer.
80 /// Enumeration that defines the physical format of the pixel. A value of PixelBltOnly
90 /// Defines the number of pixel elements per video memory line.
145 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Pixel;
154 /// Write data from the BltBuffer pixel (0, 0)
155 /// directly to every pixel of the video display rectangle
157 /// Only one pixel will be used from the BltBuffer. Delta is NOT used.
249 /// Offset zero in FrameBufferBase represents the upper left pixel of the display.
    [all...]
  /frameworks/base/media/mca/filterpacks/native/imageproc/
brightness.c 32 } Pixel;
82 Pixel pixel; local
84 pixel.value = *(input_ptr++);
86 const short r = (pixel.rgba[0] * factor) / 255;
87 const short g = (pixel.rgba[1] * factor) / 255;
88 const short b = (pixel.rgba[2] * factor) / 255;
93 | (pixel.rgba[3] << 24);
  /external/dng_sdk/source/
dng_resample.h 98 const int32 Pixel (int32 index) const
  /external/libvpx/libvpx/test/
lpf_test.cc 38 typedef uint16_t Pixel;
41 typedef void (*loop_op_t)(Pixel *s, int p, const uint8_t *blimit,
43 typedef void (*dual_loop_op_t)(Pixel *s, int p, const uint8_t *blimit0,
48 typedef uint8_t Pixel;
51 typedef void (*loop_op_t)(Pixel *s, int p, const uint8_t *blimit,
53 typedef void (*dual_loop_op_t)(Pixel *s, int p, const uint8_t *blimit0,
62 void InitInput(Pixel *s, Pixel *ref_s, ACMRandom *rnd, const uint8_t limit,
171 DECLARE_ALIGNED(PIXEL_WIDTH, Pixel, s[kNumCoeffs]);
172 DECLARE_ALIGNED(PIXEL_WIDTH, Pixel, ref_s[kNumCoeffs])
    [all...]
  /frameworks/base/media/mca/filterfw/jni/
jni_native_frame.cpp 33 } Pixel;
180 Pixel* src_ptr;
189 const Pixel pixel = *(src_ptr++); local
190 *(dst_ptr++) = (pixel.rgba[0] + pixel.rgba[1] + pixel.rgba[2]) / 3;
196 const Pixel pixel = *(src_ptr++); local
197 *(dst_ptr++) = pixel.rgba[0]
    [all...]
  /device/linaro/bootloader/edk2/CorebootPayloadPkg/FbGop/
FbGop.c 1052 @param VbePixelWidth Bytes per pixel
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/GraphicsOutput/
GraphicsOutput.h 114 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Pixel;
145 EfiBltVideoFill - Write data from the BltBuffer pixel (SourceX, SourceY)
146 directly to every pixel of the video display rectangle
148 Only one pixel will be used from the BltBuffer. Delta is NOT used.
  /external/giflib/
egif_lib.c 329 Buf[2] = GifFile->AspectByte; /* Pixel Aspect Ratio */
347 /* Mark this file as has screen descriptor, and no pixel written yet: */
355 call to any of the pixel dump routines.
475 Put one pixel (Pixel) into GIF file.
478 EGifPutPixel(GifFileType *GifFile, GifPixelType Pixel)
496 Pixel &= CodeMask[Private->BitsPerPixel];
498 return EGifCompressLine(GifFile, &Pixel, 1);
840 /* Test and see what color map to use, and from it # bits per pixel: */
887 GifPixelType Pixel;
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
X11GraphicsWindow.c 601 IN EFI_UGA_PIXEL pixel
604 return ((pixel.Red >> Drv->r.csize) << Drv->r.shift)
605 | ((pixel.Green >> Drv->g.csize) << Drv->g.shift)
606 | ((pixel.Blue >> Drv->b.csize) << Drv->b.shift);
615 EFI_UGA_PIXEL Pixel;
617 memset (&Pixel, 0, sizeof (EFI_UGA_PIXEL));
620 Pixel.Red = (val >> Drv->r.shift) << Drv->r.csize;
621 Pixel.Green = (val >> Drv->g.shift) << Drv->g.csize;
622 Pixel.Blue = (val >> Drv->b.shift) << Drv->b.csize;
624 return Pixel;
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/BiosVideoThunkDxe/
BiosVideo.c     [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/BiosThunk/VideoDxe/
BiosVideo.c     [all...]
  /external/syslinux/efi32/include/efi/
efiprot.h 648 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Pixel;
663 <B>EfiBltVideoFill</B> - Write data from the BltBuffer pixel (SourceX, SourceY)
664 directly to every pixel of the video display rectangle
666 Only one pixel will be used from the BltBuffer. Delta is NOT used.
  /external/syslinux/efi64/include/efi/
efiprot.h 648 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Pixel;
663 <B>EfiBltVideoFill</B> - Write data from the BltBuffer pixel (SourceX, SourceY)
664 directly to every pixel of the video display rectangle
666 Only one pixel will be used from the BltBuffer. Delta is NOT used.
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efiprot.h 648 EFI_GRAPHICS_OUTPUT_BLT_PIXEL Pixel;
663 <B>EfiBltVideoFill</B> - Write data from the BltBuffer pixel (SourceX, SourceY)
664 directly to every pixel of the video display rectangle
666 Only one pixel will be used from the BltBuffer. Delta is NOT used.
  /external/libpng/contrib/libtests/
pngstest.c 793 } Pixel;
809 /* Read a Pixel from a buffer. The code below stores the correct routine for
813 gp_g8(Pixel *p, png_const_voidp pb)
822 gp_ga8(Pixel *p, png_const_voidp pb)
832 gp_ag8(Pixel *p, png_const_voidp pb)
842 gp_rgb8(Pixel *p, png_const_voidp pb)
854 gp_bgr8(Pixel *p, png_const_voidp pb)
866 gp_rgba8(Pixel *p, png_const_voidp pb)
878 gp_bgra8(Pixel *p, png_const_voidp pb)
891 gp_argb8(Pixel *p, png_const_voidp pb
    [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h 730 * Pixel attribute group (GL_PIXEL_MODE_BIT).
736 /*--- Begin Pixel Transfer State ---*/
749 /* Pixel Maps */
750 /* Note: actual pixel maps are not part of this attrib group */
754 /*--- End Pixel Transfer State ---*/
    [all...]
  /prebuilts/devtools/tools/lib/
traceview.jar 
  /prebuilts/gradle-plugin/com/android/tools/traceview/24.4.0-beta6/
traceview-24.4.0-beta6.jar 

Completed in 586 milliseconds

1 2