Searched refs:packer_type (Results 1 – 4 of 4) sorted by relevance
/external/flatbuffers/python/flatbuffers/ |
D | number_types.py | 33 packer_type = packer.boolean variable in BoolFlags 42 packer_type = packer.uint8 variable in Uint8Flags 51 packer_type = packer.uint16 variable in Uint16Flags 60 packer_type = packer.uint32 variable in Uint32Flags 69 packer_type = packer.uint64 variable in Uint64Flags 78 packer_type = packer.int8 variable in Int8Flags 87 packer_type = packer.int16 variable in Int16Flags 96 packer_type = packer.int32 variable in Int32Flags 105 packer_type = packer.int64 variable in Int64Flags 114 packer_type = packer.float32 variable in Float32Flags [all …]
|
D | encode.py | 20 def Get(packer_type, buf, head): argument 22 return packer_type.unpack_from(memoryview_type(buf), head)[0] 25 def Write(packer_type, buf, head, n): argument 27 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 | 629 encode.Write(flags.packer_type, self.Bytes, self.Head(), x)
|