Searched refs:PutLong (Results 1 – 8 of 8) sorted by relevance
/external/flatbuffers/tests/MyGame/Example/ |
D | ArrayStruct.cs | 29 public void MutateF(int j, long f) { __p.bb.PutLong(__p.bb_pos + 144 + j * 8, f); } in MutateF() 34 builder.PutLong(F[_idx0-1]); in CreateArrayStruct() 41 builder.PutLong(d_D[_idx0-1,_idx1-1]); in CreateArrayStruct()
|
D | NestedStruct.cs | 26 public void MutateD(int j, long d) { __p.bb.PutLong(__p.bb_pos + 16 + j * 8, d); } in MutateD() 31 builder.PutLong(D[_idx0-1]); in CreateNestedStruct()
|
D | Stat.cs | 30 …public bool MutateVal(long val) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutLong(o + __p.bb… in MutateVal()
|
D | TypeAliases.cs | 35 …public bool MutateI64(long i64) { int o = __p.__offset(16); if (o != 0) { __p.bb.PutLong(o + __p.b… in MutateI64()
|
D | Monster.cs | 77 …(long testhashs64_fnv1) { int o = __p.__offset(40); if (o != 0) { __p.bb.PutLong(o + __p.bb_pos, t… in MutateTesthashs64Fnv1() 85 …long testhashs64_fnv1a) { int o = __p.__offset(48); if (o != 0) { __p.bb.PutLong(o + __p.bb_pos, t… in MutateTesthashs64Fnv1a() 126 …, long vector_of_longs) { int o = __p.__offset(68); if (o != 0) { __p.bb.PutLong(__p.__vector(o) +… in MutateVectorOfLongs()
|
/external/flatbuffers/tests/FlatBuffers.Test/ |
D | ByteBufferTests.cs | 131 uut.PutLong(0, 0x010203040A0B0C0D); in ByteBuffer_PutLongPopulatesBufferCorrectly() 149 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutLong(2, 0x010203040A0B0C0D)); in ByteBuffer_PutLongCannotPutAtOffsetPastLength() 156 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutLong(0, 0x010203040A0B0C0D)); in ByteBuffer_PutLongChecksLength() 163 Assert.Throws<ArgumentOutOfRangeException>(() => uut.PutLong(2, 0x010203040A0B0C0D)); in ByteBuffer_PutLongChecksLengthAndOffset()
|
/external/flatbuffers/net/FlatBuffers/ |
D | FlatBufferBuilder.cs | 182 public void PutLong(long x) in PutLong() method in FlatBuffers.FlatBufferBuilder 184 _bb.PutLong(_space -= sizeof(long), x); in PutLong() 275 public void AddLong(long x) { Prep(sizeof(long), 0); PutLong(x); } in AddLong()
|
D | ByteBuffer.cs | 488 public unsafe void PutLong(int offset, long value) in PutLong() method in FlatBuffers.ByteBuffer 574 public void PutLong(int offset, long value) in PutLong() method in FlatBuffers.ByteBuffer
|