| 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); |
| 48 | } |
| 49 | |
| 50 | static inline std::string fscrypt_hex_str(const void *p, int len) |
| 51 | { |
no outgoing calls
no test coverage detected