Home
last modified time | relevance | path

Searched refs:Prep (Results 1 – 18 of 18) sorted by relevance

/external/flatbuffers/net/FlatBuffers/
DFlatBufferBuilder.cs121 public void Prep(int size, int additionalBytes) in Prep() method in FlatBuffers.FlatBufferBuilder
203 public void AddBool(bool x) { Prep(sizeof(byte), 0); PutBool(x); } in AddBool()
209 public void AddSbyte(sbyte x) { Prep(sizeof(sbyte), 0); PutSbyte(x); } in AddSbyte()
215 public void AddByte(byte x) { Prep(sizeof(byte), 0); PutByte(x); } in AddByte()
221 public void AddShort(short x) { Prep(sizeof(short), 0); PutShort(x); } in AddShort()
227 public void AddUshort(ushort x) { Prep(sizeof(ushort), 0); PutUshort(x); } in AddUshort()
233 public void AddInt(int x) { Prep(sizeof(int), 0); PutInt(x); } in AddInt()
239 public void AddUint(uint x) { Prep(sizeof(uint), 0); PutUint(x); } in AddUint()
245 public void AddLong(long x) { Prep(sizeof(long), 0); PutLong(x); } in AddLong()
251 public void AddUlong(ulong x) { Prep(sizeof(ulong), 0); PutUlong(x); } in AddUlong()
[all …]
/external/flatbuffers/go/
Dbuilder.go240 func (b *Builder) Prep(size, additionalBytes int) { func
261 b.Prep(SizeSOffsetT, 0) // Ensure alignment is already done.
271 b.Prep(SizeUOffsetT, 0) // Ensure alignment is already done.
287 b.Prep(SizeUint32, elemSize*numElems)
288 b.Prep(alignment, elemSize*numElems) // Just in case alignment > int.
308 b.Prep(int(SizeUOffsetT), (len(s)+1)*SizeByte)
324 b.Prep(int(SizeUOffsetT), (len(s)+1)*SizeByte)
340 b.Prep(int(SizeUOffsetT), len(v)*SizeByte)
541 b.Prep(b.minalign, SizeUOffsetT)
571 b.Prep(SizeBool, 0)
[all …]
/external/flatbuffers/python/flatbuffers/
Dbuilder.py312 def Prep(self, size, additionalBytes): member in Builder
345 self.Prep(N.SOffsetTFlags.bytewidth, 0)
359 self.Prep(N.UOffsetTFlags.bytewidth, 0)
378 self.Prep(N.Uint32Flags.bytewidth, elemSize*numElems)
379 self.Prep(alignment, elemSize*numElems) # In case alignment > int.
409 self.Prep(N.UOffsetTFlags.bytewidth, (len(x)+1)*N.Uint8Flags.bytewidth)
464 self.Prep(self.minalign, N.UOffsetTFlags.bytewidth)
471 self.Prep(flags.bytewidth, 0)
/external/flatbuffers/tests/MyGame/Example/
DVec3.py31 builder.Prep(16, 32)
33 builder.Prep(2, 4)
DVec3.cs29 builder.Prep(16, 32); in CreateVec3()
31 builder.Prep(2, 4); in CreateVec3()
DVec3.go66 builder.Prep(16, 32)
68 builder.Prep(2, 4)
DTest.py20 builder.Prep(2, 4)
DTest.cs22 builder.Prep(2, 4); in CreateTest()
DTest.go37 builder.Prep(2, 4)
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DStructInNestedNS.py20 builder.Prep(4, 8)
DStructInNestedNS.cs22 builder.Prep(4, 8); in CreateStructInNestedNS()
DStructInNestedNS.go37 builder.Prep(4, 8)
/external/flatbuffers/tests/
Dgo_test.go834 b.Prep(4+4+4, 0)
1048 b.Prep(2, 4)
1054 b.Prep(2, 4)
1065 b.Prep(16, 32)
1067 b.Prep(2, 4)
Dpy_test.py573 b.Prep(4+4+4, 0)
/external/syslinux/com32/cmenu/
Dtest2.menu74 title=" Prep options "
/external/libvpx/libvpx/vp8/common/x86/
Dmfqe_sse2.asm185 ; Prep accumulator registers
/external/libvpx/libvpx/vp9/common/x86/
Dvp9_mfqe_sse2.asm186 ; Prep accumulator registers
/external/flatbuffers/tests/FlatBuffers.Test/
DFlatBuffersFuzzTests.cs372 builder.Prep(4+4+4, 0); in TestVTableWithAStruct_of_int8_int16_int32()