Home
last modified time | relevance | path

Searched refs:bb_pos (Results 1 – 25 of 49) sorted by relevance

12

/external/flatbuffers/tests/
Dmonster_test_generated.js58 this.bb_pos = 0;
67 this.bb_pos = i;
109 this.bb_pos = 0;
118 this.bb_pos = i;
127 return this.bb.readInt16(this.bb_pos);
135 var offset = this.bb.__offset(this.bb_pos, 0);
141 this.bb.writeInt16(this.bb_pos + offset, value);
149 return this.bb.readInt8(this.bb_pos + 2);
157 var offset = this.bb.__offset(this.bb_pos, 2);
163 this.bb.writeInt8(this.bb_pos + offset, value);
[all …]
/external/flatbuffers/tests/namespace_test/
Dnamespace_test2_generated.js33 this.bb_pos = 0;
42 this.bb_pos = i;
61 var offset = this.bb.__offset(this.bb_pos, 4);
62 …ew NamespaceA.NamespaceB.TableInNestedNS).__init(this.bb.__indirect(this.bb_pos + offset), this.bb…
69 var offset = this.bb.__offset(this.bb_pos, 6);
70 …return offset ? /** @type {NamespaceA.NamespaceB.EnumInNestedNS} */ (this.bb.readInt8(this.bb_pos
78 var offset = this.bb.__offset(this.bb_pos, 6);
84 this.bb.writeInt8(this.bb_pos + offset, value);
93 var offset = this.bb.__offset(this.bb_pos, 8);
94 …return offset ? (obj || new NamespaceA.NamespaceB.StructInNestedNS).__init(this.bb_pos + offset, t…
[all …]
Dnamespace_test1_generated.js36 this.bb_pos = 0;
45 this.bb_pos = i;
63 var offset = this.bb.__offset(this.bb_pos, 4);
64 return offset ? this.bb.readInt32(this.bb_pos + offset) : 0;
72 var offset = this.bb.__offset(this.bb_pos, 4);
78 this.bb.writeInt32(this.bb_pos + offset, value);
118 this.bb_pos = 0;
127 this.bb_pos = i;
136 return this.bb.readInt32(this.bb_pos);
144 var offset = this.bb.__offset(this.bb_pos, 0);
[all …]
/external/flatbuffers/tests/MyGame/Example/
DVec3.java12 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; } in __init()
15 public float x() { return bb.getFloat(bb_pos + 0); } in x()
16 public void mutateX(float x) { bb.putFloat(bb_pos + 0, x); } in mutateX()
17 public float y() { return bb.getFloat(bb_pos + 4); } in y()
18 public void mutateY(float y) { bb.putFloat(bb_pos + 4, y); } in mutateY()
19 public float z() { return bb.getFloat(bb_pos + 8); } in z()
20 public void mutateZ(float z) { bb.putFloat(bb_pos + 8, z); } in mutateZ()
21 public double test1() { return bb.getDouble(bb_pos + 16); } in test1()
22 public void mutateTest1(double test1) { bb.putDouble(bb_pos + 16, test1); } in mutateTest1()
23 public byte test2() { return bb.get(bb_pos + 24); } in test2()
[all …]
DVec3.cs13 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
16 public float X { get { return __p.bb.GetFloat(__p.bb_pos + 0); } }
17 public void MutateX(float x) { __p.bb.PutFloat(__p.bb_pos + 0, x); } in MutateX()
18 public float Y { get { return __p.bb.GetFloat(__p.bb_pos + 4); } }
19 public void MutateY(float y) { __p.bb.PutFloat(__p.bb_pos + 4, y); } in MutateY()
20 public float Z { get { return __p.bb.GetFloat(__p.bb_pos + 8); } }
21 public void MutateZ(float z) { __p.bb.PutFloat(__p.bb_pos + 8, z); } in MutateZ()
22 public double Test1 { get { return __p.bb.GetDouble(__p.bb_pos + 16); } }
23 public void MutateTest1(double test1) { __p.bb.PutDouble(__p.bb_pos + 16, test1); } in MutateTest1()
24 public Color Test2 { get { return (Color)__p.bb.GetSbyte(__p.bb_pos + 24); } }
[all …]
DMonster.java18 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; } in __init()
22 …public Vec3 pos(Vec3 obj) { int o = __offset(4); return o != 0 ? obj.__assign(o + bb_pos, bb) : nu… in pos()
23 public short mana() { int o = __offset(6); return o != 0 ? bb.getShort(o + bb_pos) : 150; } in mana()
24 …public boolean mutateMana(short mana) { int o = __offset(6); if (o != 0) { bb.putShort(o + bb_pos,… in mutateMana()
25 public short hp() { int o = __offset(8); return o != 0 ? bb.getShort(o + bb_pos) : 100; } in hp()
26 …public boolean mutateHp(short hp) { int o = __offset(8); if (o != 0) { bb.putShort(o + bb_pos, hp)… in mutateHp()
27 public String name() { int o = __offset(10); return o != 0 ? __string(o + bb_pos) : null; } in name()
33 public byte color() { int o = __offset(16); return o != 0 ? bb.get(o + bb_pos) : 8; } in color()
34 …public boolean mutateColor(byte color) { int o = __offset(16); if (o != 0) { bb.put(o + bb_pos, co… in mutateColor()
35 public byte testType() { int o = __offset(18); return o != 0 ? bb.get(o + bb_pos) : 0; } in testType()
[all …]
DMonster.cs17 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
20 … = __p.__offset(4); return o != 0 ? (Vec3?)(new Vec3()).__assign(o + __p.bb_pos, __p.bb) : null; }…
21 …public short Mana { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetShort(o + __p.bb_pos)…
22 …t mana) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutShort(o + __p.bb_pos, mana); return tru… in MutateMana()
23 …public short Hp { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetShort(o + __p.bb_pos) :…
24 …ort hp) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutShort(o + __p.bb_pos, hp); return true;… in MutateHp()
25 …public string Name { get { int o = __p.__offset(10); return o != 0 ? __p.__string(o + __p.bb_pos) …
31 … int o = __p.__offset(16); return o != 0 ? (Color)__p.bb.GetSbyte(o + __p.bb_pos) : Color.Blue; } }
32 …color) { int o = __p.__offset(16); if (o != 0) { __p.bb.PutSbyte(o + __p.bb_pos, (sbyte)color); re… in MutateColor()
33 …e { get { int o = __p.__offset(18); return o != 0 ? (Any)__p.bb.Get(o + __p.bb_pos) : Any.NONE; } }
[all …]
DVec3.php20 $this->bb_pos = $_i;
30 return $this->bb->getFloat($this->bb_pos + 0);
38 return $this->bb->getFloat($this->bb_pos + 4);
46 return $this->bb->getFloat($this->bb_pos + 8);
54 return $this->bb->getDouble($this->bb_pos + 16);
62 return $this->bb->getSbyte($this->bb_pos + 24);
71 $obj->init($this->bb_pos + 26, $this->bb);
DMonster.php46 $this->bb_pos = $_i;
55 return $o != 0 ? $obj->init($o + $this->bb_pos, $this->bb) : 0;
64 return $o != 0 ? $this->bb->getShort($o + $this->bb_pos) : 150;
73 return $o != 0 ? $this->bb->getShort($o + $this->bb_pos) : 100;
79 return $o != 0 ? $this->__string($o + $this->bb_pos) : null;
115 return $o != 0 ? $this->bb->getSbyte($o + $this->bb_pos) : \MyGame\Example\Color::Blue;
124 return $o != 0 ? $this->bb->getByte($o + $this->bb_pos) : \MyGame\Example\Any::NONE;
199 return $o != 0 ? $obj->init($this->__indirect($o + $this->bb_pos), $this->bb) : 0;
233 return $o != 0 ? $obj->init($this->__indirect($o + $this->bb_pos), $this->bb) : 0;
242 return $o != 0 ? $this->bb->getBool($o + $this->bb_pos) : false;
[all …]
DTest.java12 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; } in __init()
15 public short a() { return bb.getShort(bb_pos + 0); } in a()
16 public void mutateA(short a) { bb.putShort(bb_pos + 0, a); } in mutateA()
17 public byte b() { return bb.get(bb_pos + 2); } in b()
18 public void mutateB(byte b) { bb.put(bb_pos + 2, b); } in mutateB()
DTest.cs13 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
16 public short A { get { return __p.bb.GetShort(__p.bb_pos + 0); } }
17 public void MutateA(short a) { __p.bb.PutShort(__p.bb_pos + 0, a); } in MutateA()
18 public sbyte B { get { return __p.bb.GetSbyte(__p.bb_pos + 2); } }
19 public void MutateB(sbyte b) { __p.bb.PutSbyte(__p.bb_pos + 2, b); } in MutateB()
DStat.java14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; } in __init()
17 public String id() { int o = __offset(4); return o != 0 ? __string(o + bb_pos) : null; } in id()
19 public long val() { int o = __offset(6); return o != 0 ? bb.getLong(o + bb_pos) : 0L; } in val()
20 …public boolean mutateVal(long val) { int o = __offset(6); if (o != 0) { bb.putLong(o + bb_pos, val… in mutateVal()
21 public int count() { int o = __offset(8); return o != 0 ? bb.getShort(o + bb_pos) & 0xFFFF : 0; } in count()
22 …public boolean mutateCount(int count) { int o = __offset(8); if (o != 0) { bb.putShort(o + bb_pos,… in mutateCount()
DStat.cs15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
18 …public string Id { get { int o = __p.__offset(4); return o != 0 ? __p.__string(o + __p.bb_pos) : n…
20 …public long Val { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : …
21 …ong val) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutLong(o + __p.bb_pos, val); return true… in MutateVal()
22 … { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetUshort(o + __p.bb_pos) : (ushort)0; } }
23 …count) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutUshort(o + __p.bb_pos, count); return tr… in MutateCount()
DStat.php45 $this->bb_pos = $_i;
53 return $o != 0 ? $this->__string($o + $this->bb_pos) : null;
62 return $o != 0 ? $this->bb->getLong($o + $this->bb_pos) : 0;
71 return $o != 0 ? $this->bb->getUshort($o + $this->bb_pos) : 0;
/external/flatbuffers/tests/FlatBuffers.Test/
DTestTable.cs29 t.bb_pos = pos; in TestTable()
40 return t.bb.GetSbyte(t.bb_pos + off) != 0; in GetSlot()
51 return t.bb.GetSbyte(t.bb_pos + off); in GetSlot()
62 return t.bb.Get(t.bb_pos + off); in GetSlot()
73 return t.bb.GetShort(t.bb_pos + off); in GetSlot()
84 return t.bb.GetUshort(t.bb_pos + off); in GetSlot()
95 return t.bb.GetInt(t.bb_pos + off); in GetSlot()
106 return t.bb.GetUint(t.bb_pos + off); in GetSlot()
117 return t.bb.GetLong(t.bb_pos + off); in GetSlot()
128 return t.bb.GetUlong(t.bb_pos + off); in GetSlot()
[all …]
/external/flatbuffers/php/
DTable.php25 protected $bb_pos; variable in Google\\FlatBuffers\\Table
43 $vtable = $this->bb_pos - $this->bb->getInt($this->bb_pos);
76 $offset += $this->bb_pos;
87 $offset += $this->bb_pos;
109 $offset += $this->bb_pos;
110 $table->bb_pos = $offset + $this->bb->getInt($offset);
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DStructInNestedNS.java12 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; } in __init()
15 public int a() { return bb.getInt(bb_pos + 0); } in a()
16 public void mutateA(int a) { bb.putInt(bb_pos + 0, a); } in mutateA()
17 public int b() { return bb.getInt(bb_pos + 4); } in b()
18 public void mutateB(int b) { bb.putInt(bb_pos + 4, b); } in mutateB()
DStructInNestedNS.cs13 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
16 public int A { get { return __p.bb.GetInt(__p.bb_pos + 0); } }
17 public void MutateA(int a) { __p.bb.PutInt(__p.bb_pos + 0, a); } in MutateA()
18 public int B { get { return __p.bb.GetInt(__p.bb_pos + 4); } }
19 public void MutateB(int b) { __p.bb.PutInt(__p.bb_pos + 4, b); } in MutateB()
DStructInNestedNS.php20 $this->bb_pos = $_i;
30 return $this->bb->getInt($this->bb_pos + 0);
38 return $this->bb->getInt($this->bb_pos + 4);
/external/noto-fonts/emoji-compat/src/java/android/support/text/emoji/flatbuffer/
DMetadataItem.java41 bb_pos = _i; in __init()
52 return o != 0 ? bb.getInt(o + bb_pos) : 0; in id()
57 return o != 0 ? 0 != bb.get(o + bb_pos) : false; in emojiStyle()
62 return o != 0 ? bb.getShort(o + bb_pos) : 0; in sdkAdded()
67 return o != 0 ? bb.getShort(o + bb_pos) : 0; in compatAdded()
72 return o != 0 ? bb.getShort(o + bb_pos) : 0; in width()
77 return o != 0 ? bb.getShort(o + bb_pos) : 0; in height()
/external/flatbuffers/tests/namespace_test/NamespaceA/
DTableInFirstNS.java14 public void __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; } in __init()
18 …edNS obj) { int o = __offset(4); return o != 0 ? obj.__assign(__indirect(o + bb_pos), bb) : null; } in fooTable()
19 public byte fooEnum() { int o = __offset(6); return o != 0 ? bb.get(o + bb_pos) : 0; } in fooEnum()
20 …teFooEnum(byte foo_enum) { int o = __offset(6); if (o != 0) { bb.put(o + bb_pos, foo_enum); return… in mutateFooEnum()
22 …StructInNestedNS obj) { int o = __offset(8); return o != 0 ? obj.__assign(o + bb_pos, bb) : null; } in fooStruct()
DTableInFirstNS.cs15 public void __init(int _i, ByteBuffer _bb) { __p.bb_pos = _i; __p.bb = _bb; } in __init()
18 …NamespaceA.NamespaceB.TableInNestedNS()).__assign(__p.__indirect(o + __p.bb_pos), __p.bb) : null; …
19 …n o != 0 ? (NamespaceA.NamespaceB.EnumInNestedNS)__p.bb.GetSbyte(o + __p.bb_pos) : NamespaceA.Name…
20 …o_enum) { int o = __p.__offset(6); if (o != 0) { __p.bb.PutSbyte(o + __p.bb_pos, (sbyte)foo_enum);… in MutateFooEnum()
21 …estedNS?)(new NamespaceA.NamespaceB.StructInNestedNS()).__assign(o + __p.bb_pos, __p.bb) : null; }…
DTableInFirstNS.php30 $this->bb_pos = $_i;
39 return $o != 0 ? $obj->init($this->__indirect($o + $this->bb_pos), $this->bb) : 0;
48 …return $o != 0 ? $this->bb->getSbyte($o + $this->bb_pos) : \NamespaceA\NamespaceB\EnumInNestedNS::…
55 return $o != 0 ? $obj->init($o + $this->bb_pos, $this->bb) : 0;
/external/flatbuffers/net/FlatBuffers/
DTable.cs27 public int bb_pos; field
36 int vtable = bb_pos - bb.GetInt(bb_pos); in __offset()
69 offset += bb_pos; in __vector_len()
77 offset += bb_pos; in __vector()
100 offset += bb_pos;
/external/flatbuffers/java/com/google/flatbuffers/
DTable.java48 protected int bb_pos; field in Table
66 int vtable = bb_pos - bb.getInt(bb_pos); in __offset()
138 offset += bb_pos; in __vector_len()
150 offset += bb_pos; in __vector()
183 offset += bb_pos; in __union()
184 t.bb_pos = offset + bb.getInt(offset); in __union()

12