Lines Matching defs:struct
4 import struct
62 - For Struct/Table/Subtable items, it add first adds new writer to the
141 value, = struct.unpack(">H", self.data[pos:newpos])
148 value, = struct.unpack(">h", self.data[pos:newpos])
155 value, = struct.unpack(">l", self.data[pos:newpos])
162 value, = struct.unpack(">l", b'\0'+self.data[pos:newpos])
169 value, = struct.unpack(">L", self.data[pos:newpos])
267 except struct.error:
425 self.items.append(struct.pack(">H", value))
428 self.items.append(struct.pack(">h", value))
432 b = struct.pack(">L", value)
436 self.items.append(struct.pack(">l", value))
439 self.items.append(struct.pack(">L", value))
455 data = struct.pack(*(format,) + values)
512 return struct.pack(">H", value)
517 return struct.pack(">L", value)