(self, a, size)
| 3197 | return a - alignment_correction |
| 3198 | |
| 3199 | def align_up(self, a, size): |
| 3200 | alignment_correction = (size - 1) - ((a + size - 1) % size) |
| 3201 | return a + alignment_correction |
| 3202 | |
| 3203 | def format_object(self, address): |
| 3204 | heap_object = self.padawan.SenseObject(address) |