------------------------------------------------------------------------------
| 579 | |
| 580 | //------------------------------------------------------------------------------ |
| 581 | size_t vtkXMLDataParser::FindBlockSize(vtkTypeUInt64 block) |
| 582 | { |
| 583 | if (block < this->NumberOfBlocks - (this->PartialLastBlockUncompressedSize ? 1 : 0)) |
| 584 | { |
| 585 | return this->BlockUncompressedSize; |
| 586 | } |
| 587 | else |
| 588 | { |
| 589 | return this->PartialLastBlockUncompressedSize; |
| 590 | } |
| 591 | } |
| 592 | |
| 593 | //------------------------------------------------------------------------------ |
| 594 | int vtkXMLDataParser::ReadBlock(vtkTypeUInt64 block, unsigned char* buffer) |
no outgoing calls
no test coverage detected