Searched defs:rowsDecoded (Results 1 - 14 of 14) sorted by relevance

/external/skia/src/codec/
H A DSkBmpMaskCodec.cpp32 int* rowsDecoded) {
49 *rowsDecoded = rows;
27 onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, const Options& opts, SkPMColor* inputColorPtr, int* inputColorCount, int* rowsDecoded) argument
H A DSkIcoCodec.cpp251 int* colorCount, int* rowsDecoded) {
272 *rowsDecoded = dstInfo.height();
368 SkCodec::Result SkIcoCodec::onIncrementalDecode(int* rowsDecoded) { argument
370 return fCurrIncrementalCodec->incrementalDecode(rowsDecoded);
248 onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, const Options& opts, SkPMColor* colorTable, int* colorCount, int* rowsDecoded) argument
H A DSkSampledCodec.cpp118 int rowsDecoded; local
119 const SkCodec::Result incResult = this->codec()->incrementalDecode(&rowsDecoded);
127 options.fZeroInitialized, scaledSubsetHeight, rowsDecoded);
249 int rowsDecoded; local
250 const SkCodec::Result incResult = this->codec()->incrementalDecode(&rowsDecoded);
256 SkASSERT(rowsDecoded <= info.height());
258 info.height(), rowsDecoded);
H A DSkWbmpCodec.cpp126 int* rowsDecoded) {
149 *rowsDecoded = y;
120 onGetPixels(const SkImageInfo& info, void* dst, size_t rowBytes, const Options& options, SkPMColor ctable[], int* ctableCount, int* rowsDecoded) argument
H A DSkBmpRLECodec.cpp39 int* rowsDecoded) {
53 // We set rowsDecoded equal to the height because the background has already
56 *rowsDecoded = dstInfo.height();
34 onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, const Options& opts, SkPMColor* inputColorPtr, int* inputColorCount, int* rowsDecoded) argument
H A DSkBmpStandardCodec.cpp43 int* rowsDecoded) {
59 *rowsDecoded = rows;
38 onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, const Options& opts, SkPMColor* inputColorPtr, int* inputColorCount, int* rowsDecoded) argument
H A DSkCodec.cpp222 int rowsDecoded = 0; local
224 &rowsDecoded);
234 // setting rowsDecoded equal to the height.
235 if (kIncompleteInput == result && rowsDecoded != info.height()) {
243 rowsDecoded);
H A DSkWebpCodec.cpp326 int rowsDecoded; local
330 rowsDecoded = scaledHeight;
334 WebPIDecGetRGB(idec, &rowsDecoded, nullptr, nullptr, nullptr);
335 *rowsDecodedPtr = rowsDecoded + dstY;
350 for (int y = 0; y < rowsDecoded; y++) {
H A DSkGifCodec.cpp308 int* rowsDecoded) {
332 return this->decodeFrame(true, opts, rowsDecoded);
353 SkCodec::Result SkGifCodec::onIncrementalDecode(int* rowsDecoded) { argument
361 return this->decodeFrame(firstCallToIncrementalDecode, options, rowsDecoded);
364 SkCodec::Result SkGifCodec::decodeFrame(bool firstAttempt, const Options& opts, int* rowsDecoded) { argument
370 // rowsDecoded reports how many rows have been initialized, so a layer above
372 // (or it is already filled for us), so we report rowsDecoded to be the full
472 if (rowsDecoded) {
473 *rowsDecoded = fRowsDecoded;
303 onGetPixels(const SkImageInfo& dstInfo, void* pixels, size_t dstRowBytes, const Options& opts, SkPMColor* inputColorPtr, int* inputColorCount, int* rowsDecoded) argument
H A DSkJpegCodec.cpp570 int* rowsDecoded) {
610 *rowsDecoded = rows;
567 onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, const Options& options, SkPMColor*, int*, int* rowsDecoded) argument
H A DSkPngCodec.cpp533 Result decodeAllRows(void* dst, size_t rowBytes, int* rowsDecoded) override {
549 if (rowsDecoded) {
550 *rowsDecoded = fRowsWrittenToOutput;
573 SkCodec::Result decode(int* rowsDecoded) override {
584 if (rowsDecoded) {
585 *rowsDecoded = fRowsWrittenToOutput;
680 SkCodec::Result decodeAllRows(void* dst, size_t rowBytes, int* rowsDecoded) override {
703 if (rowsDecoded) {
704 *rowsDecoded = fLinesDecoded;
721 SkCodec::Result decode(int* rowsDecoded) overrid
1114 onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t rowBytes, const Options& options, SkPMColor ctable[], int* ctableCount, int* rowsDecoded) argument
1156 onIncrementalDecode(int* rowsDecoded) argument
[all...]
H A DSkRawCodec.cpp692 int* rowsDecoded) {
747 *rowsDecoded = i;
689 onGetPixels(const SkImageInfo& dstInfo, void* dst, size_t dstRowBytes, const Options& options, SkPMColor ctable[], int* ctableCount, int* rowsDecoded) argument
/external/skia/tests/
H A DCodecTest.cpp1450 // This is an arbitrary value. The important fact is that it is not zero, and rowsDecoded
1452 int rowsDecoded = 77; local
1453 result = codec->incrementalDecode(&rowsDecoded);
1455 REPORTER_ASSERT(r, rowsDecoded == 0);
/external/skia/dm/
H A DDMSrcSink.cpp560 int rowsDecoded; local
561 if (SkCodec::kIncompleteInput == codec->incrementalDecode(&rowsDecoded)) {
564 rowsDecoded);

Completed in 186 milliseconds