Lines Matching refs:hex
211 out() << "header: " << hex(header.fh_magic) << ", " << header.fh_version << ", " in run()
212 << hex(header.fh_data_block_size) << ", " << header.fh_header_size << ", " in run()
215 err() << "bad magic, expected: " << hex(INCFS_MAGIC_NUMBER); in run()
221 err() << "bad data block size, expected: " << hex(INCFS_DATA_FILE_BLOCK_SIZE); in run()
227 auto ostream = out() << "flags: " << hex(header.fh_file_header_flags); in run()
233 out() << "first metadata block offset: " << hex(header.fh_first_md_offset); in run()
288 auto ostream = out() << i << " @ " << hex(mIn.tellg()) << ": [ "; in dumpBlockmap()
294 ostream << block.me_data_size << " @ " << hex(blockOffset); in dumpBlockmap()
321 out() << "record crc: " << hex(md.h_record_crc); in dumpMd()
322 out() << "next md offset: " << hex(md.h_next_md_offset); in dumpMd()
323 out() << "prev md offset: " << hex(md.h_prev_md_offset); in dumpMd()
333 out() << "offset: " << hex(bm.m_base_offset); in dumpMd()
341 out() << "offset: " << hex(attr.fa_offset); in dumpMd()
343 out() << "crc: " << hex(attr.fa_crc); in dumpMd()
351 out() << "signature offset: " << hex(sig.sg_sig_offset); in dumpMd()
353 out() << "hash tree offset: " << hex(sig.sg_hash_tree_offset); in dumpMd()
392 std::string hex(uint64_t t) { in hex() function in __anon1bc701e30111::Dump