Lines Matching refs:latest
973 struct linear_header *latest; /* the only buffer that has free space */ member
1023 node->latest = node; in create_linear_node()
1031 linear_header *latest = first->latest; in linear_alloc_child() local
1037 assert(!latest->next); in linear_alloc_child()
1042 if (unlikely(latest->offset + full_size > latest->size)) { in linear_alloc_child()
1044 new_node = create_linear_node(latest->ralloc_parent, size); in linear_alloc_child()
1048 first->latest = new_node; in linear_alloc_child()
1049 latest->latest = new_node; in linear_alloc_child()
1050 latest->next = new_node; in linear_alloc_child()
1051 latest = new_node; in linear_alloc_child()
1054 ptr = (linear_size_chunk *)((char*)&latest[1] + latest->offset); in linear_alloc_child()
1056 latest->offset += full_size; in linear_alloc_child()