Home
last modified time | relevance | path

Searched refs:uint8 (Results 1 – 25 of 349) sorted by relevance

12345678910>>...14

/external/libyuv/files/include/libyuv/
Drow.h150 typedef __declspec(align(16)) uint8 uvec8[16];
158 typedef uint8 __attribute__((vector_size(16))) uvec8;
166 typedef uint8 uvec8[16];
179 void I422ToARGBRow_NEON(const uint8* y_buf,
180 const uint8* u_buf,
181 const uint8* v_buf,
182 uint8* rgb_buf,
184 void I422ToBGRARow_NEON(const uint8* y_buf,
185 const uint8* u_buf,
186 const uint8* v_buf,
[all …]
Dconvert.h30 int I420Copy(const uint8* src_y, int src_stride_y,
31 const uint8* src_u, int src_stride_u,
32 const uint8* src_v, int src_stride_v,
33 uint8* dst_y, int dst_stride_y,
34 uint8* dst_u, int dst_stride_u,
35 uint8* dst_v, int dst_stride_v,
40 int I422ToI420(const uint8* src_y, int src_stride_y,
41 const uint8* src_u, int src_stride_u,
42 const uint8* src_v, int src_stride_v,
43 uint8* dst_y, int dst_stride_y,
[all …]
Dconvert_from.h27 int I420ToI422(const uint8* src_y, int src_stride_y,
28 const uint8* src_u, int src_stride_u,
29 const uint8* src_v, int src_stride_v,
30 uint8* dst_y, int dst_stride_y,
31 uint8* dst_u, int dst_stride_u,
32 uint8* dst_v, int dst_stride_v,
36 int I420ToI444(const uint8* src_y, int src_stride_y,
37 const uint8* src_u, int src_stride_u,
38 const uint8* src_v, int src_stride_v,
39 uint8* dst_y, int dst_stride_y,
[all …]
Dplanar_functions.h26 void SetPlane(uint8* dst_y, int dst_stride_y,
35 void CopyPlane(const uint8* src_y, int src_stride_y,
36 uint8* dst_y, int dst_stride_y,
41 int YUY2ToI422(const uint8* src_yuy2, int src_stride_yuy2,
42 uint8* dst_y, int dst_stride_y,
43 uint8* dst_u, int dst_stride_u,
44 uint8* dst_v, int dst_stride_v,
48 int UYVYToI422(const uint8* src_uyvy, int src_stride_uyvy,
49 uint8* dst_y, int dst_stride_y,
50 uint8* dst_u, int dst_stride_u,
[all …]
Dconvert_argb.h36 int ARGBCopy(const uint8* src_argb, int src_stride_argb,
37 uint8* dst_argb, int dst_stride_argb,
42 int I420ToARGB(const uint8* src_y, int src_stride_y,
43 const uint8* src_u, int src_stride_u,
44 const uint8* src_v, int src_stride_v,
45 uint8* dst_argb, int dst_stride_argb,
50 int I422ToARGB(const uint8* src_y, int src_stride_y,
51 const uint8* src_u, int src_stride_u,
52 const uint8* src_v, int src_stride_v,
53 uint8* dst_argb, int dst_stride_argb,
[all …]
Dformat_conversion.h23 int BayerBGGRToI420(const uint8* src_bayer, int src_stride_bayer,
24 uint8* dst_y, int dst_stride_y,
25 uint8* dst_u, int dst_stride_u,
26 uint8* dst_v, int dst_stride_v,
30 int BayerGBRGToI420(const uint8* src_bayer, int src_stride_bayer,
31 uint8* dst_y, int dst_stride_y,
32 uint8* dst_u, int dst_stride_u,
33 uint8* dst_v, int dst_stride_v,
37 int BayerGRBGToI420(const uint8* src_bayer, int src_stride_bayer,
38 uint8* dst_y, int dst_stride_y,
[all …]
Drotate.h36 int I420Rotate(const uint8* src_y, int src_stride_y,
37 const uint8* src_u, int src_stride_u,
38 const uint8* src_v, int src_stride_v,
39 uint8* dst_y, int dst_stride_y,
40 uint8* dst_u, int dst_stride_u,
41 uint8* dst_v, int dst_stride_v,
46 int NV12ToI420Rotate(const uint8* src_y, int src_stride_y,
47 const uint8* src_uv, int src_stride_uv,
48 uint8* dst_y, int dst_stride_y,
49 uint8* dst_u, int dst_stride_u,
[all …]
Dcompare.h23 uint32 HashDjb2(const uint8* src, uint64 count, uint32 seed);
27 uint64 ComputeSumSquareError(const uint8* src_a,
28 const uint8* src_b, int count);
31 uint64 ComputeSumSquareErrorPlane(const uint8* src_a, int stride_a,
32 const uint8* src_b, int stride_b,
41 double CalcFramePsnr(const uint8* src_a, int stride_a,
42 const uint8* src_b, int stride_b,
46 double I420Psnr(const uint8* src_y_a, int stride_y_a,
47 const uint8* src_u_a, int stride_u_a,
48 const uint8* src_v_a, int stride_v_a,
[all …]
/external/libvpx/libvpx/third_party/libyuv/source/
Drow.h25 void FastConvertYUVToARGBRow_NEON(const uint8* y_buf,
26 const uint8* u_buf,
27 const uint8* v_buf,
28 uint8* rgb_buf,
31 void FastConvertYUVToBGRARow_NEON(const uint8* y_buf,
32 const uint8* u_buf,
33 const uint8* v_buf,
34 uint8* rgb_buf,
37 void FastConvertYUVToABGRRow_NEON(const uint8* y_buf,
38 const uint8* u_buf,
[all …]
/external/libyuv/files/source/
Drow_neon.cc78 void I422ToARGBRow_NEON(const uint8* y_buf, in I422ToARGBRow_NEON()
79 const uint8* u_buf, in I422ToARGBRow_NEON()
80 const uint8* v_buf, in I422ToARGBRow_NEON()
81 uint8* rgb_buf, in I422ToARGBRow_NEON()
111 void I422ToBGRARow_NEON(const uint8* y_buf, in I422ToBGRARow_NEON()
112 const uint8* u_buf, in I422ToBGRARow_NEON()
113 const uint8* v_buf, in I422ToBGRARow_NEON()
114 uint8* rgb_buf, in I422ToBGRARow_NEON()
145 void I422ToABGRRow_NEON(const uint8* y_buf, in I422ToABGRRow_NEON()
146 const uint8* u_buf, in I422ToABGRRow_NEON()
[all …]
Drow_posix.cc121 void I400ToARGBRow_SSE2(const uint8* src_y, uint8* dst_argb, int pix) { in I400ToARGBRow_SSE2()
151 void ABGRToARGBRow_SSSE3(const uint8* src_abgr, uint8* dst_argb, int pix) { in ABGRToARGBRow_SSSE3()
175 void BGRAToARGBRow_SSSE3(const uint8* src_bgra, uint8* dst_argb, int pix) { in BGRAToARGBRow_SSSE3()
198 void RGBAToARGBRow_SSSE3(const uint8* src_rgba, uint8* dst_argb, int pix) { in RGBAToARGBRow_SSSE3()
222 void ARGBToRGBARow_SSSE3(const uint8* src_argb, uint8* dst_rgba, int pix) { in ARGBToRGBARow_SSSE3()
246 void RGB24ToARGBRow_SSSE3(const uint8* src_rgb24, uint8* dst_argb, int pix) { in RGB24ToARGBRow_SSSE3()
287 void RAWToARGBRow_SSSE3(const uint8* src_raw, uint8* dst_argb, int pix) { in RAWToARGBRow_SSSE3()
328 void RGB565ToARGBRow_SSE2(const uint8* src, uint8* dst, int pix) { in RGB565ToARGBRow_SSE2()
378 void ARGB1555ToARGBRow_SSE2(const uint8* src, uint8* dst, int pix) { in ARGB1555ToARGBRow_SSE2()
431 void ARGB4444ToARGBRow_SSE2(const uint8* src, uint8* dst, int pix) { in ARGB4444ToARGBRow_SSE2()
[all …]
Drow_common.cc22 void BGRAToARGBRow_C(const uint8* src_bgra, uint8* dst_argb, int width) { in BGRAToARGBRow_C()
25 uint8 a = src_bgra[0]; in BGRAToARGBRow_C()
26 uint8 r = src_bgra[1]; in BGRAToARGBRow_C()
27 uint8 g = src_bgra[2]; in BGRAToARGBRow_C()
28 uint8 b = src_bgra[3]; in BGRAToARGBRow_C()
38 void ABGRToARGBRow_C(const uint8* src_abgr, uint8* dst_argb, int width) { in ABGRToARGBRow_C()
41 uint8 r = src_abgr[0]; in ABGRToARGBRow_C()
42 uint8 g = src_abgr[1]; in ABGRToARGBRow_C()
43 uint8 b = src_abgr[2]; in ABGRToARGBRow_C()
44 uint8 a = src_abgr[3]; in ABGRToARGBRow_C()
[all …]
Dconvert_from.cc28 int I420ToI422(const uint8* src_y, int src_stride_y, in I420ToI422()
29 const uint8* src_u, int src_stride_u, in I420ToI422()
30 const uint8* src_v, int src_stride_v, in I420ToI422()
31 uint8* dst_y, int dst_stride_y, in I420ToI422()
32 uint8* dst_u, int dst_stride_u, in I420ToI422()
33 uint8* dst_v, int dst_stride_v, in I420ToI422()
51 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C; in I420ToI422()
105 const uint8* src_ptr, uint8* dst_ptr);
108 int I420ToI444(const uint8* src_y, int src_stride_y, in I420ToI444()
109 const uint8* src_u, int src_stride_u, in I420ToI444()
[all …]
Dplanar_functions.cc28 void CopyPlane(const uint8* src_y, int src_stride_y, in CopyPlane()
29 uint8* dst_y, int dst_stride_y, in CopyPlane()
31 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C; in CopyPlane()
60 int I420ToI400(const uint8* src_y, int src_stride_y, in I420ToI400() argument
61 uint8*, int, // src_u in I420ToI400()
62 uint8*, int, // src_v in I420ToI400()
63 uint8* dst_y, int dst_stride_y, in I420ToI400()
79 void MirrorPlane(const uint8* src_y, int src_stride_y, in MirrorPlane()
80 uint8* dst_y, int dst_stride_y, in MirrorPlane()
82 void (*MirrorRow)(const uint8* src, uint8* dst, int width) = MirrorRow_C; in MirrorPlane()
[all …]
Dformat_conversion.cc30 static void ARGBToBayerRow_SSSE3(const uint8* src_argb, in ARGBToBayerRow_SSSE3()
31 uint8* dst_bayer, uint32 selector, int pix) { in ARGBToBayerRow_SSSE3()
55 static void ARGBToBayerRow_SSSE3(const uint8* src_argb, uint8* dst_bayer,
82 static void ARGBToBayerRow_C(const uint8* src_argb, in ARGBToBayerRow_C()
83 uint8* dst_bayer, uint32 selector, int pix) { in ARGBToBayerRow_C()
138 int ARGBToBayer(const uint8* src_argb, int src_stride_argb, in ARGBToBayer()
139 uint8* dst_bayer, int dst_stride_bayer, in ARGBToBayer()
147 void (*ARGBToBayerRow)(const uint8* src_argb, uint8* dst_bayer, in ARGBToBayer()
175 static void BayerRowBG(const uint8* src_bayer0, int src_stride_bayer, in BayerRowBG()
176 uint8* dst_argb, int pix) { in BayerRowBG()
[all …]
Dscale_neon.cc29 void ScaleRowDown2_NEON(const uint8* src_ptr, ptrdiff_t /* src_stride */, in ScaleRowDown2_NEON()
30 uint8* dst, int dst_width) { in ScaleRowDown2_NEON()
46 void ScaleRowDown2Int_NEON(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown2Int_NEON()
47 uint8* dst, int dst_width) { in ScaleRowDown2Int_NEON()
72 void ScaleRowDown4_NEON(const uint8* src_ptr, ptrdiff_t /* src_stride */, in ScaleRowDown4_NEON()
73 uint8* dst_ptr, int dst_width) { in ScaleRowDown4_NEON()
90 void ScaleRowDown4Int_NEON(const uint8* src_ptr, ptrdiff_t src_stride, in ScaleRowDown4Int_NEON()
91 uint8* dst_ptr, int dst_width) { in ScaleRowDown4Int_NEON()
122 void ScaleRowDown34_NEON(const uint8* src_ptr, in ScaleRowDown34_NEON()
124 uint8* dst_ptr, int dst_width) { in ScaleRowDown34_NEON()
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/en-GB/
Den-GB_kh0_kpdf_phs.utf2539 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2541 phase = 71 , uint8 ; !specification for phase sub table
2613 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2615 phase = 71 , uint8 ; !specification for phase sub table
2687 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2689 phase = 0 , uint8 ; !specification for phase sub table
2690 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2692 phase = 0 , uint8 ; !specification for phase sub table
2693 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2695 phase = 0 , uint8 ; !specification for phase sub table
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/de-DE/
Dde-DE_gl0_kpdf_phs.utf2539 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2541 phase = 61 , uint8 ; !specification for phase sub table
2603 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2605 phase = 0 , uint8 ; !specification for phase sub table
2606 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2608 phase = 71 , uint8 ; !specification for phase sub table
2680 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2682 phase = 0 , uint8 ; !specification for phase sub table
2683 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2685 phase = 71 , uint8 ; !specification for phase sub table
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/it-IT/
Dit-IT_cm0_kpdf_phs.utf2539 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2541 phase = 47 , uint8 ; !specification for phase sub table
2589 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2591 phase = 0 , uint8 ; !specification for phase sub table
2592 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2594 phase = 71 , uint8 ; !specification for phase sub table
2666 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2668 phase = 51 , uint8 ; !specification for phase sub table
2720 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2722 phase = 47 , uint8 ; !specification for phase sub table
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/fr-FR/
Dfr-FR_nk0_kpdf_phs.utf2539 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2541 phase = 0 , uint8 ; !specification for phase sub table
2542 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2544 phase = 0 , uint8 ; !specification for phase sub table
2545 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2547 phase = 71 , uint8 ; !specification for phase sub table
2619 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2621 phase = 71 , uint8 ; !specification for phase sub table
2693 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2695 phase = 0 , uint8 ; !specification for phase sub table
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/es-ES/
Des-ES_zl0_kpdf_phs.utf2539 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2541 phase = 42 , uint8 ; !specification for phase sub table
2584 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2586 phase = 0 , uint8 ; !specification for phase sub table
2587 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2589 phase = 71 , uint8 ; !specification for phase sub table
2661 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2663 phase = 0 , uint8 ; !specification for phase sub table
2664 n_comps = 1 , uint8 ; !specification for phase sub table number of components
2666 phase = 71 , uint8 ; !specification for phase sub table
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/siggen/en-US/
Den-US_lh0_kpdf_phs.utf3239 n_comps = 1 , uint8 ; !specification for phase sub table number of components
3241 phase = 0 , uint8 ; !specification for phase sub table
3242 n_comps = 1 , uint8 ; !specification for phase sub table number of components
3244 phase = 71 , uint8 ; !specification for phase sub table
3316 n_comps = 1 , uint8 ; !specification for phase sub table number of components
3318 phase = 61 , uint8 ; !specification for phase sub table
3380 n_comps = 1 , uint8 ; !specification for phase sub table number of components
3382 phase = 0 , uint8 ; !specification for phase sub table
3383 n_comps = 1 , uint8 ; !specification for phase sub table number of components
3385 phase = 0 , uint8 ; !specification for phase sub table
[all …]
/external/chromium/crypto/
Drsa_private_key.h42 static const uint8 kRsaAlgorithmIdentifier[];
45 static const uint8 kBitStringTag = 0x03;
46 static const uint8 kIntegerTag = 0x02;
47 static const uint8 kNullTag = 0x05;
48 static const uint8 kOctetStringTag = 0x04;
49 static const uint8 kSequenceTag = 0x30;
61 bool Export(std::vector<uint8>* output);
65 bool ExportPublicKeyInfo(std::vector<uint8>* output);
69 bool ExportPublicKey(std::vector<uint8>* output);
75 bool Import(const std::vector<uint8>& input);
[all …]
Drsa_private_key.cc47 const uint8 PrivateKeyInfoCodec::kRsaAlgorithmIdentifier[] = {
57 bool PrivateKeyInfoCodec::Export(std::vector<uint8>* output) { in Export()
58 std::list<uint8> content; in Export()
61 uint8 version = 0; in Export()
84 for (std::list<uint8>::iterator i = content.begin(); i != content.end(); ++i) in Export()
90 bool PrivateKeyInfoCodec::ExportPublicKeyInfo(std::vector<uint8>* output) { in ExportPublicKeyInfo()
92 std::vector<uint8> bit_string; in ExportPublicKeyInfo()
97 std::list<uint8> content; in ExportPublicKeyInfo()
110 for (std::list<uint8>::iterator i = content.begin(); i != content.end(); ++i) in ExportPublicKeyInfo()
116 bool PrivateKeyInfoCodec::ExportPublicKey(std::vector<uint8>* output) { in ExportPublicKey()
[all …]
/external/protobuf/src/google/protobuf/io/
Dcoded_stream.h151 explicit CodedInputStream(const uint8* buffer, int size);
204 static const uint8* ReadLittleEndian32FromArray(const uint8* buffer,
207 static const uint8* ReadLittleEndian64FromArray(const uint8* buffer,
241 static const uint8* ExpectTagFromArray(
242 const uint8* buffer,
437 const uint8* buffer_;
438 const uint8* buffer_end_; // pointer to the end of the buffer.
609 inline uint8* GetDirectBufferForNBytesAndAdvance(int size);
618 static uint8* WriteRawToArray(const void* buffer, int size, uint8* target);
623 static uint8* WriteStringToArray(const string& str, uint8* target);
[all …]

12345678910>>...14