/external/libvpx/libvpx/third_party/libyuv/source/ |
D | convert_argb.cc | 30 uint8* dst_argb, int dst_stride_argb, in ARGBCopy() argument 32 if (!src_argb || !dst_argb || in ARGBCopy() 43 CopyPlane(src_argb, src_stride_argb, dst_argb, dst_stride_argb, in ARGBCopy() 52 uint8* dst_argb, int dst_stride_argb, in I420ToARGBMatrix() argument 62 if (!src_y || !src_u || !src_v || !dst_argb || in I420ToARGBMatrix() 69 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in I420ToARGBMatrix() 101 IS_ALIGNED(dst_argb, 4) && IS_ALIGNED(dst_stride_argb, 4)) { in I420ToARGBMatrix() 107 I422ToARGBRow(src_y, src_u, src_v, dst_argb, yuvconstants, width); in I420ToARGBMatrix() 108 dst_argb += dst_stride_argb; in I420ToARGBMatrix() 123 uint8* dst_argb, int dst_stride_argb, in I420ToARGB() argument [all …]
|
D | row_gcc.cc | 189 void J400ToARGBRow_SSE2(const uint8* src_y, uint8* dst_argb, int width) { in J400ToARGBRow_SSE2() argument 209 "+r"(dst_argb), // %1 in J400ToARGBRow_SSE2() 217 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int width) { in RGB24ToARGBRow_SSSE3() argument 248 "+r"(dst_argb), // %1 in RGB24ToARGBRow_SSSE3() 255 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int width) { in RAWToARGBRow_SSSE3() argument 286 "+r"(dst_argb), // %1 in RAWToARGBRow_SSSE3() 1655 "movdqu %%xmm0," MEMACCESS([dst_argb]) " \n" \ 1656 "movdqu %%xmm1," MEMACCESS2(0x10, [dst_argb]) " \n" \ 1657 "lea " MEMLEA(0x20, [dst_argb]) ", %[dst_argb] \n" 1674 uint8* dst_argb, in I444ToARGBRow_SSSE3() argument [all …]
|
D | row_neon.cc | 140 uint8* dst_argb, in I444ToARGBRow_NEON() argument 156 "+r"(dst_argb), // %3 in I444ToARGBRow_NEON() 170 uint8* dst_argb, in I422ToARGBRow_NEON() argument 186 "+r"(dst_argb), // %3 in I422ToARGBRow_NEON() 201 uint8* dst_argb, in I422AlphaToARGBRow_NEON() argument 219 "+r"(dst_argb), // %4 in I422AlphaToARGBRow_NEON() 233 uint8* dst_argb, in I411ToARGBRow_NEON() argument 249 "+r"(dst_argb), // %3 in I411ToARGBRow_NEON() 438 uint8* dst_argb, in I400ToARGBRow_NEON() argument 451 "+r"(dst_argb), // %1 in I400ToARGBRow_NEON() [all …]
|
D | planar_functions.cc | 616 uint8* dst_argb, int dst_stride_argb, in ARGBMirror() argument 621 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBMirror() 657 ARGBMirrorRow(src_argb, dst_argb, width); in ARGBMirror() 659 dst_argb += dst_stride_argb; in ARGBMirror() 670 uint8* dst_argb, int width) = ARGBBlendRow_C; in GetARGBBlend() 689 uint8* dst_argb, int dst_stride_argb, in ARGBBlend() argument 693 uint8* dst_argb, int width) = GetARGBBlend(); in ARGBBlend() 694 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBBlend() 700 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in ARGBBlend() 713 ARGBBlendRow(src_argb0, src_argb1, dst_argb, width); in ARGBBlend() [all …]
|
D | row_neon64.cc | 133 uint8* dst_argb, in I444ToARGBRow_NEON() argument 149 "+r"(dst_argb), // %3 in I444ToARGBRow_NEON() 163 uint8* dst_argb, in I422ToARGBRow_NEON() argument 179 "+r"(dst_argb), // %3 in I422ToARGBRow_NEON() 194 uint8* dst_argb, in I422AlphaToARGBRow_NEON() argument 212 "+r"(dst_argb), // %4 in I422AlphaToARGBRow_NEON() 226 uint8* dst_argb, in I411ToARGBRow_NEON() argument 242 "+r"(dst_argb), // %3 in I411ToARGBRow_NEON() 432 uint8* dst_argb, in I400ToARGBRow_NEON() argument 445 "+r"(dst_argb), // %1 in I400ToARGBRow_NEON() [all …]
|
D | row_common.cc | 73 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) { in RGB24ToARGBRow_C() argument 79 dst_argb[0] = b; in RGB24ToARGBRow_C() 80 dst_argb[1] = g; in RGB24ToARGBRow_C() 81 dst_argb[2] = r; in RGB24ToARGBRow_C() 82 dst_argb[3] = 255u; in RGB24ToARGBRow_C() 83 dst_argb += 4; in RGB24ToARGBRow_C() 88 void RAWToARGBRow_C(const uint8* src_raw, uint8* dst_argb, int width) { in RAWToARGBRow_C() argument 94 dst_argb[0] = b; in RAWToARGBRow_C() 95 dst_argb[1] = g; in RAWToARGBRow_C() 96 dst_argb[2] = r; in RAWToARGBRow_C() [all …]
|
D | scale_argb.cc | 36 const uint8* src_argb, uint8* dst_argb, in ScaleARGBDown2() argument 42 uint8* dst_argb, int dst_width) = in ScaleARGBDown2() 84 ScaleARGBRowDown2(src_argb, src_stride, dst_argb, dst_width); in ScaleARGBDown2() 86 dst_argb += dst_stride; in ScaleARGBDown2() 96 const uint8* src_argb, uint8* dst_argb, in ScaleARGBDown4Box() argument 104 uint8* dst_argb, int dst_width) = ScaleARGBRowDown2Box_C; in ScaleARGBDown4Box() 130 ScaleARGBRowDown2(row, kRowSize, dst_argb, dst_width); in ScaleARGBDown4Box() 132 dst_argb += dst_stride; in ScaleARGBDown4Box() 143 const uint8* src_argb, uint8* dst_argb, in ScaleARGBDownEven() argument 150 int src_step, uint8* dst_argb, int dst_width) = in ScaleARGBDownEven() [all …]
|
D | scale_common.cc | 683 uint8* dst_argb, int dst_width) { in ScaleARGBRowDown2_C() argument 685 uint32* dst = (uint32*)(dst_argb); in ScaleARGBRowDown2_C() 701 uint8* dst_argb, int dst_width) { in ScaleARGBRowDown2Linear_C() argument 704 dst_argb[0] = (src_argb[0] + src_argb[4] + 1) >> 1; in ScaleARGBRowDown2Linear_C() 705 dst_argb[1] = (src_argb[1] + src_argb[5] + 1) >> 1; in ScaleARGBRowDown2Linear_C() 706 dst_argb[2] = (src_argb[2] + src_argb[6] + 1) >> 1; in ScaleARGBRowDown2Linear_C() 707 dst_argb[3] = (src_argb[3] + src_argb[7] + 1) >> 1; in ScaleARGBRowDown2Linear_C() 709 dst_argb += 4; in ScaleARGBRowDown2Linear_C() 714 uint8* dst_argb, int dst_width) { in ScaleARGBRowDown2Box_C() argument 717 dst_argb[0] = (src_argb[0] + src_argb[4] + in ScaleARGBRowDown2Box_C() [all …]
|
D | scale_gcc.cc | 953 uint8* dst_argb, int dst_width) { in ScaleARGBRowDown2_SSE2() argument 966 "+r"(dst_argb), // %1 in ScaleARGBRowDown2_SSE2() 974 uint8* dst_argb, int dst_width) { in ScaleARGBRowDown2Linear_SSE2() argument 990 "+r"(dst_argb), // %1 in ScaleARGBRowDown2Linear_SSE2() 998 uint8* dst_argb, int dst_width) { in ScaleARGBRowDown2Box_SSE2() argument 1018 "+r"(dst_argb), // %1 in ScaleARGBRowDown2Box_SSE2() 1029 int src_stepx, uint8* dst_argb, int dst_width) { in ScaleARGBRowDownEven_SSE2() argument 1051 "+r"(dst_argb), // %2 in ScaleARGBRowDownEven_SSE2() 1063 uint8* dst_argb, int dst_width) { in ScaleARGBRowDownEvenBox_SSE2() argument 1096 "+r"(dst_argb), // %2 in ScaleARGBRowDownEvenBox_SSE2() [all …]
|
/external/libyuv/files/source/ |
D | convert_argb.cc | 31 uint8* dst_argb, in ARGBCopy() argument 35 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBCopy() 45 CopyPlane(src_argb, src_stride_argb, dst_argb, dst_stride_argb, width * 4, in ARGBCopy() 57 uint8* dst_argb, in I420ToARGBMatrix() argument 67 if (!src_y || !src_u || !src_v || !dst_argb || width <= 0 || height == 0) { in I420ToARGBMatrix() 73 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in I420ToARGBMatrix() 105 IS_ALIGNED(dst_argb, 4) && IS_ALIGNED(dst_stride_argb, 4)) { in I420ToARGBMatrix() 119 I422ToARGBRow(src_y, src_u, src_v, dst_argb, yuvconstants, width); in I420ToARGBMatrix() 120 dst_argb += dst_stride_argb; in I420ToARGBMatrix() 138 uint8* dst_argb, in I420ToARGB() argument [all …]
|
D | row_neon.cc | 131 uint8* dst_argb, in I444ToARGBRow_NEON() argument 147 "+r"(dst_argb), // %3 in I444ToARGBRow_NEON() 161 uint8* dst_argb, in I422ToARGBRow_NEON() argument 177 "+r"(dst_argb), // %3 in I422ToARGBRow_NEON() 192 uint8* dst_argb, in I422AlphaToARGBRow_NEON() argument 210 "+r"(dst_argb), // %4 in I422AlphaToARGBRow_NEON() 398 void I400ToARGBRow_NEON(const uint8* src_y, uint8* dst_argb, int width) { in I400ToARGBRow_NEON() argument 410 "+r"(dst_argb), // %1 in I400ToARGBRow_NEON() 421 void J400ToARGBRow_NEON(const uint8* src_y, uint8* dst_argb, int width) { in J400ToARGBRow_NEON() argument 434 "+r"(dst_argb), // %1 in J400ToARGBRow_NEON() [all …]
|
D | row_gcc.cc | 156 void J400ToARGBRow_SSE2(const uint8* src_y, uint8* dst_argb, int width) { in J400ToARGBRow_SSE2() argument 176 "+r"(dst_argb), // %1 in J400ToARGBRow_SSE2() 184 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int width) { in RGB24ToARGBRow_SSSE3() argument 215 "+r"(dst_argb), // %1 in RGB24ToARGBRow_SSSE3() 222 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int width) { in RAWToARGBRow_SSSE3() argument 253 "+r"(dst_argb), // %1 in RAWToARGBRow_SSSE3() 1640 "movdqu %%xmm0," MEMACCESS([dst_argb]) " \n" \ 1641 "movdqu %%xmm1," MEMACCESS2(0x10, [dst_argb]) " \n" \ 1642 "lea " MEMLEA(0x20, [dst_argb]) ", %[dst_argb] \n" 1659 uint8* dst_argb, in I444ToARGBRow_SSSE3() argument [all …]
|
D | row_neon64.cc | 131 uint8* dst_argb, in I444ToARGBRow_NEON() argument 147 "+r"(dst_argb), // %3 in I444ToARGBRow_NEON() 161 uint8* dst_argb, in I422ToARGBRow_NEON() argument 177 "+r"(dst_argb), // %3 in I422ToARGBRow_NEON() 192 uint8* dst_argb, in I422AlphaToARGBRow_NEON() argument 210 "+r"(dst_argb), // %4 in I422AlphaToARGBRow_NEON() 399 void I400ToARGBRow_NEON(const uint8* src_y, uint8* dst_argb, int width) { in I400ToARGBRow_NEON() argument 411 "+r"(dst_argb), // %1 in I400ToARGBRow_NEON() 422 void J400ToARGBRow_NEON(const uint8* src_y, uint8* dst_argb, int width) { in J400ToARGBRow_NEON() argument 435 "+r"(dst_argb), // %1 in J400ToARGBRow_NEON() [all …]
|
D | row_common.cc | 73 void RGB24ToARGBRow_C(const uint8* src_rgb24, uint8* dst_argb, int width) { in RGB24ToARGBRow_C() argument 79 dst_argb[0] = b; in RGB24ToARGBRow_C() 80 dst_argb[1] = g; in RGB24ToARGBRow_C() 81 dst_argb[2] = r; in RGB24ToARGBRow_C() 82 dst_argb[3] = 255u; in RGB24ToARGBRow_C() 83 dst_argb += 4; in RGB24ToARGBRow_C() 88 void RAWToARGBRow_C(const uint8* src_raw, uint8* dst_argb, int width) { in RAWToARGBRow_C() argument 94 dst_argb[0] = b; in RAWToARGBRow_C() 95 dst_argb[1] = g; in RAWToARGBRow_C() 96 dst_argb[2] = r; in RAWToARGBRow_C() [all …]
|
D | planar_functions.cc | 773 uint8* dst_argb, in ARGBMirror() argument 780 if (!src_argb || !dst_argb || width <= 0 || height == 0) { in ARGBMirror() 824 ARGBMirrorRow(src_argb, dst_argb, width); in ARGBMirror() 826 dst_argb += dst_stride_argb; in ARGBMirror() 837 uint8* dst_argb, int width) = ARGBBlendRow_C; in GetARGBBlend() 858 uint8* dst_argb, in ARGBBlend() argument 864 uint8* dst_argb, int width) = GetARGBBlend(); in ARGBBlend() 865 if (!src_argb0 || !src_argb1 || !dst_argb || width <= 0 || height == 0) { in ARGBBlend() 871 dst_argb = dst_argb + (height - 1) * dst_stride_argb; in ARGBBlend() 883 ARGBBlendRow(src_argb0, src_argb1, dst_argb, width); in ARGBBlend() [all …]
|
D | scale_argb.cc | 40 uint8* dst_argb, in ScaleARGBDown2() argument 49 uint8* dst_argb, int dst_width) = in ScaleARGBDown2() 119 ScaleARGBRowDown2(src_argb, src_stride, dst_argb, dst_width); in ScaleARGBDown2() 121 dst_argb += dst_stride; in ScaleARGBDown2() 135 uint8* dst_argb, in ScaleARGBDown4Box() argument 146 uint8* dst_argb, int dst_width) = in ScaleARGBDown4Box() 176 ScaleARGBRowDown2(row, kRowSize, dst_argb, dst_width); in ScaleARGBDown4Box() 178 dst_argb += dst_stride; in ScaleARGBDown4Box() 193 uint8* dst_argb, in ScaleARGBDownEven() argument 203 int src_step, uint8* dst_argb, int dst_width) = in ScaleARGBDownEven() [all …]
|
D | scale_common.cc | 777 uint8* dst_argb, in ScaleARGBRowDown2_C() argument 780 uint32* dst = (uint32*)(dst_argb); in ScaleARGBRowDown2_C() 796 uint8* dst_argb, in ScaleARGBRowDown2Linear_C() argument 801 dst_argb[0] = (src_argb[0] + src_argb[4] + 1) >> 1; in ScaleARGBRowDown2Linear_C() 802 dst_argb[1] = (src_argb[1] + src_argb[5] + 1) >> 1; in ScaleARGBRowDown2Linear_C() 803 dst_argb[2] = (src_argb[2] + src_argb[6] + 1) >> 1; in ScaleARGBRowDown2Linear_C() 804 dst_argb[3] = (src_argb[3] + src_argb[7] + 1) >> 1; in ScaleARGBRowDown2Linear_C() 806 dst_argb += 4; in ScaleARGBRowDown2Linear_C() 812 uint8* dst_argb, in ScaleARGBRowDown2Box_C() argument 816 dst_argb[0] = (src_argb[0] + src_argb[4] + src_argb[src_stride] + in ScaleARGBRowDown2Box_C() [all …]
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | row.h | 566 uint8* dst_argb, 572 uint8* dst_argb, 579 uint8* dst_argb, 585 uint8* dst_argb, 591 uint8* dst_argb, 626 uint8* dst_argb, 636 uint8* dst_argb, 640 uint8* dst_argb, 644 uint8* dst_argb, 879 void ARGBCopyAlphaRow_C(const uint8* src_argb, uint8* dst_argb, int width); [all …]
|
D | convert_argb.h | 34 uint8* dst_argb, int dst_stride_argb, 42 uint8* dst_argb, int dst_stride_argb, 50 uint8* dst_argb, int dst_stride_argb, 58 uint8* dst_argb, int dst_stride_argb, 66 uint8* dst_argb, int dst_stride_argb, 74 uint8* dst_argb, int dst_stride_argb, 90 uint8* dst_argb, int dst_stride_argb, 99 uint8* dst_argb, int dst_stride_argb, 114 uint8* dst_argb, int dst_stride_argb, 120 uint8* dst_argb, int dst_stride_argb, [all …]
|
D | planar_functions.h | 152 uint8* dst_argb, int dst_stride_argb, 205 int ARGBRect(uint8* dst_argb, int dst_stride_argb, 211 uint8* dst_argb, int dst_stride_argb, 216 int ARGBGray(uint8* dst_argb, int dst_stride_argb, 221 int ARGBSepia(uint8* dst_argb, int dst_stride_argb, 232 uint8* dst_argb, int dst_stride_argb, 243 int RGBColorMatrix(uint8* dst_argb, int dst_stride_argb, 250 int ARGBColorTable(uint8* dst_argb, int dst_stride_argb, 257 int RGBColorTable(uint8* dst_argb, int dst_stride_argb, 266 uint8* dst_argb, int dst_stride_argb, [all …]
|
D | scale_row.h | 109 const uint8* src_argb, uint8* dst_argb, 116 const uint16* src_argb, uint16* dst_argb, 213 uint8* dst_argb, int dst_width); 216 uint8* dst_argb, int dst_width); 218 uint8* dst_argb, int dst_width); 221 uint8* dst_argb, int dst_width); 225 uint8* dst_argb, int dst_width); 226 void ScaleARGBCols_C(uint8* dst_argb, const uint8* src_argb, 228 void ScaleARGBCols64_C(uint8* dst_argb, const uint8* src_argb, 230 void ScaleARGBColsUp2_C(uint8* dst_argb, const uint8* src_argb, [all …]
|
/external/libyuv/files/include/libyuv/ |
D | row.h | 691 uint8* dst_argb, 697 uint8* dst_argb, 704 uint8* dst_argb, 710 uint8* dst_argb, 745 uint8* dst_argb, 755 uint8* dst_argb, 759 uint8* dst_argb, 763 uint8* dst_argb, 769 uint8* dst_argb, 775 uint8* dst_argb, [all …]
|
D | convert_argb.h | 35 uint8* dst_argb, 48 uint8* dst_argb, 61 uint8* dst_argb, 74 uint8* dst_argb, 87 uint8* dst_argb, 100 uint8* dst_argb, 128 uint8* dst_argb, 154 uint8* dst_argb, 163 uint8* dst_argb, 177 uint8* dst_argb, [all …]
|
D | planar_functions.h | 227 uint8* dst_argb, 312 int ARGBRect(uint8* dst_argb, 324 uint8* dst_argb, 331 int ARGBGray(uint8* dst_argb, 340 int ARGBSepia(uint8* dst_argb, 356 uint8* dst_argb, 369 int RGBColorMatrix(uint8* dst_argb, 380 int ARGBColorTable(uint8* dst_argb, 391 int RGBColorTable(uint8* dst_argb, 405 uint8* dst_argb, [all …]
|
D | 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 …]
|