| 253 | unsigned blockCacheMemoryUsage; |
| 254 | |
| 255 | inline uint32_t LocationToBlock(uint64_t l){ |
| 256 | return (l >> super.logBlockSize) >> 10; |
| 257 | } |
| 258 | |
| 259 | inline uint64_t BlockToLBA(uint64_t block){ |
| 260 | return block * (blocksize / part->parentDisk->blocksize); |
nothing calls this directly
no outgoing calls
no test coverage detected