| 40 | } |
| 41 | |
| 42 | static inline uint64_t fscrypt_block_start(uint64_t ofs) { |
| 43 | return ofs & ~(FSCRYPT_BLOCK_SIZE - 1); |
| 44 | } |
| 45 | |
| 46 | static inline uint64_t fscrypt_next_block_start(uint64_t ofs) { |
| 47 | return (ofs + FSCRYPT_BLOCK_SIZE - 1) & ~(FSCRYPT_BLOCK_SIZE - 1); |
no outgoing calls
no test coverage detected