Searched defs:Fmt (Results 1 - 4 of 4) sorted by relevance

/external/llvm/tools/llvm-objdump/
H A DELFDump.cpp56 const char *Fmt = ELFT::Is64Bits ? "0x%016" PRIx64 " " : "0x%08" PRIx64 " "; local
59 << format(Fmt, (uint64_t)pi->p_offset)
61 << format(Fmt, (uint64_t)pi->p_vaddr)
63 << format(Fmt, (uint64_t)pi->p_paddr)
66 << format(Fmt, (uint64_t)pi->p_filesz)
68 << format(Fmt, (uint64_t)pi->p_memsz)
H A Dllvm-objdump.cpp393 StringRef Fmt = Obj->getBytesInAddress() > 4 ? "\t\t%016" PRIx64 ": " : local
550 outs() << format(Fmt.data(), SectionAddr + addr) << name
562 StringRef Fmt = Obj->getBytesInAddress() > 4 ? "%016" PRIx64 : local
586 outs() << format(Fmt.data(), address) << " " << relocname << " "
772 const char *Fmt = o->getBytesInAddress() > 4 ? "%016" PRIx64 : local
775 outs() << format(Fmt, Address) << " "
/external/llvm/include/llvm/Support/
H A DFormat.h43 const char *Fmt; member in class:llvm::format_object_base
50 format_object_base(const char *fmt) : Fmt(fmt) {}
90 return snprintf(Buffer, BufferSize, Fmt, Val);
104 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2);
119 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2, Val3);
136 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2, Val3, Val4);
155 return snprintf(Buffer, BufferSize, Fmt, Val1, Val2, Val3, Val4, Val5);
169 format_object6(const char *Fmt, const T1 &Val1, const T2 &Val2, argument
171 : format_object_base(Fmt), Val1(Val1), Val2(Val2), Val3(Val3), Val4(Val4),
175 return snprintf(Buffer, BufferSize, Fmt, Val
189 format(const char *Fmt, const T &Val) argument
194 format(const char *Fmt, const T1 &Val1, const T2 &Val2) argument
200 format(const char *Fmt, const T1 &Val1, const T2 &Val2, const T3 &Val3) argument
206 format(const char *Fmt, const T1 &Val1, const T2 &Val2, const T3 &Val3, const T4 &Val4) argument
213 format(const char *Fmt,const T1 &Val1, const T2 &Val2, const T3 &Val3, const T4 &Val4, const T5 &Val5) argument
222 format(const char *Fmt, const T1 &Val1, const T2 &Val2, const T3 &Val3, const T4 &Val4, const T5 &Val5, const T6 &Val6) argument
[all...]
/external/llvm/lib/Support/
H A Draw_ostream.cpp357 raw_ostream &raw_ostream::operator<<(const format_object_base &Fmt) { argument
363 size_t BytesUsed = Fmt.print(OutBufCur, BufferBytesLeft);
385 size_t BytesUsed = Fmt.print(V.data(), NextBufferSize);

Completed in 342 milliseconds