Home | History | Annotate | Download | only in images

Lines Matching full:width

101         for (int x = bm->width() - 1; x >= 0; --x) {
511 int width, char* SK_RESTRICT dst);
513 static void transform_scanline_565(const char* SK_RESTRICT src, int width,
516 for (int i = 0; i < width; i++) {
524 static void transform_scanline_888(const char* SK_RESTRICT src, int width,
527 for (int i = 0; i < width; i++) {
535 static void transform_scanline_444(const char* SK_RESTRICT src, int width,
538 for (int i = 0; i < width; i++) {
546 static void transform_scanline_8888(const char* SK_RESTRICT src, int width,
552 for (int i = 0; i < width; i++) {
572 static void transform_scanline_4444(const char* SK_RESTRICT src, int width,
578 for (int i = 0; i < width; i++) {
598 static void transform_scanline_index8(const char* SK_RESTRICT src, int width,
600 memcpy(dst, src, width);
796 /* Set the image information here. Width and height are up to 2^31,
805 png_set_IHDR(png_ptr, info_ptr, bitmap.width(), bitmap.height(),
826 SkAutoSMalloc<1024> rowStorage(bitmap.width() << 2);
832 proc(srcImage, bitmap.width(), storage);