Searched refs:packer_type (Results 1 – 4 of 4) sorted by relevance
/external/flatbuffers/python/flatbuffers/ |
D | number_types.py | 35 packer_type = packer.boolean variable in BoolFlags 44 packer_type = packer.uint8 variable in Uint8Flags 53 packer_type = packer.uint16 variable in Uint16Flags 62 packer_type = packer.uint32 variable in Uint32Flags 71 packer_type = packer.uint64 variable in Uint64Flags 80 packer_type = packer.int8 variable in Int8Flags 89 packer_type = packer.int16 variable in Int16Flags 98 packer_type = packer.int32 variable in Int32Flags 107 packer_type = packer.int64 variable in Int64Flags 116 packer_type = packer.float32 variable in Float32Flags [all …]
|
D | encode.py | 22 def Get(packer_type, buf, head): argument 24 return packer_type.unpack_from(memoryview_type(buf), head)[0] 38 def Write(packer_type, buf, head, n): argument 40 packer_type.pack_into(buf, head, n)
|
D | table.py | 46 return off + encode.Get(N.UOffsetTFlags.packer_type, self.Bytes, off) 51 off += encode.Get(N.UOffsetTFlags.packer_type, self.Bytes, off) 53 length = encode.Get(N.UOffsetTFlags.packer_type, self.Bytes, off) 62 off += encode.Get(N.UOffsetTFlags.packer_type, self.Bytes, off) 63 ret = encode.Get(N.UOffsetTFlags.packer_type, self.Bytes, off) 93 return flags.py_type(encode.Get(flags.packer_type, self.Bytes, off))
|
D | builder.py | 707 encode.Write(flags.packer_type, self.Bytes, self.Head(), x)
|