Searched refs:hex (Results 1 – 3 of 3) sorted by relevance
26 const char* hex = "0123456789abcdef"; in print_sha1() local29 result.push_back(hex[(sha1[i] >> 4) & 0xf]); in print_sha1()30 result.push_back(hex[sha1[i] & 0xf]); in print_sha1()
234 LOG(WARNING) << "Invalid boot control found, expected CRC-32 0x" << std::hex << computed_crc32 in BootControl_lazyInitialization()235 << " but found 0x" << std::hex << boot_ctrl.crc32_le << ". Re-initializing."; in BootControl_lazyInitialization()
243 LOG(INFO) << "signature (offset: " << std::hex << (length - signature_start) << ", length: " in verify_file()