HomeSort by relevance Sort by last modified time
    Searched refs:rowsDecoded (Results 1 - 25 of 40) sorted by null

1 2

  /external/skia/src/codec/
SkBmpMaskCodec.cpp 30 int* rowsDecoded) {
47 *rowsDecoded = rows;
SkPngCodec.h 111 virtual Result decodeAllRows(void* dst, size_t rowBytes, int* rowsDecoded) = 0;
113 virtual Result decode(int* rowsDecoded) = 0;
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);
SkPngCodec.cpp 521 Result decodeAllRows(void* dst, size_t rowBytes, int* rowsDecoded) override {
539 if (rowsDecoded) {
540 *rowsDecoded = fRowsWrittenToOutput;
563 SkCodec::Result decode(int* rowsDecoded) override {
577 if (rowsDecoded) {
578 *rowsDecoded = fRowsWrittenToOutput;
673 SkCodec::Result decodeAllRows(void* dst, size_t rowBytes, int* rowsDecoded) override {
698 if (rowsDecoded) {
699 *rowsDecoded = fLinesDecoded;
716 SkCodec::Result decode(int* rowsDecoded) override
    [all...]
SkGifCodec.h 112 * @param rowsDecoded Out-parameter to report the total number of rows
119 Result decodeFrame(bool firstAttempt, const Options& opts, int* rowsDecoded);
SkHeifCodec.h 44 int* rowsDecoded) override;
SkIcoCodec.h 71 Result onIncrementalDecode(int* rowsDecoded) override;
SkGifCodec.cpp 279 int* rowsDecoded) {
303 return this->decodeFrame(true, opts, rowsDecoded);
322 SkCodec::Result SkGifCodec::onIncrementalDecode(int* rowsDecoded) {
330 return this->decodeFrame(firstCallToIncrementalDecode, options, rowsDecoded);
333 SkCodec::Result SkGifCodec::decodeFrame(bool firstAttempt, const Options& opts, int* rowsDecoded) {
341 // rowsDecoded reports how many rows have been initialized, so a layer above
343 // (or it is already filled for us), so we report rowsDecoded to be the full
388 if (rowsDecoded) {
389 *rowsDecoded = fRowsDecoded;
SkIcoCodec.cpp 259 int* rowsDecoded) {
280 *rowsDecoded = dstInfo.height();
372 SkCodec::Result SkIcoCodec::onIncrementalDecode(int* rowsDecoded) {
374 return fCurrCodec->incrementalDecode(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++) {
SkWbmpCodec.cpp 120 int* rowsDecoded) {
136 *rowsDecoded = y;
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);
  /external/skqp/src/codec/
SkBmpMaskCodec.cpp 30 int* rowsDecoded) {
47 *rowsDecoded = rows;
SkPngCodec.h 111 virtual Result decodeAllRows(void* dst, size_t rowBytes, int* rowsDecoded) = 0;
113 virtual Result decode(int* rowsDecoded) = 0;
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);
SkPngCodec.cpp 521 Result decodeAllRows(void* dst, size_t rowBytes, int* rowsDecoded) override {
539 if (rowsDecoded) {
540 *rowsDecoded = fRowsWrittenToOutput;
563 SkCodec::Result decode(int* rowsDecoded) override {
577 if (rowsDecoded) {
578 *rowsDecoded = fRowsWrittenToOutput;
673 SkCodec::Result decodeAllRows(void* dst, size_t rowBytes, int* rowsDecoded) override {
698 if (rowsDecoded) {
699 *rowsDecoded = fLinesDecoded;
716 SkCodec::Result decode(int* rowsDecoded) override
    [all...]
SkGifCodec.h 112 * @param rowsDecoded Out-parameter to report the total number of rows
119 Result decodeFrame(bool firstAttempt, const Options& opts, int* rowsDecoded);
SkHeifCodec.h 44 int* rowsDecoded) override;
SkIcoCodec.h 71 Result onIncrementalDecode(int* rowsDecoded) override;
SkGifCodec.cpp 279 int* rowsDecoded) {
303 return this->decodeFrame(true, opts, rowsDecoded);
322 SkCodec::Result SkGifCodec::onIncrementalDecode(int* rowsDecoded) {
330 return this->decodeFrame(firstCallToIncrementalDecode, options, rowsDecoded);
333 SkCodec::Result SkGifCodec::decodeFrame(bool firstAttempt, const Options& opts, int* rowsDecoded) {
339 // rowsDecoded reports how many rows have been initialized, so a layer above
341 // (or it is already filled for us), so we report rowsDecoded to be the full
388 if (rowsDecoded) {
389 *rowsDecoded = fRowsDecoded;
SkIcoCodec.cpp 259 int* rowsDecoded) {
280 *rowsDecoded = dstInfo.height();
372 SkCodec::Result SkIcoCodec::onIncrementalDecode(int* rowsDecoded) {
374 return fCurrCodec->incrementalDecode(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++) {
SkWbmpCodec.cpp 120 int* rowsDecoded) {
136 *rowsDecoded = y;
  /external/skia/include/codec/
SkCodec.h 427 * @param rowsDecoded Optional output variable returning the total number of
436 Result incrementalDecode(int* rowsDecoded = nullptr) {
440 return this->onIncrementalDecode(rowsDecoded);
706 * @param rowsDecoded When the encoded image stream is incomplete, this function
707 * will return kIncompleteInput and rowsDecoded will be set to
713 int* rowsDecoded) = 0;
    [all...]
  /external/skqp/include/codec/
SkCodec.h 427 * @param rowsDecoded Optional output variable returning the total number of
436 Result incrementalDecode(int* rowsDecoded = nullptr) {
440 return this->onIncrementalDecode(rowsDecoded);
706 * @param rowsDecoded When the encoded image stream is incomplete, this function
707 * will return kIncompleteInput and rowsDecoded will be set to
713 int* rowsDecoded) = 0;
    [all...]

Completed in 212 milliseconds

1 2