Lines Matching defs:rows
586 int rows = this->readRows(dstInfo, dst, dstRowBytes, dstInfo.height(), options);
587 if (rows < dstInfo.height()) {
588 *rowsDecoded = rows;
753 int rows = this->readRows(this->dstInfo(), dst, dstRowBytes, count, this->options());
754 if (rows < count) {
759 return rows;
912 // Set aside enough space for pointers to rows of Y, U, and V.
914 yuv[0] = &rowptrs[0]; // Y rows (DCTSIZE or 2 * DCTSIZE)
915 yuv[1] = &rowptrs[2 * DCTSIZE]; // U rows (DCTSIZE)
916 yuv[2] = &rowptrs[3 * DCTSIZE]; // V rows (DCTSIZE)
939 // full block rows. As a special case at the end, we will handle any
940 // remaining rows that do not make up a full block.