Home
last modified time | relevance | path

Searched refs:PutByte (Results 1 – 9 of 9) sorted by relevance

/external/flatbuffers/net/FlatBuffers/
DFlatBufferBuilder.cs95 _bb.PutByte(_space -= size, 0, size); in Pad()
145 _bb.PutByte(_space -= sizeof(byte), (byte)(x ? 1 : 0)); in PutBool()
153 public void PutByte(byte x) in PutByte() method in FlatBuffers.FlatBufferBuilder
155 _bb.PutByte(_space -= sizeof(byte), x); in PutByte()
215 public void AddByte(byte x) { Prep(sizeof(byte), 0); PutByte(x); } in AddByte()
DByteBuffer.cs155 public void PutByte(int offset, byte value) in PutByte() method in FlatBuffers.ByteBuffer
161 public void PutByte(int offset, byte value, int count) in PutByte() method in FlatBuffers.ByteBuffer
171 PutByte(offset, value); in Put()
/external/lzma/CPP/7zip/Bundles/LzmaSpec/
DLzmaSpec.cpp87 void PutByte(Byte b) in PutByte() function in COutWindow
107 PutByte(GetByte(dist)); in CopyMatch()
398 OutWindow.PutByte((Byte)(symbol - 0x100)); in DecodeLiteral()
508 OutWindow.PutByte(OutWindow.GetByte(rep0 + 1)); in Decode()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaDecoder.cs247 m_OutWindow.PutByte(b); in Code()
265 m_OutWindow.PutByte(b); in Code()
279 m_OutWindow.PutByte(m_OutWindow.GetByte(rep0)); in Code()
/external/flatbuffers/tests/FlatBuffers.Test/
DByteBufferTests.cs38 uut.PutByte(0, (byte)99); in ByteBuffer_PutBytePopulatesBufferAtZeroOffset()
49 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutByte(1, 99)); in ByteBuffer_PutByteCannotPutAtOffsetPastLength()
/external/lzma/Java/SevenZip/Compression/LZ/
DOutWindow.java71 public void PutByte(byte b) throws IOException in PutByte() method in OutWindow
/external/lzma/CS/7zip/Compress/LZ/
DLzOutWindow.cs95 public void PutByte(byte b) in PutByte() method in SevenZip.Compression.LZ.OutWindow
/external/lzma/Java/SevenZip/Compression/LZMA/
DDecoder.java223 m_OutWindow.PutByte(prevByte); in Code()
/external/lzma/DOC/
Dlzma-specification.txt266 void PutByte(Byte b)
286 PutByte(GetByte(dist));
631 OutWindow.PutByte((Byte)(symbol - 0x100));
1116 OutWindow.PutByte(OutWindow.GetByte(rep0 + 1));