HomeSort by relevance Sort by last modified time
    Searched refs:Prep (Results 1 - 22 of 22) sorted by null

  /external/flatbuffers/net/FlatBuffers/
FlatBufferBuilder.cs 121 public void Prep(int size, int additionalBytes)
203 public void AddBool(bool x) { Prep(sizeof(byte), 0); PutBool(x); }
209 public void AddSbyte(sbyte x) { Prep(sizeof(sbyte), 0); PutSbyte(x); }
215 public void AddByte(byte x) { Prep(sizeof(byte), 0); PutByte(x); }
221 public void AddShort(short x) { Prep(sizeof(short), 0); PutShort(x); }
227 public void AddUshort(ushort x) { Prep(sizeof(ushort), 0); PutUshort(x); }
233 public void AddInt(int x) { Prep(sizeof(int), 0); PutInt(x); }
239 public void AddUint(uint x) { Prep(sizeof(uint), 0); PutUint(x); }
245 public void AddLong(long x) { Prep(sizeof(long), 0); PutLong(x); }
251 public void AddUlong(ulong x) { Prep(sizeof(ulong), 0); PutUlong(x);
    [all...]
  /external/flatbuffers/tests/MyGame/Example/
Ability.py 20 builder.Prep(4, 8)
Test.py 20 builder.Prep(2, 4)
Vec3.py 31 builder.Prep(16, 32)
33 builder.Prep(2, 4)
Vec3.cs 31 builder.Prep(16, 32);
33 builder.Prep(2, 4);
Ability.cs 24 builder.Prep(4, 8);
Ability.go 37 builder.Prep(4, 8)
Test.cs 24 builder.Prep(2, 4);
Test.go 37 builder.Prep(2, 4)
Vec3.go 66 builder.Prep(16, 32)
68 builder.Prep(2, 4)
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
StructInNestedNS.py 20 builder.Prep(4, 8)
StructInNestedNS.cs 24 builder.Prep(4, 8);
StructInNestedNS.go 37 builder.Prep(4, 8)
  /external/flatbuffers/go/
builder.go 240 // Prep prepares to write an element of `size` after `additional_bytes`
245 func (b *Builder) Prep(size, additionalBytes int) {
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
    [all...]
  /external/flatbuffers/python/flatbuffers/
builder.py 316 def Prep(self, size, additionalBytes):
318 Prep prepares to write an element of `size` after `additional_bytes`
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
    [all...]
  /external/flatbuffers/tests/
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)
    [all...]
py_test.py 620 b.Prep(4+4+4, 0)
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
mfqe_sse2.asm 187 ; Prep accumulator registers
  /external/libvpx/libvpx/vp9/common/x86/
vp9_mfqe_sse2.asm 188 ; Prep accumulator registers
  /external/flatbuffers/tests/FlatBuffers.Test/
FlatBuffersFuzzTests.cs 372 builder.Prep(4+4+4, 0);
  /external/minijail/
common.mk 758 @# Prep the binfmt handler. First mount if needed, then unregister any bad
    [all...]
  /external/modp_b64/
common.mk 752 @# Prep the binfmt handler. First mount if needed, then unregister any bad
    [all...]

Completed in 516 milliseconds