Searched refs:PutSbyte (Results 1 – 10 of 10) sorted by relevance
/third_party/flatbuffers/tests/MyGame/Example/ |
D | NestedStruct.cs | 22 public void MutateB(MyGame.Example.TestEnum b) { __p.bb.PutSbyte(__p.bb_pos + 8, (sbyte)b); } in MutateB() 24 …public void MutateC(int j, MyGame.Example.TestEnum c) { __p.bb.PutSbyte(__p.bb_pos + 9 + j * 1, (s… in MutateC() 35 builder.PutSbyte((sbyte)C[_idx0-1]); in CreateNestedStruct() 37 builder.PutSbyte((sbyte)B); in CreateNestedStruct()
|
D | ArrayStruct.cs | 24 public void MutateC(sbyte c) { __p.bb.PutSbyte(__p.bb_pos + 64, c); } in MutateC() 45 builder.PutSbyte((sbyte)d_C[_idx0-1,_idx1-1]); in CreateArrayStruct() 47 builder.PutSbyte((sbyte)d_B[_idx0-1]); in CreateArrayStruct() 53 builder.PutSbyte(C); in CreateArrayStruct()
|
D | Test.cs | 22 public void MutateB(sbyte b) { __p.bb.PutSbyte(__p.bb_pos + 2, b); } in MutateB() 27 builder.PutSbyte(B); in CreateTest()
|
D | StructOfStructs.cs | 30 builder.PutSbyte(b_B); in CreateStructOfStructs()
|
D | TypeAliases.cs | 23 …public bool MutateI8(sbyte i8) { int o = __p.__offset(4); if (o != 0) { __p.bb.PutSbyte(o + __p.bb… in MutateI8() 50 …public bool MutateV8(int j, sbyte v8) { int o = __p.__offset(24); if (o != 0) { __p.bb.PutSbyte(__… in MutateV8()
|
D | Vec3.cs | 36 builder.PutSbyte(test3_B); in CreateVec3()
|
D | Monster.cs | 199 …ple.Race signed_enum) { int o = __p.__offset(100); if (o != 0) { __p.bb.PutSbyte(o + __p.bb_pos, (… in MutateSignedEnum()
|
/third_party/flatbuffers/net/FlatBuffers/ |
D | FlatBufferBuilder.cs | 156 public void PutSbyte(sbyte x) in PutSbyte() method in FlatBuffers.FlatBufferBuilder 158 _bb.PutSbyte(_space -= sizeof(sbyte), x); in PutSbyte() 243 public void AddSbyte(sbyte x) { Prep(sizeof(sbyte), 0); PutSbyte(x); } in AddSbyte()
|
D | ByteBuffer.cs | 420 public void PutSbyte(int offset, sbyte value) in PutSbyte() method in FlatBuffers.ByteBuffer 440 public void PutSbyte(int offset, sbyte value) in PutSbyte() method in FlatBuffers.ByteBuffer
|
/third_party/flatbuffers/tests/namespace_test/NamespaceA/ |
D | TableInFirstNS.cs | 24 …numInNestedNS foo_enum) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutSbyte(o + __p.bb_pos, (… in MutateFooEnum()
|