Lines Matching refs:vdict
88 def pack(self, vdict, cdict, val): argument
90 return b''.join(self.apack(vdict, cdict, val))
93 def apack(self, vdict, cdict, val): argument
97 def unpack(self, vdict, cdict, bstring, offset, noerror=False): argument
218 def apack(self, vdict, cdict, val): argument
250 def unpack(self, vdict, cdict, bstring, offset, noerror=False): argument
345 def apack(self, vdict, cdict, val): argument
353 def unpack(self, vdict, cdict, bstring, offset, noerror=False): argument
430 def apack(self, vdict, cdict, val): argument
432 num = vdict[self.repeat]
439 parts.extend(self.sub.apack(vdict, cdict, i))
442 def unpack(self, vdict, cdict, bstring, offset, noerror=False): argument
444 num = vdict[self.repeat]
457 obj, offset = self.sub.unpack(vdict, cdict, bstring, offset,
593 def apack(self, vdict, cdict): argument
606 packed_data.extend(code.apack(vdict, cdict, vdict[code.name]))
610 def pack(self, vdict, cdict): argument
614 return b''.join(self.apack(vdict, cdict))
616 def unpack_from(self, vdict, cdict, bstring, offset=0, noerror=False): argument
636 obj, offset = code.unpack(vdict, cdict, bstring, offset, noerror)
637 vdict[code.name] = obj
641 def unpack(self, vdict, cdict, bstring, noerror=False): argument
646 offset = self.unpack_from(vdict, cdict, bstring, 0, noerror)