Home | History | Annotate | Download | only in source

Lines Matching full:dst_width

34                            int dst_width, int dst_height,
42 uint8* dst_argb, int dst_width) =
60 if (IS_ALIGNED(dst_width, 4)) {
72 if (IS_ALIGNED(dst_width, 8)) {
84 ScaleARGBRowDown2(src_argb, src_stride, dst_argb, dst_width);
94 int dst_width, int dst_height,
100 const int kRowSize = (dst_width * 2 * 4 + 31) & ~31;
104 uint8* dst_argb, int dst_width) = ScaleARGBRowDown2Box_C;
112 if (IS_ALIGNED(dst_width, 4)) {
120 if (IS_ALIGNED(dst_width, 8)) {
127 ScaleARGBRowDown2(src_argb, src_stride, row, dst_width * 2);
129 row + kRowSize, dst_width * 2);
130 ScaleARGBRowDown2(row, kRowSize, dst_argb, dst_width);
141 int dst_width, int dst_height,
150 int src_step, uint8* dst_argb, int dst_width) =
159 if (IS_ALIGNED(dst_width, 4)) {
169 if (IS_ALIGNED(dst_width, 4)) {
180 ScaleARGBRowDownEven(src_argb, src_stride, col_step, dst_argb, dst_width);
188 int dst_width, int dst_height,
195 ptrdiff_t src_stride, int dst_width, int source_y_fraction) =
198 int dst_width, int x, int dx) =
200 int64 xlast = x + (int64)(dst_width - 1) * dx;
254 if (IS_ALIGNED(dst_width, 4)) {
272 ScaleARGBFilterCols(dst_argb, src, dst_width, x, dx);
276 ScaleARGBFilterCols(dst_argb, row, dst_width, x, dx);
290 int dst_width, int dst_height,
297 ptrdiff_t src_stride, int dst_width, int source_y_fraction) =
300 int dst_width, int x, int dx) =
306 if (IS_ALIGNED(dst_width, 4)) {
314 if (IS_ALIGNED(dst_width, 8)) {
322 if (IS_ALIGNED(dst_width, 4)) {
345 if (IS_ALIGNED(dst_width, 4)) {
358 if (IS_ALIGNED(dst_width, 8)) {
363 if (!filtering && src_width * 2 == dst_width && x < 0x8000) {
366 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 8)) {
381 const int kRowSize = (dst_width * 4 + 31) & ~31;
388 ScaleARGBFilterCols(rowptr, src, dst_width, x, dx);
392 ScaleARGBFilterCols(rowptr + rowstride, src, dst_width, x, dx);
404 ScaleARGBFilterCols(rowptr, src, dst_width, x, dx);
412 InterpolateRow(dst_argb, rowptr, 0, dst_width * 4, 0);
415 InterpolateRow(dst_argb, rowptr, rowstride, dst_width * 4, yf);
427 int dst_width, int dst_height,
479 ptrdiff_t src_stride, int dst_width, int source_y_fraction) =
484 if (IS_ALIGNED(dst_width, 4)) {
492 if (IS_ALIGNED(dst_width, 8)) {
500 if (IS_ALIGNED(dst_width, 4)) {
513 int dst_width, int x, int dx) =
527 if (IS_ALIGNED(dst_width, 4)) {
540 if (IS_ALIGNED(dst_width, 8)) {
545 if (!filtering && src_width * 2 == dst_width && x < 0x8000) {
548 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 8)) {
566 const int kRowSize = (dst_width * 4 + 31) & ~31;
577 ScaleARGBFilterCols(rowptr, src_row_y, dst_width, x, dx);
585 ScaleARGBFilterCols(rowptr + rowstride, src_row_y, dst_width, x, dx);
608 ScaleARGBFilterCols(rowptr, argb_row, dst_width, x, dx);
620 InterpolateRow(dst_argb, rowptr, 0, dst_width * 4, 0);
623 InterpolateRow(dst_argb, rowptr, rowstride, dst_width * 4, yf);
639 int dst_width, int dst_height,
645 int dst_width, int x, int dx) =
655 if (IS_ALIGNED(dst_width, 8)) {
660 if (src_width * 2 == dst_width && x < 0x8000) {
663 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 8)) {
671 dst_width, x, dx);
683 int dst_width, int dst_height,
694 dst_width, dst_height,
703 ScaleSlope(src_width, src_height, dst_width, dst_height, filtering,
791 int dst_width, int dst_height,
795 !dst_argb || dst_width <= 0 || dst_height <= 0 ||
798 (clip_x + clip_width) > dst_width ||
803 dst_argb, dst_stride_argb, dst_width, dst_height,
813 int dst_width, int dst_height,
817 !dst_argb || dst_width <= 0 || dst_height <= 0) {
821 dst_argb, dst_stride_argb, dst_width, dst_height,
822 0, 0, dst_width, dst_height, filtering);
835 int dst_width, int dst_height,
849 dst_width, dst_height,