HomeSort by relevance Sort by last modified time
    Searched refs:dst_argb (Results 26 - 50 of 81) sorted by null

12 3 4

  /external/libyuv/files/source/
row_neon64.cc 131 uint8* dst_argb,
147 "+r"(dst_argb), // %3
161 uint8* dst_argb,
177 "+r"(dst_argb), // %3
192 uint8* dst_argb,
210 "+r"(dst_argb), // %4
399 void I400ToARGBRow_NEON(const uint8* src_y, uint8* dst_argb, int width) {
411 "+r"(dst_argb), // %1
422 void J400ToARGBRow_NEON(const uint8* src_y, uint8* dst_argb, int width) {
435 "+r"(dst_argb), // %
    [all...]
planar_functions.cc 773 uint8* dst_argb,
780 if (!src_argb || !dst_argb || width <= 0 || height == 0) {
824 ARGBMirrorRow(src_argb, dst_argb, width);
826 dst_argb += dst_stride_argb;
837 uint8* dst_argb, int width) = ARGBBlendRow_C;
858 uint8* dst_argb,
864 uint8* dst_argb, int width) = GetARGBBlend();
865 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) {
871 dst_argb = dst_argb + (height - 1) * dst_stride_argb
    [all...]
row_gcc.cc 156 void J400ToARGBRow_SSE2(const uint8* src_y, uint8* dst_argb, int width) {
176 "+r"(dst_argb), // %1
184 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int width) {
215 "+r"(dst_argb), // %1
222 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int width) {
253 "+r"(dst_argb), // %1
    [all...]
row_common.cc 73 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) {
79 dst_argb[0] = b;
80 dst_argb[1] = g;
81 dst_argb[2] = r;
82 dst_argb[3] = 255u;
83 dst_argb += 4;
88 void RAWToARGBRow_C(const uint8* src_raw, uint8* dst_argb, int width) {
94 dst_argb[0] = b;
95 dst_argb[1] = g;
96 dst_argb[2] = r
    [all...]
scale_argb.cc 40 uint8* dst_argb,
49 uint8* dst_argb, int dst_width) =
119 ScaleARGBRowDown2(src_argb, src_stride, dst_argb, dst_width);
121 dst_argb += dst_stride;
135 uint8* dst_argb,
146 uint8* dst_argb, int dst_width) =
176 ScaleARGBRowDown2(row, kRowSize, dst_argb, dst_width);
178 dst_argb += dst_stride;
193 uint8* dst_argb,
203 int src_step, uint8* dst_argb, int dst_width)
    [all...]
scale_neon.cc 796 uint8* dst_argb,
818 "+r"(dst_argb), // %1
    [all...]
