Home | History | Annotate | Download | only in core

Lines Matching refs:rowBytes

85     int         rowBytes = (int)this->rowBytes();    // need rowBytes to be signed
88 src -= dy * rowBytes;
91 dst += dy * rowBytes;
94 src += (height - 1) * rowBytes;
95 dst += (height - 1) * rowBytes;
96 // now invert rowbytes so we copy backwards in the loop
97 rowBytes = -rowBytes;
117 dst += rowBytes;
118 src += rowBytes;