| 121 | */ |
| 122 | |
| 123 | __inline_call void_type push_block ( // push new buffer |
| 124 | ) |
| 125 | { |
| 126 | /*------------------------- allocate new buffer item */ |
| 127 | char_type *_this_slab = |
| 128 | (char_type *)base_type |
| 129 | ::allocate(__slabbytes); |
| 130 | |
| 131 | /*------------------------- push new buffer onto list */ |
| 132 | __nextblock(_this_slab)= this->_block; |
| 133 | |
| 134 | this->_alloc = _this_slab + |
| 135 | this->_slab_size*this->_item_size; |
| 136 | this->_block = _this_slab ; |
| 137 | this->_shift = _this_slab ; |
| 138 | } |
| 139 | |
| 140 | /* |
| 141 | -------------------------------------------------------- |
nothing calls this directly
no test coverage detected