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

  /external/skia/src/codec/
SkSwizzler.h 110 static int BytesPerPixel(SrcConfig sc) {
228 * @param deltaSrc if bitsPerPixel % 8 == 0, deltaSrc is bytesPerPixel
241 // deltaSrc is bytesPerPixel
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_flate.cpp 238 const int BytesPerPixel = (Colors * BitsPerComponent + 7) / 8;
266 if (byte >= BytesPerPixel) {
267 left = pSrcData[byte - BytesPerPixel];
284 if (byte >= BytesPerPixel) {
285 left = pSrcData[byte - BytesPerPixel];
297 if (byte >= BytesPerPixel) {
298 left = pSrcData[byte - BytesPerPixel];
305 if (byte >= BytesPerPixel && row) {
306 upper_left = pSrcData[byte - row_size - BytesPerPixel];
330 int BytesPerPixel = (bpc * nColors + 7) / 8
    [all...]

Completed in 461 milliseconds