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

  /external/webkit/Source/WebCore/dom/
WheelEvent.h 34 enum Granularity { Pixel, Line, Page };
  /frameworks/base/media/mca/filterpacks/native/imageproc/
brightness.c 31 } Pixel;
81 Pixel pixel; local
83 pixel.value = *(input_ptr++);
85 const short r = (pixel.rgba[0] * factor) / 255;
86 const short g = (pixel.rgba[1] * factor) / 255;
87 const short b = (pixel.rgba[2] * factor) / 255;
92 | (pixel.rgba[3] << 24);
  /frameworks/base/media/mca/filterfw/jni/
jni_native_frame.cpp 33 } Pixel;
179 Pixel* src_ptr;
188 const Pixel pixel = *(src_ptr++); local
189 *(dst_ptr++) = (pixel.rgba[0] + pixel.rgba[1] + pixel.rgba[2]) / 3;
195 const Pixel pixel = *(src_ptr++); local
196 *(dst_ptr++) = pixel.rgba[0]
    [all...]
  /external/mesa3d/src/pixelflinger2/
texture.cpp 36 union Pixel { unsigned char channels[4]; unsigned int val; };
38 static inline void PixelRGBAToVector4 (const Pixel *pixel, Vector4 * color) __attribute__((always_inline));
39 static inline void PixelRGBAToVector4 (const Pixel *pixel, Vector4 * color)
43 c = vsetq_lane_s32(pixel->channels[0], c, 0);
44 c = vsetq_lane_s32(pixel->channels[1], c, 1);
45 c = vsetq_lane_s32(pixel->channels[2], c, 2);
46 c = vsetq_lane_s32(pixel->channels[3], c, 3);
50 color->r = (float)pixel->channels[0] / 255
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit_N.c 186 Uint32 Pixel; \
188 DISEMBLE_RGBA((Uint8 *)src, 4, srcfmt, Pixel, \
336 unsigned short Pixel = *((unsigned short *)src); \
337 sR = (Pixel >> 8) & 0xf8; \
338 sG = (Pixel >> 3) & 0xfc; \
339 sB = (Pixel << 3) & 0xf8; \
481 unsigned short Pixel = *((unsigned short *)src); \
482 sR = (Pixel >> 7) & 0xf8; \
483 sG = (Pixel >> 2) & 0xf8; \
484 sB = (Pixel << 3) & 0xf8;
    [all...]
  /sdk/traceview/src/com/android/traceview/
TimeLineView.java     [all...]

Completed in 294 milliseconds