Home | History | Annotate | Download | only in source

Lines Matching refs:height

43                           uint8* dst, int dst_stride, int width, int height) {
49 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(height, 4)) { // Width of dest.
54 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(height, 4)) { // Width of dest.
60 ScaleARGBRowDownEven(src, 0, src_pixel_step, dst, height);
67 uint8* dst, int dst_stride, int width, int height) {
71 src += src_stride * (height - 1);
73 ARGBTranspose(src, src_stride, dst, dst_stride, width, height);
77 uint8* dst, int dst_stride, int width, int height) {
83 ARGBTranspose(src, src_stride, dst, dst_stride, width, height);
87 uint8* dst, int dst_stride, int width, int height) {
90 const uint8* src_bot = src + src_stride * (height - 1);
91 uint8* dst_bot = dst + dst_stride * (height - 1);
92 int half_height = (height + 1) >> 1;
147 // Odd height will harmlessly mirror the middle row twice.
162 uint8* dst_argb, int dst_stride_argb, int width, int height,
164 if (!src_argb || width <= 0 || height == 0 || !dst_argb) {
168 // Negative height means invert the image.
169 if (height < 0) {
170 height = -height;
171 src_argb = src_argb + (height - 1) * src_stride_argb;
180 width, height);
184 width, height);
189 width, height);
194 width, height);