| 495 | } |
| 496 | |
| 497 | int DsoSnapshot::get_block_num() |
| 498 | { |
| 499 | const uint64_t size = _sample_count * get_unit_bytes() * get_channel_num(); |
| 500 | return (size >> LeafBlockPower) + |
| 501 | ((size & LeafMask) != 0); |
| 502 | } |
| 503 | |
| 504 | uint64_t DsoSnapshot::get_block_size(int block_index) |
| 505 | { |
no outgoing calls
no test coverage detected