Lines Matching refs:head
60 head(nullptr),
70 head{std::exchange(other.head, nullptr)},
78 head = std::exchange(other.head, nullptr);
96 head = nullptr;
121 if (!head ||
122 head->end - head->last < static_cast<ssize_t>(size + sizeof(size_t))) {
123 head = alloc_mem_block(block_size);
127 auto res = head->last + sizeof(size_t);
128 auto sp = reinterpret_cast<size_t *>(head->last);
131 head->last = reinterpret_cast<uint8_t *>(
172 MemBlock *head;