Lines Matching refs:hex
210 out() << "header: " << hex(header.fh_magic) << ", " << header.fh_version << ", " in run()
211 << hex(header.fh_data_block_size) << ", " << header.fh_header_size << ", " in run()
214 err() << "bad magic, expected: " << hex(INCFS_MAGIC_NUMBER); in run()
220 err() << "bad data block size, expected: " << hex(INCFS_DATA_FILE_BLOCK_SIZE); in run()
226 auto ostream = out() << "flags: " << hex(header.fh_file_header_flags); in run()
232 out() << "first metadata block offset: " << hex(header.fh_first_md_offset); in run()
287 auto ostream = out() << i << " @ " << hex(mIn.tellg()) << ": [ "; in dumpBlockmap()
293 ostream << block.me_data_size << " @ " << hex(blockOffset); in dumpBlockmap()
320 out() << "record crc: " << hex(md.h_record_crc); in dumpMd()
321 out() << "next md offset: " << hex(md.h_next_md_offset); in dumpMd()
322 out() << "prev md offset: " << hex(md.h_prev_md_offset); in dumpMd()
332 out() << "offset: " << hex(bm.m_base_offset); in dumpMd()
340 out() << "offset: " << hex(attr.fa_offset); in dumpMd()
342 out() << "crc: " << hex(attr.fa_crc); in dumpMd()
350 out() << "signature offset: " << hex(sig.sg_sig_offset); in dumpMd()
352 out() << "hash tree offset: " << hex(sig.sg_hash_tree_offset); in dumpMd()
391 std::string hex(uint64_t t) { in hex() function in __anon0107e9d80111::Dump