------------------------------------------------------------------------------
| 339 | |
| 340 | //------------------------------------------------------------------------------ |
| 341 | void vtkParallelTimerBuffer::PushBack(const void* data, size_t n) |
| 342 | { |
| 343 | size_t nextAt = this->At + n; |
| 344 | this->Resize(nextAt); |
| 345 | memcpy(this->Data + this->At, data, n); |
| 346 | this->At = nextAt; |
| 347 | } |
| 348 | |
| 349 | //------------------------------------------------------------------------------ |
| 350 | void vtkParallelTimerBuffer::Resize(size_t newSize) |
no test coverage detected