HomeSort by relevance Sort by last modified time
    Searched refs:uint8 (Results 101 - 125 of 1507) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libyuv/files/source/
rotate_argb.cc 28 void ScaleARGBRowDownEven_SSE2(const uint8* src_ptr, int src_stride,
30 uint8* dst_ptr, int dst_width);
32 void ScaleARGBRowDownEven_C(const uint8* src_ptr, int,
34 uint8* dst_ptr, int dst_width);
36 static void ARGBTranspose(const uint8* src, int src_stride,
37 uint8* dst, int dst_stride,
39 void (*ScaleARGBRowDownEven)(const uint8* src_ptr, int src_stride,
40 int src_step, uint8* dst_ptr, int dst_width) = ScaleARGBRowDownEven_C;
57 void ARGBRotate90(const uint8* src, int src_stride,
58 uint8* dst, int dst_stride
    [all...]
row_common.cc 22 void BGRAToARGBRow_C(const uint8* src_bgra, uint8* dst_argb, int width) {
25 uint8 a = src_bgra[0];
26 uint8 r = src_bgra[1];
27 uint8 g = src_bgra[2];
28 uint8 b = src_bgra[3];
38 void ABGRToARGBRow_C(const uint8* src_abgr, uint8* dst_argb, int width) {
41 uint8 r = src_abgr[0];
42 uint8 g = src_abgr[1]
    [all...]
planar_functions.cc 28 void CopyPlane(const uint8* src_y, int src_stride_y,
29 uint8* dst_y, int dst_stride_y,
31 void (*CopyRow)(const uint8* src, uint8* dst, int width) = CopyRow_C;
60 int I420ToI400(const uint8* src_y, int src_stride_y,
61 uint8*, int, // src_u
62 uint8*, int, // src_v
63 uint8* dst_y, int dst_stride_y,
79 void MirrorPlane(const uint8* src_y, int src_stride_y,
80 uint8* dst_y, int dst_stride_y
    [all...]
  /external/chromium_org/media/base/
video_util_unittest.cc 34 y_plane_.reset(new uint8[y_stride * height]);
35 u_plane_.reset(new uint8[u_stride * height / 2]);
36 v_plane_.reset(new uint8[v_stride * height / 2]);
55 scoped_ptr<uint8[]> y_plane_;
56 scoped_ptr<uint8[]> u_plane_;
57 scoped_ptr<uint8[]> v_plane_;
89 uint8 src6x4[] = {
97 uint8* target6x4_0_n_n = src6x4;
99 uint8 target6x4_0_n_y[] = {
106 uint8 target6x4_0_y_n[] =
    [all...]
yuv_convert_unittest.cc 39 // Helper for reading test data into a scoped_ptr<uint8[]>.
42 scoped_ptr<uint8[]>* data) {
43 data->reset(new uint8[expected_size]);
63 static void ReadYV12Data(scoped_ptr<uint8[]>* data) {
67 static void ReadYV16Data(scoped_ptr<uint8[]>* data) {
71 static void ReadRGB24Data(scoped_ptr<uint8[]>* data) {
75 static void ReadYUY2Data(scoped_ptr<uint8[]>* data) {
92 scoped_ptr<uint8[]> yuv_bytes;
93 scoped_ptr<uint8[]> rgb_bytes(new uint8[kRGBSize])
    [all...]
djb2.cc 8 const uint8* src = reinterpret_cast<const uint8*>(buf);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/
mp4dec_api.h 64 uint8 *data; /* pointer to output YUV buffer */
80 int (*readBitstreamData)(uint8 *buf, int nbytes_required, void *appData);
83 uint8 *outputFrame;
91 uint8 *volbuf[2]; /* maximum of 2 layers for now */
122 uint8 *yChan; /* The Y component frame the user can copy a new reference to */
123 uint8 *uChan; /* The U component frame the user can copy a new reference to */
124 uint8 *vChan; /* The V component frame the user can copy a new reference to */
125 uint8 *currentVop; /* The Vop for video the user can copy a new reference to */
150 OSCL_IMPORT_REF Bool PVInitVideoDecoder(VideoDecControls *decCtrl, uint8 *volbuf[], int32 *volbuf_size, int nLayers, int width, int height, MP4DecodingMode mode);
154 OSCL_IMPORT_REF void PVSetReferenceYUV(VideoDecControls *decCtrl, uint8 *refYUV)
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmendian.h 84 (sizeof(*(ptr)) == sizeof(uint8) ? *(const uint8 *)(ptr) : \
85 sizeof(*(ptr)) == sizeof(uint16) ? _LTOH16_UA((const uint8 *)(ptr)) : \
86 sizeof(*(ptr)) == sizeof(uint32) ? _LTOH32_UA((const uint8 *)(ptr)) : \
87 *(uint8 *)0)
90 (sizeof(*(ptr)) == sizeof(uint8) ? *(const uint8 *)(ptr) : \
91 sizeof(*(ptr)) == sizeof(uint16) ? _NTOH16_UA((const uint8 *)(ptr)) : \
92 sizeof(*(ptr)) == sizeof(uint32) ? _NTOH32_UA((const uint8 *)(ptr)) : \
93 *(uint8 *)0
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
fakevideorenderer.h 84 static bool CheckFrameColorYuv(uint8 y_min, uint8 y_max,
85 uint8 u_min, uint8 u_max,
86 uint8 v_min, uint8 v_max,
94 const uint8* y_plane = frame->GetYPlane();
95 const uint8* y_pos = y_plane;
99 uint8 y_value = *(y_pos + j);
109 const uint8* u_plane = frame->GetUPlane()
    [all...]
  /external/chromium/crypto/
rsa_private_key.cc 47 const uint8 PrivateKeyInfoCodec::kRsaAlgorithmIdentifier[] = {
57 bool PrivateKeyInfoCodec::Export(std::vector<uint8>* output) {
58 std::list<uint8> content;
61 uint8 version = 0;
84 for (std::list<uint8>::iterator i = content.begin(); i != content.end(); ++i)
90 bool PrivateKeyInfoCodec::ExportPublicKeyInfo(std::vector<uint8>* output) {
92 std::vector<uint8> bit_string;
97 std::list<uint8> content;
110 for (std::list<uint8>::iterator i = content.begin(); i != content.end(); ++i)
116 bool PrivateKeyInfoCodec::ExportPublicKey(std::vector<uint8>* output)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
byteorder.h 49 inline void Set8(void* memory, size_t offset, uint8 v) {
50 static_cast<uint8*>(memory)[offset] = v;
52 inline uint8 Get8(const void* memory, size_t offset) {
53 return static_cast<const uint8*>(memory)[offset];
57 Set8(memory, 0, static_cast<uint8>(v >> 8));
58 Set8(memory, 1, static_cast<uint8>(v >> 0));
61 Set8(memory, 0, static_cast<uint8>(v >> 24));
62 Set8(memory, 1, static_cast<uint8>(v >> 16));
63 Set8(memory, 2, static_cast<uint8>(v >> 8));
64 Set8(memory, 3, static_cast<uint8>(v >> 0))
    [all...]
  /external/chromium_org/content/common/gpu/media/
h264_bit_reader.h 31 bool Initialize(const uint8* data, off_t size);
52 const uint8* data_;
  /external/chromium_org/courgette/
disassembler.h 40 const uint8* start() const { return start_; }
41 const uint8* end() const { return end_; }
45 const uint8* OffsetToPointer(size_t offset) const;
54 uint16 ReadU16(const uint8* address, size_t offset) {
58 uint32 ReadU32(const uint8* address, size_t offset) {
62 uint64 ReadU64(const uint8* address, size_t offset) {
87 const uint8* start_; // In current memory, base for 'file offsets'.
88 const uint8* end_; // In current memory.
  /external/chromium_org/media/base/simd/
convert_rgb_to_yuv_ssse3.cc 12 void ConvertRGB32ToYUV_SSSE3(const uint8* rgbframe,
13 uint8* yplane,
14 uint8* uplane,
15 uint8* vplane,
38 void ConvertRGB24ToYUV_SSSE3(const uint8* rgbframe,
39 uint8* yplane,
40 uint8* uplane,
41 uint8* vplane,
  /external/chromium_org/media/mp4/
avc.h 20 static bool ConvertFrameToAnnexB(int length_size, std::vector<uint8>* buffer);
24 std::vector<uint8>* buffer);
  /external/chromium_org/net/quic/crypto/
strike_register.h 95 const uint8 orbit[8],
116 bool Insert(const uint8 nonce[32], const uint32 current_time);
120 const uint8* orbit() const;
129 static uint32 TimeFromBytes(const uint8 d[4]);
137 uint32 BestMatch(const uint8 v[24]) const;
143 uint8* external_node(unsigned i);
174 uint8 orbit_[8];
184 scoped_ptr<uint8[]> external_nodes_;
  /external/chromium_org/third_party/libjingle/source/talk/base/
byteorder.h 47 inline void Set8(void* memory, size_t offset, uint8 v) {
48 static_cast<uint8*>(memory)[offset] = v;
51 inline uint8 Get8(const void* memory, size_t offset) {
52 return static_cast<const uint8*>(memory)[offset];
56 Set8(memory, 0, static_cast<uint8>(v >> 8));
57 Set8(memory, 1, static_cast<uint8>(v >> 0));
61 Set8(memory, 0, static_cast<uint8>(v >> 24));
62 Set8(memory, 1, static_cast<uint8>(v >> 16));
63 Set8(memory, 2, static_cast<uint8>(v >> 8));
64 Set8(memory, 3, static_cast<uint8>(v >> 0))
    [all...]
md5.h 36 void MD5Update(MD5Context* context, const uint8* data, size_t len);
37 void MD5Final(MD5Context* context, uint8 digest[16]);
  /external/openfst/src/extensions/compact/
compact8_acceptor-fst.cc 27 CompactFst<StdArc, AcceptorCompactor<StdArc>, uint8> >
30 CompactFst<LogArc, AcceptorCompactor<LogArc>, uint8> >
compact8_string-fst.cc 27 CompactFst<StdArc, StringCompactor<StdArc>, uint8> >
30 CompactFst<LogArc, StringCompactor<LogArc>, uint8> >
compact8_unweighted-fst.cc 27 CompactFst<StdArc, UnweightedCompactor<StdArc>, uint8> >
30 CompactFst<LogArc, UnweightedCompactor<LogArc>, uint8> >
compact8_unweighted_acceptor-fst.cc 27 CompactFst<StdArc, UnweightedAcceptorCompactor<StdArc>, uint8> >
30 CompactFst<LogArc, UnweightedAcceptorCompactor<LogArc>, uint8> >
compact8_weighted_string-fst.cc 27 CompactFst<StdArc, WeightedStringCompactor<StdArc>, uint8> >
30 CompactFst<LogArc, WeightedStringCompactor<LogArc>, uint8> >
  /external/chromium/chrome/browser/chromeos/login/
mock_owner_key_utils.h 26 std::vector<uint8>* output));
28 const std::vector<uint8> signature,
29 const std::vector<uint8> public_key));
31 std::vector<uint8>* OUT_signature,
34 crypto::RSAPrivateKey*(const std::vector<uint8>& key));
owner_key_utils.h 50 std::vector<uint8>* output) = 0;
56 const std::vector<uint8> signature,
57 const std::vector<uint8> public_key) = 0;
62 std::vector<uint8>* OUT_signature,
69 const std::vector<uint8>& key) = 0;

Completed in 500 milliseconds

1 2 3 45 6 7 8 91011>>