| 192 | return bigUsed; |
| 193 | } |
| 194 | int ArenaBlock::unused() const { |
| 195 | if (isTiny()) |
| 196 | return tinySize - tinyUsed; |
| 197 | else |
| 198 | return bigSize - bigUsed; |
| 199 | } |
| 200 | const void* ArenaBlock::getData() const { |
| 201 | return this; |
| 202 | } |
no outgoing calls
no test coverage detected