Searched defs:IsBlockAligned (Results 1 – 2 of 2) sorted by relevance
198 bool IsBlockAligned(uint64_t read_size) { return ((read_size & (BLOCK_SZ - 1)) == 0); } in IsBlockAligned() function232 bool IsBlockAligned(size_t size) { return ((size & (BLOCK_SZ - 1)) == 0); } in IsBlockAligned() function392 bool IsBlockAligned(uint64_t read_size) { return ((read_size & (BLOCK_SZ - 1)) == 0); } in IsBlockAligned() function
282 bool IsBlockAligned(int read_size) { return ((read_size & (BLOCK_SZ - 1)) == 0); } in IsBlockAligned() function