Home
last modified time | relevance | path

Searched refs:PrependInt64 (Results 1 – 12 of 12) sorted by relevance

/third_party/flatbuffers/tests/
Dluatest.lua128 b:PrependInt64(100000000)
129 b:PrependInt64(1000000)
130 b:PrependInt64(10000)
131 b:PrependInt64(100)
132 b:PrependInt64(1)
Dpy_test.py852 b.PrependInt64(0x1122334455667788)
1576 b.PrependInt64(100000000)
1577 b.PrependInt64(1000000)
1578 b.PrependInt64(10000)
1579 b.PrependInt64(100)
1580 b.PrependInt64(1)
Dmonster_test_generated.lobster618 reverse(v_) e_: b_.PrependInt64(e_)
/third_party/flatbuffers/tests/MyGame/Example/
DArrayStruct.py75 builder.PrependInt64(f[_idx0-1])
81 builder.PrependInt64(d_d[_idx0-1][_idx1-1])
DNestedStruct.py68 builder.PrependInt64(d[_idx0-1])
DMonster.go161 builder.PrependInt64(t.VectorOfLongs[j])
DMonster.py1452 builder.PrependInt64(self.vectorOfLongs[i])
/third_party/flatbuffers/docs/source/
DGoApi_generated.txt94 func (b *Builder) PrependInt64(x int64)
95 PrependInt64 prepends a int64 to the Builder buffer. Aligns and checks
/third_party/flatbuffers/lobster/
Dflatbuffers.lobster230 def PrependInt64(x):
273 def PrependInt64Slot(o, x, d): PrependSlot(o, x, d): PrependInt64(_)
286 def PrependInt64Slot(o, x): PrependSlot(o, x): PrependInt64(_)
/third_party/flatbuffers/go/
Dbuilder.go514 b.PrependInt64(x)
714 func (b *Builder) PrependInt64(x int64) { func
/third_party/flatbuffers/lua/flatbuffers/
Dbuilder.lua373 function mt:PrependInt64(x) self:Prepend(Int64, x) end function
/third_party/flatbuffers/python/flatbuffers/
Dbuilder.py685 def PrependInt64(self, x): member in Builder