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

  /external/pixman/pixman/
pixman-general.c 120 int Bpp;
128 Bpp = 4;
133 Bpp = 16;
136 if (width * Bpp > SCANLINE_BUFFER_LENGTH)
138 scanline_buffer = pixman_malloc_abc (width, 3, Bpp);
145 mask_buffer = src_buffer + width * Bpp;
146 dest_buffer = mask_buffer + width * Bpp;
151 memset (src_buffer, 0, width * Bpp);
152 memset (mask_buffer, 0, width * Bpp);
153 memset (dest_buffer, 0, width * Bpp);
    [all...]
  /frameworks/base/cmds/screencap/
screencap.cpp 190 size_t Bpp = bytesPerPixel(f);
192 write(fd, base, w*Bpp);
193 base = (void *)((char *)base + s*Bpp);
  /external/opencv/otherlibs/highgui/
image.cpp 70 bool CvvImage::Create( int w, int h, int bpp, int origin )
74 if( (bpp != 8 && bpp != 24 && bpp != 32) ||
82 if( !m_img || Bpp() != bpp || m_img->width != w || m_img->height != h )
88 m_img = cvCreateImage( cvSize( w, h ), IPL_DEPTH_8U, bpp/8 );
236 FillBitmapInfo( bmi, bmp_w, bmp_h, Bpp(), m_img->origin );
highgui.h 373 int Bpp() { return m_img ? (m_img->depth & 255)*m_img->nChannels : 0; };

Completed in 928 milliseconds