| 92 | static heap_node* freelist = NULL; |
| 93 | |
| 94 | heap_node* node_from_offset(const heap_offset offset) { |
| 95 | return (heap_node*)(heap + (offset * sizeof(heap_node))); |
| 96 | } |
| 97 | |
| 98 | heap_offset offset_from_node(const heap_node* ptr) { |
| 99 | return static_cast<heap_offset>( |
no outgoing calls
no test coverage detected