/external/flatbuffers/net/FlatBuffers/ |
D | FlatBufferBuilder.cs | 121 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/ |
D | builder.go | 240 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/ |
D | builder.py | 312 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/ |
D | Vec3.py | 31 builder.Prep(16, 32) 33 builder.Prep(2, 4)
|
D | Vec3.cs | 29 builder.Prep(16, 32); in CreateVec3() 31 builder.Prep(2, 4); in CreateVec3()
|
D | Vec3.go | 66 builder.Prep(16, 32) 68 builder.Prep(2, 4)
|
D | Test.py | 20 builder.Prep(2, 4)
|
D | Test.cs | 22 builder.Prep(2, 4); in CreateTest()
|
D | Test.go | 37 builder.Prep(2, 4)
|
/external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/ |
D | StructInNestedNS.py | 20 builder.Prep(4, 8)
|
D | StructInNestedNS.cs | 22 builder.Prep(4, 8); in CreateStructInNestedNS()
|
D | StructInNestedNS.go | 37 builder.Prep(4, 8)
|
/external/flatbuffers/tests/ |
D | go_test.go | 834 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)
|
D | py_test.py | 573 b.Prep(4+4+4, 0)
|
/external/syslinux/com32/cmenu/ |
D | test2.menu | 74 title=" Prep options "
|
/external/libvpx/libvpx/vp8/common/x86/ |
D | mfqe_sse2.asm | 185 ; Prep accumulator registers
|
/external/libvpx/libvpx/vp9/common/x86/ |
D | vp9_mfqe_sse2.asm | 186 ; Prep accumulator registers
|
/external/flatbuffers/tests/FlatBuffers.Test/ |
D | FlatBuffersFuzzTests.cs | 372 builder.Prep(4+4+4, 0); in TestVTableWithAStruct_of_int8_int16_int32()
|