Home
last modified time | relevance | path

Searched refs:left_justify (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/jemalloc/src/
H A Dmalloc_io.c358 #define APPEND_PADDED_S(s, slen, width, left_justify) do { \ in malloc_vsnprintf() argument
362 if (!left_justify && pad_len != 0) { \ in malloc_vsnprintf()
371 if (left_justify && pad_len != 0) { \ in malloc_vsnprintf()
429 bool left_justify = false; in malloc_vsnprintf() local
447 assert(!left_justify); in malloc_vsnprintf()
448 left_justify = true; in malloc_vsnprintf()
469 left_justify = true; in malloc_vsnprintf()
541 APPEND_PADDED_S(s, slen, width, left_justify); in malloc_vsnprintf()
550 APPEND_PADDED_S(s, slen, width, left_justify); in malloc_vsnprintf()
559 APPEND_PADDED_S(s, slen, width, left_justify); in malloc_vsnprintf()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DOffloadDump.cpp43 outs() << left_justify("kind", 16) << getImageName(OB) << "\n"; in printBinary()
44 outs() << left_justify("arch", 16) << OB.getArch() << "\n"; in printBinary()
45 outs() << left_justify("triple", 16) << OB.getTriple() << "\n"; in printBinary()
46 outs() << left_justify("producer", 16) in printBinary()
H A DELFDump.cpp345 outs() << left_justify("OFFSET", OffsetPadding) << ' ' in printDynamicRelocations()
346 << left_justify("TYPE", TypePadding) << " VALUE\n"; in printDynamicRelocations()
358 << left_justify(RelocName, TypePadding) << ' ' << ValueStr << '\n'; in printDynamicRelocations()
H A Dllvm-objdump.cpp798 OS << left_justify(IS.str(), 60); in printInst()
2685 outs() << left_justify("OFFSET", OffsetPadding) << " " in printRelocations()
2686 << left_justify("TYPE", TypePadding) << " " in printRelocations()
2712 << left_justify(RelocName, TypePadding) << " " << ValueStr in printRelocations()
2750 outs() << "Idx " << left_justify("Name", NameWidth) << " Size " in printSectionHeaders()
2751 << left_justify("VMA", AddressWidth) << " " in printSectionHeaders()
2752 << left_justify("LMA", AddressWidth) << " Type\n"; in printSectionHeaders()
2754 outs() << "Idx " << left_justify("Name", NameWidth) << " Size " in printSectionHeaders()
2755 << left_justify("VMA", AddressWidth) << " Type\n"; in printSectionHeaders()
3032 outs() << ' ' << left_justify(Str, 12); in printSymbol()
H A DMachODump.cpp1374 outs() << left_justify("segment", SegmentWidth) << ' ' in PrintDyldInfo()
1375 << left_justify("section", SectionWidth) << ' ' in PrintDyldInfo()
1376 << left_justify("address", AddressWidth) << ' ' in PrintDyldInfo()
1377 << left_justify("pointer", PointerWidth) << " type " in PrintDyldInfo()
1378 << left_justify("addend", AddendWidth) << ' ' in PrintDyldInfo()
1379 << left_justify("dylib", DylibWidth) << " symbol/vm address\n"; in PrintDyldInfo()
1381 outs() << left_justify(Entry.segmentName(), SegmentWidth) << ' ' in PrintDyldInfo()
1382 << left_justify(Entry.sectionName(), SectionWidth) << ' ' << "0x" in PrintDyldInfo()
1383 << left_justify(utohexstr(Entry.address()), AddressWidth - 2) << ' ' in PrintDyldInfo()
1387 << "0x" << left_justify(utohexstr(Entry.addend()), AddendWidth - 2) in PrintDyldInfo()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/TargetParser/
H A DAArch64TargetParser.cpp166 << " " << left_justify("Name", 20) in PrintSupportedExtensions()
167 << left_justify("Architecture Feature(s)", 55) in PrintSupportedExtensions()
184 << " " << left_justify("Architecture Feature(s)", 55) in printEnabledExtensions()
H A DRISCVISAInfo.cpp79 outs() << left_justify(Name, 21) << left_justify(Version, VersionWidth) in PrintExtension()
H A DARMTargetParser.cpp653 << " " << left_justify("Name", 20) in PrintSupportedExtensions()
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A DSectionSizes.cpp61 OS << left_justify(It.first, NameColWidth) << " "; in prettyPrintSectionSizes()
/freebsd/contrib/llvm-project/lld/COFF/
H A DMapFile.cpp187 os << left_justify(sym->getName(), 26); in getSymbolStrings()
282 os << " " << left_justify(cr.first->getSectionName(), 23); in writeMapFile()
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILResource.cpp235 OS << "; " << left_justify(Name, 31); in print()
257 OS << "; " << left_justify(Name, 31); in print()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineScheduler.cpp1024 dbgs() << llvm::left_justify("Cycle", HeaderColWidth); in dumpScheduleTraceTopDown()
1026 dbgs() << llvm::left_justify("| " + std::to_string(C), ColWidth); in dumpScheduleTraceTopDown()
1037 dbgs() << llvm::left_justify(NodeName, HeaderColWidth); in dumpScheduleTraceTopDown()
1041 dbgs() << llvm::left_justify("| i", ColWidth); in dumpScheduleTraceTopDown()
1043 dbgs() << llvm::left_justify("|", ColWidth); in dumpScheduleTraceTopDown()
1066 dbgs() << llvm::left_justify("|", ColWidth); in dumpScheduleTraceTopDown()
1070 dbgs() << llvm::left_justify("| x", ColWidth); in dumpScheduleTraceTopDown()
1072 dbgs() << llvm::left_justify("|", ColWidth); in dumpScheduleTraceTopDown()
1106 dbgs() << llvm::left_justify("Cycle", HeaderColWidth); in dumpScheduleTraceBottomUp()
1108 dbgs() << llvm::left_justify("| " + std::to_string(C), ColWidth); in dumpScheduleTraceBottomUp()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormat.h146 inline FormattedString left_justify(StringRef Str, unsigned Width) {
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDebugCounter.cpp211 OS << left_justify(RegisteredCounters[CounterID], 32) << ": {" in print()
/freebsd/contrib/llvm-project/lld/ELF/
H A DMapFile.cpp238 os << left_justify(a, 49) << ' ' << b << '\n'; in writeCref()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnitIndex.cpp226 << left_justify(Name, in dump()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/
H A DObjectFileWasm.cpp461 ostream << llvm::left_justify(sh.name.GetStringRef(), 16) << " " in DumpSectionHeader()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DXCOFFDumper.cpp968 OS << left_justify("BASE", BaseWidth) << " MEMBER\n"; in printNeededLibraries()
974 OS << " " << left_justify(CurrentStr, BaseWidth) << " "; in printNeededLibraries()
H A DELFDumper.cpp5078 OS << left_justify("(" + std::string(Versions[VersymRow + I]) + ")", 13); in printVersionSymbolSection()
6190 OS << " " << left_justify(Name, 20) << ' ' in printNotes()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp1292 << left_justify(getOpcodeString((Matcher::KindTy)i), HistOpcWidth) in EmitHistogram()
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp855 outs() << left_justify(Name, 20) << "|" << SymbolAddrStr << "| " in printSymbolList()