Searched refs:PutByte (Results 1 – 9 of 9) sorted by relevance
/external/flatbuffers/net/FlatBuffers/ |
D | FlatBufferBuilder.cs | 95 _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()
|
D | ByteBuffer.cs | 155 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/ |
D | LzmaSpec.cpp | 87 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/ |
D | LzmaDecoder.cs | 247 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/ |
D | ByteBufferTests.cs | 38 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/ |
D | OutWindow.java | 71 public void PutByte(byte b) throws IOException in PutByte() method in OutWindow
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | LzOutWindow.cs | 95 public void PutByte(byte b) in PutByte() method in SevenZip.Compression.LZ.OutWindow
|
/external/lzma/Java/SevenZip/Compression/LZMA/ |
D | Decoder.java | 223 m_OutWindow.PutByte(prevByte); in Code()
|
/external/lzma/DOC/ |
D | lzma-specification.txt | 266 void PutByte(Byte b) 286 PutByte(GetByte(dist)); 631 OutWindow.PutByte((Byte)(symbol - 0x100)); 1116 OutWindow.PutByte(OutWindow.GetByte(rep0 + 1));
|