Home | History | Annotate | Download | only in util

Lines Matching defs:Block

35  * block is allocated and appended to the end of the list.
40 * A contiguous block of allocated memory.
42 struct Block {
58 * The size of the memory block allocation.
63 typedef std::vector<Block>::const_iterator const_iterator;
66 * Create a BigBuffer with block allocation sizes
86 * Returns the next block available and puts the size in out_count.
106 * Pads the block with 'bytes' bytes of zero values.
111 * Pads the block so that it aligns on a 4 byte boundary.
133 std::vector<Block> blocks_;
157 Block& block = blocks_.back();
158 block.size -= count;