(self, value)
| 1062 | exception_thread.stack.memory.data_size |
| 1063 | |
| 1064 | def FormatIntPtr(self, value): |
| 1065 | if self.Is64(): |
| 1066 | return "%016x" % value |
| 1067 | return "%08x" % value |
| 1068 | |
| 1069 | def FormatTagged(self, value): |
| 1070 | if self.Is64() and not self.IsPointerCompressed(): |