HomeSort by relevance Sort by last modified time
    Searched full:bitspercomponent (Results 1 - 25 of 33) sorted by null

1 2

  /external/skia/include/codec/
SkEncodedInfo.h 70 static SkEncodedInfo Make(Color color, Alpha alpha, int bitsPerComponent) {
71 SkASSERT(1 == bitsPerComponent ||
72 2 == bitsPerComponent ||
73 4 == bitsPerComponent ||
74 8 == bitsPerComponent ||
75 16 == bitsPerComponent);
85 SkASSERT(16 != bitsPerComponent);
91 SkASSERT(bitsPerComponent >= 8);
97 SkASSERT(8 == bitsPerComponent);
101 SkASSERT(bitsPerComponent >= 8)
    [all...]
  /external/skia/src/utils/mac/
SkCreateCGImageRef.cpp 57 size_t* bitsPerComponent,
68 *bitsPerComponent = 5;
75 *bitsPerComponent = 8;
80 *bitsPerComponent = 8;
84 *bitsPerComponent = 8;
88 *bitsPerComponent = 4;
103 size_t* bitsPerComponent,
106 if (!getBitmapInfo(bm, bitsPerComponent, info, &upscaleTo32)) {
124 size_t bitsPerComponent SK_INIT_TO_AVOID_WARNING;
127 SkBitmap* bitmap = prepareForImageRef(bm, &bitsPerComponent, &info)
    [all...]
  /external/pdfium/core/fxcodec/codec/
ccodec_flatemodule.h 26 int BitsPerComponent,
34 int BitsPerComponent,
fx_codec_flate.cpp 351 int BitsPerComponent,
353 const int BytesPerPixel = (Colors * BitsPerComponent + 7) / 8;
354 const int row_size = (Colors * BitsPerComponent * Columns + 7) / 8;
444 int BitsPerComponent,
447 if (BitsPerComponent == 1) {
448 int row_bits = std::min(BitsPerComponent * Colors * Columns,
466 int BytesPerPixel = BitsPerComponent * Colors / 8;
467 if (BitsPerComponent == 16) {
485 int BitsPerComponent,
487 int row_size = (Colors * BitsPerComponent * Columns + 7) / 8
    [all...]