* Allocate memory in the current write buffer and return offset to the allocated memory block * @this {!Model} * @param {!number} size Allocation size * @returns {!number} Allocated memory offset
(size)
| 427 | * @returns {!number} Allocated memory offset |
| 428 | */ |
| 429 | allocate (size) { |
| 430 | return this._buffer.allocate(size) |
| 431 | } |
| 432 | |
| 433 | /** |
| 434 | * Remove some memory of the given size from the current write buffer |
no outgoing calls
no test coverage detected