/external/libvpx/libvpx/third_party/libyuv/source/ |
D | rotate_argb.cc | 96 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C; in ARGBRotate180() local 123 CopyRow = IS_ALIGNED(width * 4, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2; in ARGBRotate180() 128 CopyRow = IS_ALIGNED(width * 4, 64) ? CopyRow_AVX : CopyRow_Any_AVX; in ARGBRotate180() 133 CopyRow = CopyRow_ERMS; in ARGBRotate180() 138 CopyRow = IS_ALIGNED(width * 4, 32) ? CopyRow_NEON : CopyRow_Any_NEON; in ARGBRotate180() 143 CopyRow = CopyRow_MIPS; in ARGBRotate180() 151 CopyRow(row, dst_bot, width * 4); // Copy first mirrored row into last in ARGBRotate180()
|
D | rotate.cc | 111 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C; in RotatePlane180() local 154 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2; in RotatePlane180() 159 CopyRow = IS_ALIGNED(width, 64) ? CopyRow_AVX : CopyRow_Any_AVX; in RotatePlane180() 164 CopyRow = CopyRow_ERMS; in RotatePlane180() 169 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_NEON : CopyRow_Any_NEON; in RotatePlane180() 174 CopyRow = CopyRow_MIPS; in RotatePlane180() 184 CopyRow(row, dst_bot, width); // Copy first mirrored row into last in RotatePlane180()
|
D | convert.cc | 190 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C; in CopyPlane2() local 193 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2; in CopyPlane2() 198 CopyRow = IS_ALIGNED(width, 64) ? CopyRow_AVX : CopyRow_Any_AVX; in CopyPlane2() 203 CopyRow = CopyRow_ERMS; in CopyPlane2() 208 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_NEON : CopyRow_Any_NEON; in CopyPlane2() 213 CopyRow = CopyRow_MIPS; in CopyPlane2() 219 CopyRow(src, dst, width); in CopyPlane2() 220 CopyRow(src + src_stride_0, dst + dst_stride, width); in CopyPlane2() 225 CopyRow(src, dst, width); in CopyPlane2()
|
D | planar_functions.cc | 32 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C; in CopyPlane() local 46 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_SSE2 : CopyRow_Any_SSE2; in CopyPlane() 51 CopyRow = IS_ALIGNED(width, 64) ? CopyRow_AVX : CopyRow_Any_AVX; in CopyPlane() 56 CopyRow = CopyRow_ERMS; in CopyPlane() 61 CopyRow = IS_ALIGNED(width, 32) ? CopyRow_NEON : CopyRow_Any_NEON; in CopyPlane() 66 CopyRow = CopyRow_MIPS; in CopyPlane() 72 CopyRow(src_y, dst_y, width); in CopyPlane() 83 void (*CopyRow)(const uint16* src, uint16* dst, int width) = CopyRow_16_C; in CopyPlane_16() local 93 CopyRow = CopyRow_16_SSE2; in CopyPlane_16() 98 CopyRow = CopyRow_16_ERMS; in CopyPlane_16() [all …]
|
/external/libyuv/files/source/ |
D | rotate_argb.cc | 91 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C; in ARGBRotate180() local 94 CopyRow = CopyRow_NEON; in ARGBRotate180() 99 CopyRow = CopyRow_X86; in ARGBRotate180() 106 CopyRow = CopyRow_SSE2; in ARGBRotate180() 123 CopyRow(row, dst_bot, width * 4); // Copy first mirrored row into last in ARGBRotate180()
|
D | convert_from.cc | 51 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C; in I420ToI422() local 54 CopyRow = CopyRow_NEON; in I420ToI422() 58 CopyRow = CopyRow_X86; in I420ToI422() 65 CopyRow = CopyRow_SSE2; in I420ToI422() 79 CopyRow(src_u, dst_u, halfwidth); in I420ToI422() 80 CopyRow(src_u, dst_u + dst_stride_u, halfwidth); in I420ToI422() 85 CopyRow(src_u, dst_u, halfwidth); in I420ToI422() 90 CopyRow(src_v, dst_v, halfwidth); in I420ToI422() 91 CopyRow(src_v, dst_v + dst_stride_v, halfwidth); in I420ToI422() 96 CopyRow(src_v, dst_v, halfwidth); in I420ToI422()
|
D | convert.cc | 360 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C; in CopyPlane2() local 363 CopyRow = CopyRow_NEON; in CopyPlane2() 367 CopyRow = CopyRow_X86; in CopyPlane2() 373 CopyRow = CopyRow_SSE2; in CopyPlane2() 381 CopyRow(src, dst, width); in CopyPlane2() 382 CopyRow(src + src_stride_0, dst + dst_stride_frame, width); in CopyPlane2() 387 CopyRow(src, dst, width); in CopyPlane2() 514 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C; in Q420ToI420() local 517 CopyRow = CopyRow_NEON; in Q420ToI420() 522 CopyRow = CopyRow_X86; in Q420ToI420() [all …]
|
D | rotate.cc | 862 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C; in RotatePlane180() local 865 CopyRow = CopyRow_NEON; in RotatePlane180() 870 CopyRow = CopyRow_X86; in RotatePlane180() 877 CopyRow = CopyRow_SSE2; in RotatePlane180() 894 CopyRow(row, dst_bot, width); // Copy first mirrored row into last in RotatePlane180()
|
D | planar_functions.cc | 31 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C; in CopyPlane() local 34 CopyRow = CopyRow_NEON; in CopyPlane() 39 CopyRow = CopyRow_X86; in CopyPlane() 46 CopyRow = CopyRow_SSE2; in CopyPlane() 52 CopyRow(src_y, dst_y, width); in CopyPlane()
|