rotate_argb.cc 198 uint8* dst_argb,
203 if (!src_argb || width <= 0 || height == 0 || !dst_argb) {
217 return ARGBCopy(src_argb, src_stride_argb, dst_argb, dst_stride_argb,
220 ARGBRotate90(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width,
224 ARGBRotate270(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width,
228 ARGBRotate180(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width,
  /external/libaom/libaom/third_party/libyuv/source/
planar_functions.cc 483 uint8* dst_argb, int dst_stride_argb,
488 if (!src_argb || !dst_argb || width <= 0 || height == 0) {
524 ARGBMirrorRow(src_argb, dst_argb, width);
526 dst_argb += dst_stride_argb;
537 uint8* dst_argb, int width) = ARGBBlendRow_C;
561 uint8* dst_argb, int dst_stride_argb,
565 uint8* dst_argb, int width) = GetARGBBlend();
566 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) {
572 dst_argb = dst_argb + (height - 1) * dst_stride_argb
    [all...]
row_common.cc 73 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) {
79 dst_argb[0] = b;
80 dst_argb[1] = g;
81 dst_argb[2] = r;
82 dst_argb[3] = 255u;
83 dst_argb += 4;
88 void RAWToARGBRow_C(const uint8* src_raw, uint8* dst_argb, int width) {
94 dst_argb[0] = b;
95 dst_argb[1] = g;
96 dst_argb[2] = r
    [all...]
row_gcc.cc 145 void TestRow_SSE2(const uint8* src_y, uint8* dst_argb, int pix) {
231 "+r"(dst_argb), // %1
240 void J400ToARGBRow_SSE2(const uint8* src_y, uint8* dst_argb, int pix) {
260 "+r"(dst_argb), // %1
268 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) {
299 "+r"(dst_argb), // %1
306 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix) {
337 "+r"(dst_argb), // %1
    [all...]
scale_argb.cc 36 const uint8* src_argb, uint8* dst_argb,
42 uint8* dst_argb, int dst_width) =
84 ScaleARGBRowDown2(src_argb, src_stride, dst_argb, dst_width);
86 dst_argb += dst_stride;
96 const uint8* src_argb, uint8* dst_argb,
104 uint8* dst_argb, int dst_width) = ScaleARGBRowDown2Box_C;
130 ScaleARGBRowDown2(row, kRowSize, dst_argb, dst_width);
132 dst_argb += dst_stride;
143 const uint8* src_argb, uint8* dst_argb,
150 int src_step, uint8* dst_argb, int dst_width)
    [all...]
scale_neon.cc 774 uint8* dst_argb, int dst_width) {
795 "+r"(dst_argb), // %1
845 int src_stepx, uint8* dst_argb, int dst_width) {
    [all...]
scale_neon64.cc 779 uint8* dst_argb, int dst_width) {
798 "+r"(dst_argb), // %1
    [all...]
rotate_argb.cc 162 uint8* dst_argb, int dst_stride_argb, int width, int height,
164 if (!src_argb || width <= 0 || height == 0 || !dst_argb) {
179 dst_argb, dst_stride_argb,
183 dst_argb, dst_stride_argb,
188 dst_argb, dst_stride_argb,
193 dst_argb, dst_stride_argb,
scale_gcc.cc 694 // Alignment requirement: src_argb 16 byte aligned, dst_argb 16 byte aligned.
720 uint8* dst_argb, int dst_width) {
733 "+r"(dst_argb), // %1
741 uint8* dst_argb, int dst_width) {
757 "+r"(dst_argb), // %1
765 uint8* dst_argb, int dst_width) {
785 "+r"(dst_argb), // %1
794 // Alignment requirement: dst_argb 16 byte aligned.
796 int src_stepx, uint8* dst_argb, int dst_width)
    [all...]
scale_common.cc 654 uint8* dst_argb, int dst_width) {
656 uint32* dst = (uint32*)(dst_argb);
672 uint8* dst_argb, int dst_width) {
675 dst_argb[0] = (src_argb[0] + src_argb[4] + 1) >> 1;
676 dst_argb[1] = (src_argb[1] + src_argb[5] + 1) >> 1;
677 dst_argb[2] = (src_argb[2] + src_argb[6] + 1) >> 1;
678 dst_argb[3] = (src_argb[3] + src_argb[7] + 1) >> 1;
680 dst_argb += 4;
685 uint8* dst_argb, int dst_width) {
688 dst_argb[0] = (src_argb[0] + src_argb[4]
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
scale_gcc.cc     [all...]
row_common.cc 84 void RGB24ToARGBRow_C(const uint8_t* src_rgb24, uint8_t* dst_argb, int width) {
90 dst_argb[0] = b;
91 dst_argb[1] = g;
92 dst_argb[2] = r;
93 dst_argb[3] = 255u;
94 dst_argb += 4;
99 void RAWToARGBRow_C(const uint8_t* src_raw, uint8_t* dst_argb, int width) {
105 dst_argb[0] = b;
106 dst_argb[1] = g;
107 dst_argb[2] = r
    [all...]
scale_argb.cc 40 uint8_t* dst_argb,
49 uint8_t* dst_argb, int dst_width) =
119 ScaleARGBRowDown2(src_argb, src_stride, dst_argb, dst_width);
121 dst_argb += dst_stride;
135 uint8_t* dst_argb,
146 uint8_t* dst_argb, int dst_width) =
176 ScaleARGBRowDown2(row, kRowSize, dst_argb, dst_width);
178 dst_argb += dst_stride;
193 uint8_t* dst_argb,
203 int src_step, uint8_t* dst_argb, int dst_width)
    [all...]
scale_neon.cc 732 uint8_t* dst_argb,
745 "+r"(dst_argb), // %1
792 uint8_t* dst_argb
    [all...]
scale_neon64.cc 739 uint8_t* dst_argb,
753 "+r"(dst_argb), // %1
    [all...]
planar_functions.cc 970 uint8_t* dst_argb,
977 if (!src_argb || !dst_argb || width <= 0 || height == 0) {
1021 ARGBMirrorRow(src_argb, dst_argb, width);
1023 dst_argb += dst_stride_argb;
1034 uint8_t* dst_argb, int width) = ARGBBlendRow_C;
1060 uint8_t* dst_argb,
1066 uint8_t* dst_argb, int width) = GetARGBBlend();
1067 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) {
1073 dst_argb = dst_argb + (height - 1) * dst_stride_argb
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
planar_functions.h 289 uint8_t* dst_argb,
374 int ARGBRect(uint8_t* dst_argb,
386 uint8_t* dst_argb,
393 int ARGBGray(uint8_t* dst_argb,
402 int ARGBSepia(uint8_t* dst_argb,
418 uint8_t* dst_argb,
431 int RGBColorMatrix(uint8_t* dst_argb,
442 int ARGBColorTable(uint8_t* dst_argb,
453 int RGBColorTable(uint8_t* dst_argb,
467 uint8_t* dst_argb,
    [all...]
row.h 667 uint8_t* dst_argb,
673 uint8_t* dst_argb,
680 uint8_t* dst_argb,
686 uint8_t* dst_argb,
721 uint8_t* dst_argb,
731 uint8_t* dst_argb,
745 uint8_t* dst_argb,
749 uint8_t* dst_argb,
755 uint8_t* dst_argb,
762 uint8_t* dst_argb,
    [all...]
  /external/libyuv/files/include/libyuv/
scale_row.h 123 uint8* dst_argb,
136 uint16* dst_argb,
311 uint8* dst_argb,
315 uint8* dst_argb,
319 uint8* dst_argb,
324 uint8* dst_argb,
329 uint8* dst_argb,
331 void ScaleARGBCols_C(uint8* dst_argb,
336 void ScaleARGBCols64_C(uint8* dst_argb,
341 void ScaleARGBColsUp2_C(uint8* dst_argb,
    [all...]

Completed in 316 milliseconds

12 3 4