OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PutLong
(Results
1 - 6
of
6
) sorted by null
/external/flatbuffers/tests/FlatBuffers.Test/
ByteBufferTests.cs
138
uut.
PutLong
(0, 0x010203040A0B0C0D);
157
Assert.Throws<ArgumentOutOfRangeException>(() => uut.
PutLong
(2, 0x010203040A0B0C0D));
165
Assert.Throws<ArgumentOutOfRangeException>(() => uut.
PutLong
(0, 0x010203040A0B0C0D));
173
Assert.Throws<ArgumentOutOfRangeException>(() => uut.
PutLong
(2, 0x010203040A0B0C0D));
/external/flatbuffers/net/FlatBuffers/
FlatBufferBuilder.cs
178
public void
PutLong
(long x)
180
_bb.
PutLong
(_space -= sizeof(long), x);
245
public void AddLong(long x) { Prep(sizeof(long), 0);
PutLong
(x); }
ByteBuffer.cs
208
public unsafe void
PutLong
(int offset, long value)
282
public void
PutLong
(int offset, long value)
/external/flatbuffers/tests/MyGame/Example/
Stat.cs
23
public bool MutateVal(long val) { int o = __p.__offset(6); if (o != 0) { __p.bb.
PutLong
(o + __p.bb_pos, val); return true; } else { return false; } }
Monster.cs
61
public bool MutateTesthashs64Fnv1(long testhashs64_fnv1) { int o = __p.__offset(40); if (o != 0) { __p.bb.
PutLong
(o + __p.bb_pos, testhashs64_fnv1); return true; } else { return false; } }
69
public bool MutateTesthashs64Fnv1a(long testhashs64_fnv1a) { int o = __p.__offset(48); if (o != 0) { __p.bb.
PutLong
(o + __p.bb_pos, testhashs64_fnv1a); return true; } else { return false; } }
95
public bool MutateVectorOfLongs(int j, long vector_of_longs) { int o = __p.__offset(68); if (o != 0) { __p.bb.
PutLong
(__p.__vector(o) + j * 8, vector_of_longs); return true; } else { return false; } }
TypeAliases.cs
33
public bool MutateI64(long i64) { int o = __p.__offset(16); if (o != 0) { __p.bb.
PutLong
(o + __p.bb_pos, i64); return true; } else { return false; } }
Completed in 1165 milliseconds