| 66 | } |
| 67 | |
| 68 | void MemcpyOffset(void* dst, size_t dst_off, const void* src, size_t src_off, size_t n) { |
| 69 | std::memcpy(BytesOffset(dst, dst_off), BytesOffset(src, src_off), n); |
| 70 | } |
| 71 | |
| 72 | void InitOrCheckMetaValue(const std::string& pathname, int64_t expected, bool init) { |
| 73 | bool exists = PosixFile::FileExists(pathname); |
no test coverage detected