Home
last modified time | relevance | path

Searched refs:PutUint (Results 1 – 5 of 5) sorted by relevance

/external/flatbuffers/tests/MyGame/Example/
DAbility.cs19 public void MutateId(uint id) { __p.bb.PutUint(__p.bb_pos + 0, id); } in MutateId()
21 public void MutateDistance(uint distance) { __p.bb.PutUint(__p.bb_pos + 4, distance); } in MutateDistance()
25 builder.PutUint(Distance); in CreateAbility()
26 builder.PutUint(Id); in CreateAbility()
DMonster.cs59 …(uint testhashu32_fnv1) { int o = __p.__offset(38); if (o != 0) { __p.bb.PutUint(o + __p.bb_pos, t… in MutateTesthashu32Fnv1()
67 …uint testhashu32_fnv1a) { int o = __p.__offset(46); if (o != 0) { __p.bb.PutUint(o + __p.bb_pos, t… in MutateTesthashu32Fnv1a()
DTypeAliases.cs31 …public bool MutateU32(uint u32) { int o = __p.__offset(14); if (o != 0) { __p.bb.PutUint(o + __p.b… in MutateU32()
/external/flatbuffers/net/FlatBuffers/
DByteBuffer.cs194 PutUint(offset, (uint)value); in PutInt()
197 public unsafe void PutUint(int offset, uint value) in PutUint() method in FlatBuffers.ByteBuffer
276 public void PutUint(int offset, uint value) in PutUint() method in FlatBuffers.ByteBuffer
DFlatBufferBuilder.cs173 public void PutUint(uint x) in PutUint() method in FlatBuffers.FlatBufferBuilder
175 _bb.PutUint(_space -= sizeof(uint), x); in PutUint()
239 public void AddUint(uint x) { Prep(sizeof(uint), 0); PutUint(x); } in AddUint()