(self, size)
| 282 | |
| 283 | # Allocate memory in the current write buffer and return offset to the allocated memory block |
| 284 | def allocate(self, size): |
| 285 | return self.buffer.allocate(size) |
| 286 | |
| 287 | # Remove some memory of the given size from the current write buffer |
| 288 | def remove(self, offset, size): |
no outgoing calls