Searched refs:PutByte (Results 1 - 13 of 13) sorted by relevance

/external/opencv/
H A DWLNonFileByteStream.cpp71 void WLNonFileByteStream::PutByte( int val ) function in class:WLNonFileByteStream
113 PutByte(val);
114 PutByte(val >> 8);
133 PutByte(val);
134 PutByte(val >> 8);
135 PutByte(val >> 16);
136 PutByte(val >> 24);
H A DWLNonFileByteStream.h33 void PutByte( int val );
/external/opencv/otherlibs/highgui/
H A Dbitstrm.cpp823 void WLByteStream::PutByte( int val ) function in class:WLByteStream
871 PutByte(val);
872 PutByte(val >> 8);
893 PutByte(val);
894 PutByte(val >> 8);
895 PutByte(val >> 16);
896 PutByte(val >> 24);
922 PutByte(val >> 8);
923 PutByte(val);
944 PutByte(va
[all...]
H A Dgrfmt_jpeg.cpp1379 m_low_strm.PutByte( val );
1382 m_low_strm.PutByte( 0 );
1669 lowstrm.PutByte( 0*16 + i ); // 8-bit table
1682 lowstrm.PutByte( qval );
1697 lowstrm.PutByte( is_ac_tab*16 + idx ); // put DC/AC flag and table index
1708 lowstrm.PutByte( 8 ); // sample precision
1711 lowstrm.PutByte( channels ); // number of components
1715 lowstrm.PutByte( i + 1 ); // (i+1)-th component id (Y,U or V)
1717 lowstrm.PutByte(x_scale*16 + y_scale); // chroma scale factors
1719 lowstrm.PutByte(
[all...]
H A Dbitstrm.h196 void PutByte( int val );
/external/lzma/Java/SevenZip/Compression/LZ/
H A DOutWindow.java71 public void PutByte(byte b) throws IOException method in class:OutWindow
/external/flatbuffers/net/FlatBuffers/
H A DFlatBufferBuilder.cs95 _bb.PutByte(_space -= size, 0, size);
145 _bb.PutByte(_space -= sizeof(byte), (byte)(x ? 1 : 0));
153 public void PutByte(byte x) method in class:FlatBuffers.FlatBufferBuilder
155 _bb.PutByte(_space -= sizeof(byte), x);
215 public void AddByte(byte x) { Prep(sizeof(byte), 0); PutByte(x); }
H A DByteBuffer.cs155 public void PutByte(int offset, byte value) method in class:FlatBuffers.ByteBuffer
161 public void PutByte(int offset, byte value, int count) method in class:FlatBuffers.ByteBuffer
171 PutByte(offset, value);
/external/lzma/CS/7zip/Compress/LZ/
H A DLzOutWindow.cs95 public void PutByte(byte b) method in class:SevenZip.Compression.LZ.OutWindow
/external/flatbuffers/tests/FlatBuffers.Test/
H A DByteBufferTests.cs38 uut.PutByte(0, (byte)99);
49 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutByte(1, 99));
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaDecoder.cs247 m_OutWindow.PutByte(b);
265 m_OutWindow.PutByte(b);
279 m_OutWindow.PutByte(m_OutWindow.GetByte(rep0));
/external/lzma/CPP/7zip/Bundles/LzmaSpec/
H A DLzmaSpec.cpp87 void PutByte(Byte b) function in class:COutWindow
107 PutByte(GetByte(dist));
398 OutWindow.PutByte((Byte)(symbol - 0x100));
508 OutWindow.PutByte(OutWindow.GetByte(rep0 + 1));
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DDecoder.java223 m_OutWindow.PutByte(prevByte);

Completed in 292 milliseconds