Lines Matching refs:partition_size
31 'partition_size': None, \
80 self.partition_size, _) = struct.unpack(self.FOOTER_FORMAT, footer)
93 msg += "\tPartition size: {} bytes\n\n".format(self.partition_size)
706 self.partition_size = _params['partition_size']
935 self.partition_size = int(self.partition_size)
941 cert_offset = self.partition_size - self.padding_size
943 print("cert_size: %x, cert_offset: %x, partition_size: %x" % (cert_size, cert_offset, self.partition_size))
945 + struct.pack('4Q', cert_offset, cert_size, self.original_image_length, self.partition_size) \
1008 if self.partition_size < image.img_size + hashtree_length + len(cert_and_footer):
1011 cert_and_footer = self.hvb_cert_content + b'\0' * (self.partition_size - image.img_size - \