Lines Matching refs:height
88 int width, int height, size_t rowBytes,
91 if (0 == width || 0 == height || (width % 4) != 0 || (height % 4) != 0) {
96 int blocksY = height >> 2;
384 int width, int height, size_t rowBytes) {
386 if (width < 0 || ((width % 4) != 0) || height < 0 || ((height % 4) != 0)) {
391 for (int y = 0; y < height; y += 4) {
475 bool CompressA8ToLATC(uint8_t* dst, const uint8_t* src, int width, int height, size_t rowBytes) {
477 return compress_4x4_a8_latc(dst, src, width, height, rowBytes);
479 return compress_4x4_a8_to_64bit(dst, src, width, height, rowBytes, compress_latc_block);
485 SkBlitter* CreateLATCBlitter(int width, int height, void* outputBuffer,
487 if ((width % 4) != 0 || (height % 4) != 0) {
498 sk_bzero(outputBuffer, width * height / 2);
502 (width, height, outputBuffer);
509 void DecompressLATC(uint8_t* dst, int dstRowBytes, const uint8_t* src, int width, int height) {
510 for (int j = 0; j < height; j += 4) {