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

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
idct.h 59 void idctrow0_intra(int16 *blk, PIXEL *comp, int width);
60 void idctrow1_intra(int16 *blk, PIXEL *comp, int width);
61 void idctrow2_intra(int16 *blk, PIXEL *comp, int width);
62 void idctrow3_intra(int16 *blk, PIXEL *comp, int width);
63 void idctrow4_intra(int16 *blk, PIXEL *comp, int width);
mp4lib_int.h 58 PIXEL *yChan; /* The Y component */
59 PIXEL *uChan; /* The U component */
60 PIXEL *vChan; /* The V component */
mb_motion_comp.cpp 141 PIXEL *c_comp, *c_prev;
142 PIXEL *cu_comp, *cu_prev;
143 PIXEL *cv_comp, *cv_prev;
187 /* in pixel resolution */
564 PIXEL *c_comp, *c_prev;
565 PIXEL *cu_comp, *cu_prev;
566 PIXEL *cv_comp, *cv_prev;
block_idct.cpp 124 static void idctrow_intra(int16 *blk, PIXEL *, int width);
183 static void (*const idctrowVCA_intra[10])(int16*, PIXEL *, int) =
197 static void (*const idctrowVCA2_intra[8])(int16*, PIXEL *, int) =
226 PIXEL *c_comp;
227 PIXEL *cu_comp;
228 PIXEL *cv_comp;
251 MacroBlock *mblock, PIXEL *c_comp, int comp, int width)
622 int16 *blk, PIXEL *comp, int width
mp4def.h 35 typedef uint8 PIXEL;
idct_vca.cpp 414 void idctrow0_intra(int16 *, PIXEL *, int)
419 void idctrow1_intra(int16 *blk, PIXEL *comp, int width)
448 void idctrow2_intra(int16 *blk, PIXEL *comp, int width)
505 void idctrow3_intra(int16 *blk, PIXEL *comp, int width)
578 void idctrow4_intra(int16 *blk, PIXEL *comp, int width)
pvdec_api.cpp 53 extern PIXEL IMEM_currVop_yChan[QCIF_MBS*128*3];
54 extern PIXEL IMEM_prevVop_yChan[QCIF_MBS*128*3];
332 if (((uint64_t)video->width * video->height) > (uint64_t)INT32_MAX / sizeof(PIXEL)) {
336 size = (int32)sizeof(PIXEL) * video->width * video->height;
358 video->currVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*/
364 video->prevVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*/
391 video->prevEnhcVop->yChan = (PIXEL *) oscl_malloc(size * 3 / 2); /* Allocate memory for all VOP OKA 3/2/1*/
    [all...]
mp4dec_lib.h 99 void BlockIDCT_intra(MacroBlock *mblock, PIXEL *c_comp, int comp, int width_offset);
combined_decode.cpp 532 PIXEL *c_comp;
datapart_decode.cpp 625 PIXEL *c_comp;
  /external/mesa3d/src/mesa/drivers/x11/
xmesaP.h 40 /* for PF_8R8G8B24 pixel format */
58 /** Framebuffer pixel formats */
81 GLint BitsPerPixel; /* True bits per pixel for XImages */
85 enum pixel_format dithered_pf; /* Pixel format when dithering */
86 enum pixel_format undithered_pf;/* Pixel format when not dithering */
93 GLint rshift, gshift, bshift;/* Pixel color component shifts */
95 unsigned long RtoPixel[512]; /* RGB to pixel conversion */
98 GLubyte PixelToR[256]; /* Pixel to RGB conversion */
120 unsigned long clearpixel; /* current clearing pixel value */
226 unsigned long color_table[576]; /* RGB -> pixel value *
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
mp4lib_int.h 42 PIXEL *allChan; /* [yuv]Chan point into this buffer */
43 PIXEL *yChan; /* The Y component */
44 PIXEL *uChan; /* The U component */
45 PIXEL *vChan; /* The V component */
mp4def.h 83 typedef UChar PIXEL;
mp4enc_api.cpp 773 || (size_t)(size + (size >> 1)) > SIZE_MAX / sizeof(PIXEL)) {
776 video->currVop->allChan = video->currVop->yChan = (PIXEL *)M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for currVop Y */
794 video->prevBaseVop->allChan = video->prevBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for prevBaseVop Y */
811 video->nextBaseVop->allChan = video->nextBaseVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for nextBaseVop Y */
828 video->prevEnhanceVop->allChan = video->prevEnhanceVop->yChan = (PIXEL *) M4VENC_MALLOC(sizeof(PIXEL) * (size + (size >> 1))); /* Memory for Previous Ehancement Y */
    [all...]
  /external/pdfium/third_party/libtiff/
tif_fax3.c 830 * the routines that find pixel spans.
1037 #define PIXEL(buf,ix) ((((buf)[(ix)>>3]) >> (7-((ix)&7))) & 1)
1039 uint32 a1 = (PIXEL(bp, 0) != 0 ? 0 : finddiff(bp, 0, bits, 0));
1040 uint32 b1 = (PIXEL(rp, 0) != 0 ? 0 : finddiff(rp, 0, bits, 0));
1044 b2 = finddiff2(rp, b1, bits, PIXEL(rp,b1));
1048 a2 = finddiff2(bp, a1, bits, PIXEL(bp,a1));
1050 if (a0+a1 == 0 || PIXEL(bp, a0) == 0) {
1068 a1 = finddiff(bp, a0, bits, PIXEL(bp,a0));
1069 b1 = finddiff(rp, a0, bits, !PIXEL(bp,a0));
1070 b1 = finddiff(rp, b1, bits, PIXEL(bp,a0))
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_constants.py 242 UNIT.PIXEL = 'px'
  /external/autotest/client/site_tests/firmware_TouchMTB/tests/
mtb_unittest.py 179 """expected_max_distance: unit in pixel"""
596 UNIT.PIXEL)

Completed in 311 milliseconds