HomeSort by relevance Sort by last modified time
    Searched refs:dst_width (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /external/libvpx/libvpx/third_party/libyuv/source/
scale_mips.cc 25 uint8* dst, int dst_width) {
30 "srl $t9, %[dst_width], 4 \n" // iterations -> by 16
58 "andi $t9, %[dst_width], 0xf \n" // residue
74 : [dst_width] "r" (dst_width)
81 uint8* dst, int dst_width) {
88 "srl $t9, %[dst_width], 3 \n" // iterations -> step 8
144 "andi $t9, %[dst_width], 0x7 \n" // x = residue
173 : [dst_width] "r" (dst_width)
    [all...]
scale_neon.cc 27 uint8* dst, int dst_width) {
39 "+r"(dst_width) // %2
47 uint8* dst, int dst_width) {
62 "+r"(dst_width) // %2
70 uint8* dst, int dst_width) {
92 "+r"(dst_width) // %3
99 uint8* dst_ptr, int dst_width) {
110 "+r"(dst_width) // %2
117 uint8* dst_ptr, int dst_width) {
144 "+r"(dst_width), // %
    [all...]
scale_neon64.cc 25 uint8* dst, int dst_width) {
37 "+r"(dst_width) // %2
45 uint8* dst, int dst_width) {
60 "+r"(dst_width) // %2
68 uint8* dst, int dst_width) {
90 "+r"(dst_width) // %3
97 uint8* dst_ptr, int dst_width) {
108 "+r"(dst_width) // %2
115 uint8* dst_ptr, int dst_width) {
144 "+r"(dst_width) // %
    [all...]
scale_common.cc 32 uint8* dst, int dst_width) {
34 for (x = 0; x < dst_width - 1; x += 2) {
40 if (dst_width & 1) {
46 uint16* dst, int dst_width) {
48 for (x = 0; x < dst_width - 1; x += 2) {
54 if (dst_width & 1) {
60 uint8* dst, int dst_width) {
63 for (x = 0; x < dst_width - 1; x += 2) {
69 if (dst_width & 1) {
75 uint16* dst, int dst_width) {
    [all...]
scale.cc 37 int dst_width, int dst_height,
43 uint8* dst_ptr, int dst_width) =
57 if (IS_ALIGNED(dst_width, 16)) {
69 if (IS_ALIGNED(dst_width, 16)) {
81 if (IS_ALIGNED(dst_width, 32)) {
102 ScaleRowDown2(src_ptr, src_stride, dst_ptr, dst_width);
109 int dst_width, int dst_height,
115 uint16* dst_ptr, int dst_width) =
126 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 16)) {
132 if (TestCpuFlag(kCpuHasSSE2) && IS_ALIGNED(dst_width, 16))
    [all...]
scale_gcc.cc 102 uint8* dst_ptr, int dst_width) {
118 "+r"(dst_width) // %2
124 uint8* dst_ptr, int dst_width) {
147 "+r"(dst_width) // %2
153 uint8* dst_ptr, int dst_width) {
184 "+r"(dst_width) // %2
193 uint8* dst_ptr, int dst_width) {
211 "+r"(dst_width) // %2
217 uint8* dst_ptr, int dst_width) {
242 "+r"(dst_width) // %
    [all...]
scale_argb.cc 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))
    [all...]
  /external/libyuv/files/source/
scale_dspr2.cc 26 int dst_width) {
31 "srl $t9, %[dst_width], 4 \n" // iterations -> by 16
59 "andi $t9, %[dst_width], 0xf \n" // residue
74 : [dst_width] "r"(dst_width)
81 int dst_width) {
88 "srl $t9, %[dst_width], 3 \n" // iterations -> step 8
144 "andi $t9, %[dst_width], 0x7 \n" // x = residue
172 : [dst_width] "r"(dst_width)
    [all...]
scale_neon.cc 29 int dst_width) {
42 "+r"(dst_width) // %2
52 int dst_width) {
68 "+r"(dst_width) // %2
78 int dst_width) {
100 "+r"(dst_width) // %3
109 int dst_width) {
121 "+r"(dst_width) // %2
130 int dst_width) {
157 "+r"(dst_width), // %
    [all...]
scale_neon64.cc 27 int dst_width) {
40 "+r"(dst_width) // %2
50 int dst_width) {
66 "+r"(dst_width) // %2
76 int dst_width) {
98 "+r"(dst_width) // %3
107 int dst_width) {
119 "+r"(dst_width) // %2
128 int dst_width) {
157 "+r"(dst_width) // %
    [all...]
scale_common.cc 34 int dst_width) {
37 for (x = 0; x < dst_width - 1; x += 2) {
43 if (dst_width & 1) {
51 int dst_width) {
54 for (x = 0; x < dst_width - 1; x += 2) {
60 if (dst_width & 1) {
68 int dst_width) {
72 for (x = 0; x < dst_width - 1; x += 2) {
78 if (dst_width & 1) {
86 int dst_width) {
    [all...]
scale.cc 38 int dst_width,
47 uint8* dst_ptr, int dst_width) =
67 if (IS_ALIGNED(dst_width, 16)) {
82 if (IS_ALIGNED(dst_width, 16)) {
98 if (IS_ALIGNED(dst_width, 32)) {
120 if (IS_ALIGNED(dst_width, 32)) {
134 ScaleRowDown2(src_ptr, src_stride, dst_ptr, dst_width);
142 int dst_width,
151 uint16* dst_ptr, int dst_width) =
165 if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(dst_width, 16))
    [all...]
scale_gcc.cc 98 int dst_width) {
115 "+r"(dst_width) // %2
123 int dst_width) {
147 "+r"(dst_width) // %2
155 int dst_width) {
186 "+r"(dst_width) // %2
197 int dst_width) {
216 "+r"(dst_width) // %2
224 int dst_width) {
250 "+r"(dst_width) // %
    [all...]
scale_argb.cc 35 int dst_width,
49 uint8* dst_argb, int dst_width) =
73 if (IS_ALIGNED(dst_width, 4)) {
89 if (IS_ALIGNED(dst_width, 8)) {
105 if (IS_ALIGNED(dst_width, 4)) {
119 ScaleARGBRowDown2(src_argb, src_stride, dst_argb, dst_width);
130 int dst_width,
142 const int kRowSize = (dst_width * 2 * 4 + 31) & ~31;
146 uint8* dst_argb, int dst_width) =
158 if (IS_ALIGNED(dst_width, 4))
    [all...]
  /external/libyuv/files/include/libyuv/
scale_row.h 118 int dst_width,
131 int dst_width,
146 int dst_width,
167 int dst_width,
178 int dst_width);
182 int dst_width);
186 int dst_width);
190 int dst_width);
194 int dst_width);
198 int dst_width);
    [all...]
scale_argb.h 29 int dst_width,
41 int dst_width,
63 int dst_width,
scale.h 37 int dst_width,
48 int dst_width,
77 int dst_width,
96 int dst_width,
117 int dst_width,
127 int dst_width,
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
scale_row.h 107 int dst_width, int dst_height,
114 int dst_width, int dst_height,
122 int dst_width, int dst_height,
141 int dst_width, int dst_height,
146 uint8* dst, int dst_width);
148 uint16* dst, int dst_width);
150 uint8* dst, int dst_width);
152 uint16* dst, int dst_width);
154 uint8* dst, int dst_width);
156 uint8* dst, int dst_width);
    [all...]
scale_argb.h 26 int dst_width, int dst_height,
34 int dst_width, int dst_height,
47 int dst_width, int dst_height,
scale.h 34 int dst_width, int dst_height,
41 int dst_width, int dst_height,
62 int dst_width, int dst_height,
73 int dst_width, int dst_height,
84 int dst_width, int dst_height,
90 uint8* dst_i420, int dst_width, int dst_height, int dst_yoffset,
  /external/libyuv/files/unit_test/
rotate_test.cc 21 int dst_width,
33 if (dst_width < 1) {
34 dst_width = 1;
47 int dst_i420_y_size = dst_width * dst_height;
48 int dst_i420_uv_size = ((dst_width + 1) / 2) * ((dst_height + 1) / 2);
58 (src_width + 1) / 2, dst_i420_c, dst_width,
59 dst_i420_c + dst_i420_y_size, (dst_width + 1) / 2,
61 (dst_width + 1) / 2, src_width, src_height, mode);
68 dst_i420_opt, dst_width, dst_i420_opt + dst_i420_y_size,
69 (dst_width + 1) / 2, dst_i420_opt + dst_i420_y_size + dst_i420_uv_size
    [all...]
rotate_argb_test.cc 21 int dst_width,
34 if (dst_width < 1) {
35 dst_width = 1;
47 int dst_stride_argb = dst_width * kBpp;
88 int dst_width,
94 TestRotateBpp(src_width, src_height, dst_width, dst_height, mode,
124 int dst_width,
130 TestRotateBpp(src_width, src_height, dst_width, dst_height, mode,
  /external/libyuv/files/util/
yuvconvert.cc 32 int dst_width = 0, dst_height = 0; // new width and height variable
97 dst_width = atoi(argv[++c]); // NOLINT
147 if (dst_width == 0 || dst_height == 0) {
149 dst_width = rec_width;
152 dst_width = Abs(image_width);
167 int dst_width,
171 for (int x = 0; x < dst_width; x += kTileX) {
173 if (x + clip_width > dst_width) {
174 clip_width = dst_width - x;
182 dst_width, dst_height, x, y, clip_width
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_alpha.c 75 const unsigned dst_width = 8; local
80 alpha = lp_build_clamped_float_to_unsigned_norm(gallivm, type, dst_width, alpha);
81 ref = lp_build_clamped_float_to_unsigned_norm(gallivm, type, dst_width, ref);
  /external/webp/src/utils/
rescaler_utils.c 24 int dst_width, int dst_height, int dst_stride,
26 const int x_add = src_width, x_sub = dst_width;
28 wrk->x_expand = (src_width < dst_width);
32 wrk->dst_width = dst_width;
71 wrk->frow = work + num_channels * dst_width;
72 memset(work, 0, 2 * dst_width * num_channels * sizeof(*work));
125 for (x = 0; x < wrk->num_channels * wrk->dst_width; ++x) {

Completed in 1210 milliseconds

1 2 3 4 5