Lines Matching refs:int64_t
96 int64_t h_next_md_offset;
99 int64_t h_prev_md_offset;
106 int64_t fh_magic;
109 int64_t fh_version;
121 int64_t fh_first_md_offset;
128 int64_t fh_file_size;
159 int64_t m_base_offset;
169 int64_t fa_offset;
182 int64_t sg_sig_offset; /* Signature's offset in the backing file */
186 int64_t sg_hash_tree_offset; /* Hash tree offset in the backing file */
283 void dumpBlockmap(int64_t offset, int64_t count) { in dumpBlockmap()
286 for (int64_t i = 0; i != count; ++i) { in dumpBlockmap()
301 void dumpAttr(int64_t offset, int64_t size) { in dumpAttr()
306 void dumpTree(int64_t offset, int64_t size) { in dumpTree()
311 void dumpMd(int64_t& offset, incfs_md_header& prevMd) { in dumpMd()
423 std::remove_reference_t<T> readAt(int64_t pos) { in readAt()
428 void skip(int64_t count) { mIn.seekg(count, std::ios_base::cur); } in skip()
430 void updateMaxPos() { mMaxDumpedPos = std::max<int64_t>(mMaxDumpedPos, mIn.tellg()); } in updateMaxPos()
435 int64_t mMaxDumpedPos = 0;