Home
last modified time | relevance | path

Searched refs:PutLong (Results 1 – 6 of 6) sorted by relevance

/external/flatbuffers/tests/FlatBuffers.Test/
DByteBufferTests.cs138 uut.PutLong(0, 0x010203040A0B0C0D); in ByteBuffer_PutLongPopulatesBufferCorrectly()
157 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutLong(2, 0x010203040A0B0C0D)); in ByteBuffer_PutLongCannotPutAtOffsetPastLength()
165 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutLong(0, 0x010203040A0B0C0D)); in ByteBuffer_PutLongChecksLength()
173 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutLong(2, 0x010203040A0B0C0D)); in ByteBuffer_PutLongChecksLengthAndOffset()
/external/flatbuffers/net/FlatBuffers/
DFlatBufferBuilder.cs178 public void PutLong(long x) in PutLong() method in FlatBuffers.FlatBufferBuilder
180 _bb.PutLong(_space -= sizeof(long), x); in PutLong()
245 public void AddLong(long x) { Prep(sizeof(long), 0); PutLong(x); } in AddLong()
DByteBuffer.cs208 public unsafe void PutLong(int offset, long value) in PutLong() method in FlatBuffers.ByteBuffer
282 public void PutLong(int offset, long value) in PutLong() method in FlatBuffers.ByteBuffer
/external/flatbuffers/tests/MyGame/Example/
DStat.cs23 …public bool MutateVal(long val) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutLong(o + __p.bb… in MutateVal()
DMonster.cs61 …(long testhashs64_fnv1) { int o = __p.__offset(40); if (o != 0) { __p.bb.PutLong(o + __p.bb_pos, t… in MutateTesthashs64Fnv1()
69 …long testhashs64_fnv1a) { int o = __p.__offset(48); if (o != 0) { __p.bb.PutLong(o + __p.bb_pos, t… in MutateTesthashs64Fnv1a()
95 …, long vector_of_longs) { int o = __p.__offset(68); if (o != 0) { __p.bb.PutLong(__p.__vector(o) +… in MutateVectorOfLongs()
DTypeAliases.cs33 …public bool MutateI64(long i64) { int o = __p.__offset(16); if (o != 0) { __p.bb.PutLong(o + __p.b… in MutateI64()