HomeSort by relevance Sort by last modified time
    Searched defs:Bpp (Results 1 - 13 of 13) 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 191 size_t Bpp = bytesPerPixel(f);
193 write(fd, base, w*Bpp);
194 base = (void *)((char *)base + s*Bpp);
  /external/pdfium/core/src/fxge/ge/
fx_ge_ps.cpp 414 int Bpp = pConverted->GetBPP() / 8;
425 int src_pitch = width * Bpp;
438 if (Bpp == 3) {
468 buf << FX_BSTRC("false ") << Bpp;
fx_ge_text.cpp 328 int Bpp = bitmap.GetBPP() / 8;
    [all...]
  /external/opencv/otherlibs/highgui/
highgui.h 373 int Bpp() { return m_img ? (m_img->depth & 255)*m_img->nChannels : 0; };
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_jpeg.cpp 188 int Bpp = pSource->GetBPP() / 8;
189 int nComponents = Bpp >= 3 ? (pSource->IsCmykImage() ? 4 : 3) : 1;
242 src_scan += Bpp;
  /external/pdfium/core/src/fxge/dib/
fx_dib_convert.cpp 243 int bpp = pBitmap->GetBPP() / 8; local
269 FX_BYTE* src_port = scan_line + col * bpp;
422 int Bpp = pSrcBitmap->GetBPP() / 8;
425 if (Bpp == 3 || pSrcBitmap->IsCmykImage()) {
428 FX_LPCBYTE src_scan = pSrcBitmap->GetScanline(src_top + row) + src_left * Bpp;
458 FX_LPCBYTE src_scan = pSrcBitmap->GetScanline(src_top + row) + src_left * Bpp;
461 src_scan += Bpp;
534 int bpp = pSrcBitmap->GetBPP() / 8; local
572 FX_BYTE* src_port = src_scan + col * bpp;
    [all...]
fx_dib_engine.cpp 352 int Bpp = m_DestBpp / 8;
490 FX_LPCBYTE src_pixel = src_scan + j * Bpp;
503 dest_scan += Bpp - 3;
513 FX_LPCBYTE src_pixel = src_scan + j * Bpp;
539 dest_scan += Bpp - 3;
    [all...]
fx_dib_transform.cpp 266 int bpp, int c_offset)
269 int col_bpp_l = src_col_l * bpp;
270 int col_bpp_r = src_col_r * bpp;
282 int bpp, int c_offset)
288 a_result += u_w[j] * (*(FX_BYTE*)(buf + pos_pixel[i + 4] * pitch + pos_pixel[j] * bpp + c_offset));
538 int Bpp = m_Storer.GetBitmap()->GetBPP() / 8;
540 if (Bpp == 1) {
    [all...]
fx_dib_main.cpp 413 int Bpp = GetBPP() / 8;
415 FX_LPBYTE dest_scan = m_pBuffer + (dest_top + row) * m_Pitch + dest_left * Bpp;
416 FX_LPCBYTE src_scan = pSrcBitmap->GetScanline(src_top + row) + src_left * Bpp;
417 FXSYS_memcpy32(dest_scan, src_scan, width * Bpp);
806 int Bpp = GetBPP() / 8;
807 if (Bpp == 1) {
819 scan_line += Bpp;
    [all...]
fx_dib_composite.cpp     [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_image.cpp 280 void CPDF_DIBTransferFunc::TranslateDownSamples(FX_LPBYTE dest_buf, FX_LPCBYTE src_buf, int pixels, int Bpp) const
282 if (Bpp == 8) {
286 } else if (Bpp == 24) {
    [all...]
fpdf_render_pattern.cpp 74 int Bpp = pBitmap->GetBPP() / 8;
159 int Bpp = pBitmap->GetBPP() / 8;
248 int Bpp = pBitmap->GetBPP() / 8;
    [all...]

Completed in 160 milliseconds