| /freebsd/contrib/llvm-project/libc/src/__support/ |
| H A D | integer_to_string.h | 81 struct Fmt { struct 88 using WithPrefix = Fmt<BASE, true, FORCE_SIGN, IS_UPPERCASE, MIN_DIGITS>; argument 89 using WithSign = Fmt<BASE, PREFIX, true, IS_UPPERCASE, MIN_DIGITS>; argument 90 using Uppercase = Fmt<BASE, PREFIX, FORCE_SIGN, true, MIN_DIGITS>; argument 92 using WithWidth = Fmt<BASE, PREFIX, FORCE_SIGN, IS_UPPERCASE, value>; argument 95 static constexpr uint8_t NUMERICAL_DIGITS = 10; 96 static constexpr uint8_t ALPHA_DIGITS = 26; 97 static constexpr uint8_t MAX_DIGIT = NUMERICAL_DIGITS + ALPHA_DIGITS;
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | FormatVariadic.h | 72 formatv_object_base(StringRef Fmt, in formatv_object_base() 148 formatv_object(StringRef Fmt, Tuple &&Params, bool Validate) in formatv_object() 253 inline auto formatv(bool Validate, const char *Fmt, Ts &&...Vals) { in formatv() 260 template <typename... Ts> inline auto formatv(const char *Fmt, Ts &&...Vals) { in formatv()
|
| H A D | Error.h | 1305 inline Error createStringError(std::error_code EC, char const *Fmt, in createStringError() 1328 inline Error createStringError(char const *Fmt, const Ts &...Vals) { in createStringError() 1333 inline Error createStringError(std::errc EC, char const *Fmt, in createStringError() 1433 char const *Fmt, const Ts &...Vals) { in createFileError()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | ELFDump.cpp | 132 raw_string_ostream Fmt(FmtBuf); in getRelocationValueString() local 239 const char *Fmt = in printDynamicSection() local 331 const char *Fmt = ELFT::Is64Bits ? "0x%016" PRIx64 " " : "0x%08" PRIx64 " "; in printProgramHeaders() local 364 StringRef Fmt = Obj.getBytesInAddress() > 4 ? "%016" PRIx64 : "%08" PRIx64; in printDynamicRelocations() local
|
| H A D | WasmDump.cpp | 50 raw_string_ostream Fmt(FmtBuf); in getWasmRelocationValueString() local
|
| H A D | COFFDump.cpp | 100 auto print = [](const char *K, auto V, const char *Fmt = "%d\n") { in printPEHeader() 104 const char *Fmt = "%d\n") { print(K, uint16_t(V), Fmt); }; in printPEHeader() 106 const char *Fmt = "%d\n") { print(K, uint32_t(V), Fmt); }; in printPEHeader()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | FormatVariadic.cpp | 93 splitLiteralAndReplacement(StringRef Fmt) { in splitLiteralAndReplacement() 142 formatv_object_base::parseFormatString(StringRef Fmt, size_t NumArgs, in parseFormatString()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Serialization/ |
| H A D | PCHContainerOperations.h | 102 for (llvm::StringRef Fmt : Reader->getFormats()) in registerReader() local
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerIO.cpp | 159 void Printf(const char *Fmt, ...) { in Printf() 167 void VPrintf(bool Verbose, const char *Fmt, ...) { in VPrintf()
|
| /freebsd/sys/contrib/dev/acpica/compiler/ |
| H A D | asldebug.c | 189 char *Fmt, in CvDbgPrint()
|
| H A D | aslutils.c | 563 char *Fmt, in DbgPrint()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | LinePrinter.h | 64 template <typename... Ts> void formatLine(const char *Fmt, Ts &&...Items) { in formatLine() 67 template <typename... Ts> void format(const char *Fmt, Ts &&...Items) { in format()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/ |
| H A D | llvm-debuginfo-analyzer.cpp | 31 static void error(std::error_code EC, char const *Fmt, const Ts &...Vals) { in error()
|
| /freebsd/contrib/llvm-project/llvm/tools/lli/ |
| H A D | ExecutionUtils.cpp | |
| /freebsd/sys/contrib/dev/acpica/os_specific/service_layers/ |
| H A D | osunixxf.c | 533 const char *Fmt, in AcpiOsPrintf() 587 const char *Fmt, in AcpiOsVprintf()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | AMDGPUEmitPrintf.cpp | 223 IRBuilder<> &Builder, ArrayRef<Value *> Args, Value *Fmt, in callBufferedPrintfStart() 431 auto Fmt = Args[0]; in emitAMDGPUPrintfCall() local
|
| H A D | BuildLibCalls.cpp | 1769 Value *llvm::emitSNPrintf(Value *Dest, Value *Size, Value *Fmt, in emitSNPrintf() 1782 Value *llvm::emitSPrintf(Value *Dest, Value *Fmt, in emitSPrintf() 1829 Value *llvm::emitVSNPrintf(Value *Dest, Value *Size, Value *Fmt, Value *VAList, in emitVSNPrintf() 1840 Value *llvm::emitVSPrintf(Value *Dest, Value *Fmt, Value *VAList, in emitVSPrintf()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | CallingConvEmitter.cpp | 189 const char *Fmt = " State.getMachineFunction().getDataLayout()." in emitAction() local
|
| H A D | GICombinerEmitter.cpp | |
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFContext.h | 418 std::error_code EC, char const *Fmt, in checkAddressSizeSupported()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPrintfRuntimeBinding.cpp | 84 SmallVectorImpl<char> &OpConvSpecifiers, StringRef Fmt, in getConversionSpecifiers()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | Twine.h | 329 /*implicit*/ Twine(const formatv_object_base &Fmt) in Twine()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | VerifyDiagnosticConsumer.cpp | 883 SmallString<256> Fmt; in PrintUnexpected() local 917 SmallString<256> Fmt; in PrintExpected() local
|
| H A D | InitPreprocessor.cpp | 193 auto Emitter = [&](char Fmt) { in DefineFmt()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | RDFRegisters.cpp | 267 const char *Fmt = Idx < 0x10000 ? "%04x" : "%08x"; in print() local
|