Home | History | Annotate | Download | only in llvm-readobj

Lines Matching full:to_string

1213   return std::string("<unknown>: ") + to_string(format_hex(Type, 1));
2403 Str = to_string(e->e_phoff) + " (bytes into file)";
2405 Str = to_string(e->e_shoff) + " (bytes into file)";
2409 Str = to_string(e->e_ehsize) + " (bytes)";
2411 Str = to_string(e->e_phentsize) + " (bytes)";
2413 Str = to_string(e->e_phnum);
2415 Str = to_string(e->e_shentsize) + " (bytes)";
2417 Str = to_string(e->e_shnum);
2419 Str = to_string(e->e_shstrndx);
2485 Offset = to_string(format_hex_no_prefix(R.r_offset, Width));
2486 Info = to_string(format_hex_no_prefix(R.r_info, Width));
2493 Value = to_string(format_hex_no_prefix(Sym->getValue(), Width));
2647 OS << "There are " << to_string(Obj->getHeader()->e_shnum)
2667 Number = to_string(SectionIndex);
2672 Address = to_string(format_hex_no_prefix(Sec.sh_addr, Width));
2674 Offset = to_string(format_hex_no_prefix(Sec.sh_offset, 6));
2676 Size = to_string(format_hex_no_prefix(Sec.sh_size, 6));
2678 EntrySize = to_string(format_hex_no_prefix(Sec.sh_entsize, 2));
2682 Link = to_string(Sec.sh_link);
2684 Info = to_string(Sec.sh_info);
2686 Alignment = to_string(Sec.sh_addralign);
2747 to_string(format_hex_no_prefix(SectionIndex, 4)) + "]";
2751 to_string(format_hex_no_prefix(SectionIndex, 4)) + "]";
2756 to_string(format_hex_no_prefix(SectionIndex, 4)) + "]";
2758 return to_string(format_decimal(SectionIndex, 3));
2788 Num = to_string(format_decimal(Idx++, 6)) + ":";
2789 Value = to_string(format_hex_no_prefix(Symbol->st_value, Width));
2790 Size = to_string(format_decimal(Symbol->st_size, 5));
2916 Offset = to_string(format_hex(Phdr.p_offset, 8));
2917 VMA = to_string(format_hex(Phdr.p_vaddr, Width));
2918 LMA = to_string(format_hex(Phdr.p_paddr, Width));
2919 FileSz = to_string(format_hex(Phdr.p_filesz, SizeWidth));
2920 MemSz = to_string(format_hex(Phdr.p_memsz, SizeWidth));
2922 Align = to_string(format_hex(Phdr.p_align, 1));
2979 Offset = to_string(format_hex_no_prefix(R.r_offset, Width));
2980 Info = to_string(format_hex_no_prefix(R.r_info, Width));
2981 Value = to_string(format_hex_no_prefix(Sym->getValue(), Width));
2994 Addend += to_string(format_hex_no_prefix(std::abs(RelAddend), 1));