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

  /external/skia/src/codec/
SkSampledCodec.cpp 116 int rowsDecoded;
117 const SkCodec::Result incResult = this->codec()->incrementalDecode(&rowsDecoded);
125 options.fZeroInitialized, scaledSubsetHeight, rowsDecoded);
247 int rowsDecoded;
248 const SkCodec::Result incResult = this->codec()->incrementalDecode(&rowsDecoded);
254 SkASSERT(rowsDecoded <= info.height());
256 info.height(), rowsDecoded);
SkCodec.cpp 374 int rowsDecoded = 0;
375 const Result result = this->onGetPixels(info, pixels, rowBytes, *options, &rowsDecoded);
381 // setting rowsDecoded equal to the height.
382 if ((kIncompleteInput == result || kErrorInInput == result) && rowsDecoded != info.height()) {
390 rowsDecoded);
SkWebpCodec.cpp 598 int rowsDecoded = 0;
602 rowsDecoded = scaledHeight;
606 if (!WebPIDecGetRGB(idec, &rowsDecoded, nullptr, nullptr, nullptr)
607 || rowsDecoded <= 0) {
610 *rowsDecodedPtr = rowsDecoded + dstY;
641 for (int y = 0; y < rowsDecoded; y++) {
655 for (int y = 0; y < rowsDecoded; y++) {
  /external/skqp/src/codec/
SkSampledCodec.cpp 116 int rowsDecoded;
117 const SkCodec::Result incResult = this->codec()->incrementalDecode(&rowsDecoded);
125 options.fZeroInitialized, scaledSubsetHeight, rowsDecoded);
247 int rowsDecoded;
248 const SkCodec::Result incResult = this->codec()->incrementalDecode(&rowsDecoded);
254 SkASSERT(rowsDecoded <= info.height());
256 info.height(), rowsDecoded);
SkCodec.cpp 374 int rowsDecoded = 0;
375 const Result result = this->onGetPixels(info, pixels, rowBytes, *options, &rowsDecoded);
381 // setting rowsDecoded equal to the height.
382 if ((kIncompleteInput == result || kErrorInInput == result) && rowsDecoded != info.height()) {
390 rowsDecoded);
SkWebpCodec.cpp 598 int rowsDecoded = 0;
602 rowsDecoded = scaledHeight;
606 if (!WebPIDecGetRGB(idec, &rowsDecoded, nullptr, nullptr, nullptr)
607 || rowsDecoded <= 0) {
610 *rowsDecodedPtr = rowsDecoded + dstY;
641 for (int y = 0; y < rowsDecoded; y++) {
655 for (int y = 0; y < rowsDecoded; y++) {
  /external/skia/tests/
CodecTest.cpp     [all...]
  /external/skqp/tests/
CodecTest.cpp     [all...]
  /external/skia/dm/
DMSrcSink.cpp 591 int rowsDecoded;
592 auto result = codec->incrementalDecode(&rowsDecoded);
596 rowsDecoded);
    [all...]
  /external/skqp/dm/
DMSrcSink.cpp 588 int rowsDecoded;
589 auto result = codec->incrementalDecode(&rowsDecoded);
593 rowsDecoded);
    [all...]

Completed in 316 milliseconds