HomeSort by: relevance | last modified time | path
    Searched refs:format_decimal (Results 1 - 11 of 11) sorted by relevancy

  /src/external/bsd/libarchive/dist/libarchive/
archive_write_set_format_ar.c 83 static int format_decimal(int64_t v, char *p, int s);
274 if (format_decimal(ss - ar->strtab,
298 if (format_decimal(strlen(filename),
311 if (format_decimal(archive_entry_mtime(entry), buff + AR_date_offset, AR_date_size)) {
316 if (format_decimal(archive_entry_uid(entry), buff + AR_uid_offset, AR_uid_size)) {
321 if (format_decimal(archive_entry_gid(entry), buff + AR_gid_offset, AR_gid_size)) {
342 if (format_decimal(size, buff + AR_size_offset, AR_size_size)) {
515 format_decimal(int64_t v, char *p, int s) function
  /src/external/apache2/llvm/dist/llvm/lib/MCA/
Support.cpp 75 LLVM_DEBUG(dbgs() << '[' << format_decimal(I,2) << "] " << " - "
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
DAGISelMatcherEmitter.cpp 390 OS << "/*" << format_decimal(CurrentIdx, IndexWidth) << "*/";
414 OS << "/*" << format_decimal(CurrentIdx, IndexWidth) << "*/";
541 OS << "/*" << format_decimal(CurrentIdx, IndexWidth) << "*/";
566 OS << "/*" << format_decimal(CurrentIdx, IndexWidth) << "*/";
876 OS << "/*" << format_decimal(CurrentIdx, IndexWidth) << "*/";
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Format.h 163 /// This is a helper class used for format_hex() and format_decimal().
205 /// format_decimal - Output \p N as a right justified, fixed-width decimal. If
207 /// OS << format_decimal(0, 5) => " 0"
208 /// OS << format_decimal(255, 5) => " 255"
209 /// OS << format_decimal(-1, 3) => " -1"
210 /// OS << format_decimal(12345, 3) => "12345"
211 inline FormattedNumber format_decimal(int64_t N, unsigned Width) { function in namespace:llvm
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
DIPrinter.cpp 97 OS << format_decimal(L, MaxLineNumberWidth);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
ELFDump.cpp 319 outs() << format_decimal(VerdefIndex++, VerdefIndexWidth) << " "
MachODump.cpp 10380 << format_decimal(Entry.addend(), 8) << " "
10438 << format_decimal(Entry.addend(), 8) << " " << Entry.symbolName()
  /src/external/apache2/llvm/dist/llvm/tools/llvm-opt-report/
OptReport.cpp 394 OS << llvm::format_decimal(L, LNDigits) << " ";
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ELFDumper.cpp 3380 << format_decimal(G.Index, 5) << "] `" << G.Name << "' [" << G.Signature
3392 OS << " [" << format_decimal(GM.Index, 5) << "] " << GM.Name << "\n";
3691 return to_string(format_decimal(*IndexOrErr, 3));
3709 return to_string(format_decimal(SectionIndex, 3));
3722 Fields[0].Str = to_string(format_decimal(SymIndex, 6)) + ":";
3725 Fields[2].Str = to_string(format_decimal(Symbol.st_size, 5));
3774 Fields[0].Str = to_string(format_decimal(SymIndex, 5));
3775 Fields[1].Str = to_string(format_decimal(Bucket, 3)) + ":";
3779 Fields[3].Str = to_string(format_decimal(Symbol->st_size, 5));
4759 Fields[0].Str = to_string(format_decimal(++SymIndex, 6)) + ":"
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
MachODebugMapParser.cpp 259 OS << '[' << format_decimal(Index, 6)
  /src/external/apache2/llvm/dist/llvm/utils/FileCheck/
FileCheck.cpp 647 << format_decimal(Line, LabelWidth) << ": ";

Completed in 50 milliseconds