Lines Matching defs:Block
38 struct Block {
40 Block *next = nullptr;
43 Block first;
44 Block *current = &first;
48 Block *first, *second;
53 Block *prev = nullptr;
54 Block *curr = &first;
61 LIBC_INLINE Block *get_last_block() { return get_last_blocks().first; }
68 Block *block;
72 LIBC_INLINE constexpr Iterator(Block *b, size_t i) : block(b), index(i) {}
128 auto new_block = new (ac) Block();