Home
last modified time | relevance | path

Searched refs:CopyRow (Results 1 – 5 of 5) sorted by relevance

/external/libyuv/files/source/
Drotate_argb.cc91 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()
Dconvert_from.cc51 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()
Dconvert.cc360 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 …]
Drotate.cc862 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()
Dplanar_functions.cc31 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()