Home
last modified time | relevance | path

Searched refs:scan_line (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/src/fxcodec/codec/
Dfx_codec_fax.cpp762 void Encode2DLine(const uint8_t* scan_line);
790 const uint8_t* scan_line = m_pSrcBuf + i * m_Pitch; in Encode() local
793 FaxEncode2DLine(m_pLineBuf, dest_bitpos, scan_line, m_pRefLine, m_Cols); in Encode()
797 FXSYS_memcpy(m_pRefLine, scan_line, m_Pitch); in Encode()
Dfx_codec_flate.cpp552 uint8_t* scan_line = data_buf + row * row_size; in TIFF_PredictorEncode() local
556 TIFF_PredictorEncodeLine(scan_line, row_size, BitsPerComponent, Colors, in TIFF_PredictorEncode()
612 uint8_t* scan_line = data_buf + row * row_size; in TIFF_Predictor() local
616 TIFF_PredictLine(scan_line, row_size, BitsPerComponent, Colors, Columns); in TIFF_Predictor()
/external/pdfium/core/src/fxge/dib/
Dfx_dib_main.cpp824 uint8_t* scan_line = m_pBuffer + row * m_Pitch + destOffset; local
826 *scan_line = value;
827 scan_line += Bpp;
1016 uint8_t* scan_line = m_pBuffer + row * m_Pitch; local
1018 scan_line[col] = scan_line[col] * alpha / 255;
1025 uint8_t* scan_line = m_pBuffer + row * m_Pitch + 3; local
1027 *scan_line = (*scan_line) * alpha / 255;
1028 scan_line += 4;
Dfx_dib_convert.cpp229 uint8_t* scan_line = (uint8_t*)pBitmap->GetScanline(row); in BuildPalette() local
231 uint8_t* src_port = scan_line + col * bpp; in BuildPalette()
/external/pdfium/xfa/src/fwl/src/core/
Dfwl_widgetmgrimp.cpp1040 uint8_t* scan_line = pBitmap->GetBuffer() + row * pBitmap->GetPitch(); in FWL_WriteBMP() local
1041 fwrite(scan_line, pBitmap->GetPitch(), 1, file); in FWL_WriteBMP()