Searched refs:dst_bayer (Results 1 - 10 of 10) sorted by relevance

/external/libyuv/files/source/
H A Dformat_conversion.cc31 uint8* dst_bayer, uint32 selector, int pix) {
34 mov edx, [esp + 8] // dst_bayer
55 static void ARGBToBayerRow_SSSE3(const uint8* src_argb, uint8* dst_bayer,
70 "+r"(dst_bayer), // %1
83 uint8* dst_bayer, uint32 selector, int pix) {
88 dst_bayer[0] = src_argb[index0];
89 dst_bayer[1] = src_argb[index1];
91 dst_bayer += 2;
94 dst_bayer[0] = src_argb[index0];
139 uint8* dst_bayer, in
30 ARGBToBayerRow_SSSE3(const uint8* src_argb, uint8* dst_bayer, uint32 selector, int pix) argument
82 ARGBToBayerRow_C(const uint8* src_argb, uint8* dst_bayer, uint32 selector, int pix) argument
138 ARGBToBayer(const uint8* src_argb, int src_stride_argb, uint8* dst_bayer, int dst_stride_bayer, int width, int height, uint32 dst_fourcc_bayer) argument
436 I420ToBayer(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_bayer, int dst_stride_bayer, int width, int height, uint32 dst_fourcc_bayer) argument
[all...]
/external/chromium_org/third_party/libyuv/include/libyuv/
H A Dformat_conversion.h136 uint8* dst_bayer, int dst_stride_bayer,
141 uint8* dst_bayer, int dst_stride_bayer,
146 uint8* dst_bayer, int dst_stride_bayer,
151 uint8* dst_bayer, int dst_stride_bayer,
159 uint8* dst_bayer, int dst_stride_bayer,
H A Drow.h1467 void ARGBToBayerRow_C(const uint8* src_argb, uint8* dst_bayer,
1469 void ARGBToBayerRow_SSSE3(const uint8* src_argb, uint8* dst_bayer,
1471 void ARGBToBayerRow_NEON(const uint8* src_argb, uint8* dst_bayer,
1473 void ARGBToBayerRow_Any_SSSE3(const uint8* src_argb, uint8* dst_bayer,
1475 void ARGBToBayerRow_Any_NEON(const uint8* src_argb, uint8* dst_bayer,
1477 void ARGBToBayerGGRow_C(const uint8* src_argb, uint8* dst_bayer,
1479 void ARGBToBayerGGRow_SSE2(const uint8* src_argb, uint8* dst_bayer,
1481 void ARGBToBayerGGRow_NEON(const uint8* src_argb, uint8* dst_bayer,
1483 void ARGBToBayerGGRow_Any_SSE2(const uint8* src_argb, uint8* dst_bayer,
1485 void ARGBToBayerGGRow_Any_NEON(const uint8* src_argb, uint8* dst_bayer,
[all...]
/external/libyuv/files/include/libyuv/
H A Dformat_conversion.h136 uint8* dst_bayer, int dst_stride_bayer,
141 uint8* dst_bayer, int dst_stride_bayer,
146 uint8* dst_bayer, int dst_stride_bayer,
151 uint8* dst_bayer, int dst_stride_bayer,
159 uint8* dst_bayer, int dst_stride_bayer,
/external/chromium_org/third_party/libyuv/source/
H A Dformat_conversion.cc64 uint8* dst_bayer, int dst_stride_bayer,
72 void (*ARGBToBayerRow)(const uint8* src_argb, uint8* dst_bayer,
101 ARGBToBayerRow(src_argb, dst_bayer, index_map[y & 1], width);
103 dst_bayer += dst_stride_bayer;
397 uint8* dst_bayer, int dst_stride_bayer,
405 void (*ARGBToBayerRow)(const uint8* src_argb, uint8* dst_bayer,
482 ARGBToBayerRow(row, dst_bayer, index_map[y & 1], width);
483 dst_bayer += dst_stride_bayer;
514 uint8* dst_bayer, int dst_stride_bayer, \
519 dst_bayer, dst_stride_baye
63 ARGBToBayer(const uint8* src_argb, int src_stride_argb, uint8* dst_bayer, int dst_stride_bayer, int width, int height, uint32 dst_fourcc_bayer) argument
394 I420ToBayer(const uint8* src_y, int src_stride_y, const uint8* src_u, int src_stride_u, const uint8* src_v, int src_stride_v, uint8* dst_bayer, int dst_stride_bayer, int width, int height, uint32 dst_fourcc_bayer) argument
[all...]
H A Drow_neon.cc1177 void ARGBToBayerRow_NEON(const uint8* src_argb, uint8* dst_bayer, argument
1190 "+r"(dst_bayer), // %1
1198 void ARGBToBayerGGRow_NEON(const uint8* src_argb, uint8* dst_bayer, argument
1207 "+r"(dst_bayer), // %1
H A Drow_common.cc1962 uint8* dst_bayer, uint32 selector, int pix) {
1968 dst_bayer[0] = src_argb[index0];
1969 dst_bayer[1] = src_argb[index1];
1971 dst_bayer += 2;
1974 dst_bayer[0] = src_argb[index0];
1980 uint8* dst_bayer, uint32 selector, int pix) {
1984 dst_bayer[0] = src_argb[1];
1985 dst_bayer[1] = src_argb[5];
1987 dst_bayer += 2;
1990 dst_bayer[
1961 ARGBToBayerRow_C(const uint8* src_argb, uint8* dst_bayer, uint32 selector, int pix) argument
1979 ARGBToBayerGGRow_C(const uint8* src_argb, uint8* dst_bayer, uint32 selector, int pix) argument
[all...]
H A Drow_posix.cc5817 void ARGBToBayerRow_SSSE3(const uint8* src_argb, uint8* dst_bayer, argument
5836 "+r"(dst_bayer), // %1
5848 void ARGBToBayerGGRow_SSE2(const uint8* src_argb, uint8* dst_bayer, argument
5869 "+r"(dst_bayer), // %1
H A Dplanar_functions.cc1927 void (*ARGBToBayerRow)(const uint8* src_argb, uint8* dst_bayer,
H A Drow_win.cc6671 void ARGBToBayerRow_SSSE3(const uint8* src_argb, uint8* dst_bayer, argument
6675 mov edx, [esp + 8] // dst_bayer
6698 void ARGBToBayerGGRow_SSE2(const uint8* src_argb, uint8* dst_bayer, argument
6702 mov edx, [esp + 8] // dst_bayer

Completed in 135 milliseconds