Home
last modified time | relevance | path

Searched refs:Prep (Results 1 – 21 of 21) 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.go245 func (b *Builder) Prep(size, additionalBytes int) { func
266 b.Prep(SizeSOffsetT, 0) // Ensure alignment is already done.
276 b.Prep(SizeUOffsetT, 0) // Ensure alignment is already done.
292 b.Prep(SizeUint32, elemSize*numElems)
293 b.Prep(alignment, elemSize*numElems) // Just in case alignment > int.
313 b.Prep(int(SizeUOffsetT), (len(s)+1)*SizeByte)
329 b.Prep(int(SizeUOffsetT), (len(s)+1)*SizeByte)
345 b.Prep(int(SizeUOffsetT), len(v)*SizeByte)
546 b.Prep(b.minalign, SizeUOffsetT)
576 b.Prep(SizeBool, 0)
[all …]
/external/flatbuffers/python/flatbuffers/
Dbuilder.py316 def Prep(self, size, additionalBytes): member in Builder
349 self.Prep(N.SOffsetTFlags.bytewidth, 0)
363 self.Prep(N.UOffsetTFlags.bytewidth, 0)
382 self.Prep(N.Uint32Flags.bytewidth, elemSize*numElems)
383 self.Prep(alignment, elemSize*numElems) # In case alignment > int.
413 self.Prep(N.UOffsetTFlags.bytewidth, (len(x)+1)*N.Uint8Flags.bytewidth)
435 self.Prep(N.UOffsetTFlags.bytewidth, len(x)*N.Uint8Flags.bytewidth)
489 self.Prep(self.minalign, N.UOffsetTFlags.bytewidth)
496 self.Prep(flags.bytewidth, 0)
/external/flatbuffers/tests/MyGame/Example/
DVec3.py31 builder.Prep(16, 32)
33 builder.Prep(2, 4)
DVec3.cs31 builder.Prep(16, 32); in CreateVec3()
33 builder.Prep(2, 4); in CreateVec3()
DVec3.go66 builder.Prep(16, 32)
68 builder.Prep(2, 4)
DAbility.py20 builder.Prep(4, 8)
DTest.py20 builder.Prep(2, 4)
DAbility.cs24 builder.Prep(4, 8); in CreateAbility()
DTest.cs24 builder.Prep(2, 4); in CreateTest()
DAbility.go37 builder.Prep(4, 8)
DTest.go37 builder.Prep(2, 4)
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
DStructInNestedNS.py20 builder.Prep(4, 8)
DStructInNestedNS.cs24 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.py620 b.Prep(4+4+4, 0)
/external/syslinux/com32/cmenu/
Dtest2.menu74 title=" Prep options "
/external/libvpx/libvpx/vp9/common/x86/
Dvp9_mfqe_sse2.asm188 ; Prep accumulator registers
/external/libvpx/libvpx/vp8/common/x86/
Dmfqe_sse2.asm187 ; Prep accumulator registers
/external/flatbuffers/tests/FlatBuffers.Test/
DFlatBuffersFuzzTests.cs372 builder.Prep(4+4+4, 0); in TestVTableWithAStruct_of_int8_int16_int32()