|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
lib/DebugInfo/GSYM/Header.cpp 35 OS << format_hex_no_prefix(H.UUID[I], 2);
lib/DebugInfo/PDB/IPDBSourceFile.cpp 30 OS << format_hex_no_prefix(c, 2, true);
lib/IR/AsmWriter.cpp 1355 Out << format_hex_no_prefix(API.getHiBits(16).getZExtValue(), 4,
1357 Out << format_hex_no_prefix(API.getLoBits(64).getZExtValue(), 16,
1362 Out << format_hex_no_prefix(API.getLoBits(64).getZExtValue(), 16,
1364 Out << format_hex_no_prefix(API.getHiBits(64).getZExtValue(), 16,
1368 Out << format_hex_no_prefix(API.getLoBits(64).getZExtValue(), 16,
1370 Out << format_hex_no_prefix(API.getHiBits(64).getZExtValue(), 16,
1374 Out << format_hex_no_prefix(API.getZExtValue(), 4,
lib/Support/ScopedPrinter.cpp 18 stream << format_hex_no_prefix(Value, 1, UpperCase);
lib/Target/NVPTX/NVPTXAsmPrinter.cpp 1708 O << lead << format_hex_no_prefix(API.getZExtValue(), numHex, /*Upper=*/true);
lib/Target/NVPTX/NVPTXMCExpr.cpp 50 OS << format_hex_no_prefix(API.getZExtValue(), NumHex, /*Upper=*/true);
tools/dsymutil/MachODebugMapParser.cpp 259 << format_hex_no_prefix(StringIndex, 8)
262 << format_hex_no_prefix(Type, 2) << " (";
288 OS << format_hex_no_prefix(Type, 2) << " ";
299 << format_hex_no_prefix(SectionIndex, 2)
302 << format_hex_no_prefix(Flags, 4)
305 << format_hex_no_prefix(Value, 16);
tools/lld/ELF/Thunks.cpp 749 os << format_hex_no_prefix(addend, 8);
tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.cpp 15 OS << format_hex_no_prefix(*ref.dwo_num(), 8) << "/";
17 OS << "/" << format_hex_no_prefix(ref.die_offset(), 8);
tools/lldb/source/Utility/UUID.cpp 46 os << llvm::format_hex_no_prefix(B.value(), 2, true);
tools/llvm-objdump/llvm-objdump.cpp 1742 << format_hex_no_prefix(VMA, AddressWidth) << " "
1743 << format_hex_no_prefix(getELFSectionLMA(Section), AddressWidth)
1748 << format_hex_no_prefix(VMA, AddressWidth) << " " << Type << "\n";
tools/llvm-readobj/ELFDumper.cpp 2943 Fields[0].Str = to_string(format_hex_no_prefix(R.r_offset, Width));
2944 Fields[1].Str = to_string(format_hex_no_prefix(R.r_info, Width));
2951 Fields[3].Str = to_string(format_hex_no_prefix(Sym->getValue(), Width));
3047 OS << to_string(format_hex_no_prefix(R, ELFT::Is64Bits ? 16 : 8))
3217 to_string(format_hex_no_prefix(Sec.sh_addr, ELFT::Is64Bits ? 16 : 8));
3218 Fields[4].Str = to_string(format_hex_no_prefix(Sec.sh_offset, 6));
3219 Fields[5].Str = to_string(format_hex_no_prefix(Sec.sh_size, 6));
3220 Fields[6].Str = to_string(format_hex_no_prefix(Sec.sh_entsize, 2));
3293 to_string(format_hex_no_prefix(SectionIndex, 4)) + "]";
3297 to_string(format_hex_no_prefix(SectionIndex, 4)) + "]";
3302 to_string(format_hex_no_prefix(SectionIndex, 4)) + "]";
3328 format_hex_no_prefix(Symbol->st_value, ELFT::Is64Bits ? 16 : 8));
3368 format_hex_no_prefix(Symbol->st_value, ELFT::Is64Bits ? 16 : 8));
3777 OS << " Addr: " << format_hex_no_prefix(Sec->sh_addr, 16)
3799 OS << " " << format_hex_no_prefix(VersymRow, 3) << ":";
4436 OS << format_hex_no_prefix(B, 2);
4988 OS << format_hex_no_prefix(Parser.getGotAddress(E), 8 + Bias);
4992 OS << format_hex_no_prefix(*E, 8 + Bias);
4999 << format_hex_no_prefix(Parser.getGp(), 8 + Bias) << "\n\n";
5038 OS << to_string(format_hex_no_prefix(Parser.getGotAddress(&E), 8 + Bias));
5042 OS << to_string(format_hex_no_prefix(E, 8 + Bias));
5044 OS << to_string(format_hex_no_prefix(Sym->st_value, 8 + Bias));
5065 OS << format_hex_no_prefix(Parser.getPltAddress(E), 8 + Bias);
5067 OS << format_hex_no_prefix(*E, 8 + Bias);
5090 OS << to_string(format_hex_no_prefix(Parser.getPltAddress(&E), 8 + Bias));
5092 OS << to_string(format_hex_no_prefix(E, 8 + Bias));
5094 OS << to_string(format_hex_no_prefix(Sym->st_value, 8 + Bias));
5140 OS << "FLAGS 1: " << format_hex_no_prefix(Flags->flags1, 8, false) << "\n";
5141 OS << "FLAGS 2: " << format_hex_no_prefix(Flags->flags2, 8, false) << "\n";
tools/llvm-readobj/ObjDumper.cpp 147 W.startLine() << format_hex_no_prefix(Val, 2);
unittests/Support/raw_ostream_test.cpp 170 EXPECT_EQ("FF", printToString(format_hex_no_prefix(0xFF, 2, true), 4));
171 EXPECT_EQ("ABCD", printToString(format_hex_no_prefix(0xABCD, 2, true), 4));