Allocate a new memory region of at least size bytes. The allocated region shall be 64-byte aligned.
| 117 | /// |
| 118 | /// The allocated region shall be 64-byte aligned. |
| 119 | Status Allocate(int64_t size, uint8_t** out) { |
| 120 | return Allocate(size, kDefaultBufferAlignment, out); |
| 121 | } |
| 122 | |
| 123 | /// Allocate a new memory region of at least size bytes aligned to alignment. |
| 124 | virtual Status Allocate(int64_t size, int64_t alignment, uint8_t** out) = 0; |
no outgoing calls