/external/llvm/tools/llvm-objdump/ |
llvm-objdump.cpp | 504 StringRef Contents; 512 outs() << "Contents of section " << Name << ":\n"; 514 outs() << format("<skipping contents of bss section at [%04" PRIx64 520 if (error(Section.getContents(Contents))) 524 for (std::size_t addr = 0, end = Contents.size(); addr < end; addr += 16) { 531 outs() << hexdigit((Contents[addr + i] >> 4) & 0xF, true) 532 << hexdigit(Contents[addr + i] & 0xF, true); 539 if (std::isprint(static_cast<unsigned char>(Contents[addr + i]) & 0xFF)) 540 outs() << Contents[addr + i];
|
MachODump.cpp | 103 cl::desc("Have -section dump the raw binary contents")); 889 const char *Contents = reinterpret_cast<const char *>(BytesStr.data()); 893 for (uint64_t i = lp - SectAddress; i < SectSize && Contents[i] != '\0'; 895 DumpCstringChar(Contents[i]); 901 memcpy(&f, Contents + (lp - SectAddress), sizeof(float)); 903 memcpy(&l, Contents + (lp - SectAddress), sizeof(uint32_t)); 912 memcpy(&d, Contents + (lp - SectAddress), sizeof(double)); 914 memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t)); 915 memcpy(&l1, Contents + (lp - SectAddress) + sizeof(uint32_t), 927 memcpy(&l0, Contents + (lp - SectAddress), sizeof(uint32_t)) [all...] |
/external/llvm/tools/llvm-readobj/ |
COFFDumper.cpp | 506 StringRef Contents = Data.substr(Offset, PayloadSize); 508 // Print the raw contents to simplify debugging if anything goes wrong 510 W.printBinaryBlock("Contents", Contents); 516 printCodeViewSymbolsSubsection(Contents, Section, Offset); 541 FunctionLineTables[FunctionName] = Contents; 547 Contents.back() != '\0') { 552 CVStringTable = Contents; 564 CVFileIndexToStringOffsetTable = Contents; 707 StringRef Contents = DE.getData().substr(Offset, Size) [all...] |
ELFDumper.cpp | [all...] |
/external/clang/lib/Basic/ |
VirtualFileSystem.cpp | 361 std::vector<Entry *> Contents; 366 DirectoryEntry(StringRef Name, std::vector<Entry *> Contents, Status S) 367 : Entry(EK_Directory, Name), Contents(std::move(Contents)), 371 iterator contents_begin() { return Contents.begin(); } 372 iterator contents_end() { return Contents.end(); } 437 /// 'contents': [ <file or directory entries> ] 456 /// 'external-contents': <path to external file>) 460 /// and inherit their attributes from the external contents. 478 /// \brief Whether to use to use the value of 'external-contents' for th [all...] |
/external/llvm/include/llvm/CodeGen/ |
ScheduleDAG.h | 78 /// Contents - A union discriminated by the dependence kind. 87 } Contents; 102 : Dep(S, kind), Contents() { 110 Contents.Reg = Reg; 114 Contents.Reg = Reg; 120 : Dep(S, Order), Contents(), Latency(0) { 121 Contents.OrdKind = kind; 131 return Contents.Reg == Other.Contents.Reg; 133 return Contents.OrdKind == Other.Contents.OrdKind [all...] |
/external/llvm/lib/MC/ |
MCAssembler.cpp | 659 /// \brief Write the contents of a fragment to the given object writer. Expects 827 // Check that contents are only things legal inside a virtual section. 833 // Check that we aren't trying to write a non-zero contents (or fixups) 835 // directives to fill the contents of virtual sections. [all...] |
ELFObjectWriter.cpp | [all...] |
/external/llvm/include/llvm/MC/ |
MCAssembler.h | 215 SmallVector<char, 32> Contents; 226 SmallVectorImpl<char> &getContents() override { return Contents; } 228 return Contents; 267 SmallVector<char, 4> Contents; 278 SmallVectorImpl<char> &getContents() override { return Contents; } 279 const SmallVectorImpl<char> &getContents() const override { return Contents; } 303 /// Contents - Binary data for the currently encoded instruction. 304 SmallVector<char, 8> Contents; 314 SmallVectorImpl<char> &getContents() override { return Contents; } 315 const SmallVectorImpl<char> &getContents() const override { return Contents; } [all...] |
/external/llvm/lib/Target/Hexagon/ |
HexagonHardwareLoops.cpp | 238 } Contents; 244 Contents.R.Reg = v; 245 Contents.R.Sub = u; 247 Contents.ImmVal = v; 255 return Contents.R.Reg; 259 return Contents.R.Sub; 263 return Contents.ImmVal; 267 if (isReg()) { OS << PrintReg(Contents.R.Reg, TRI, Contents.R.Sub); } 268 if (isImm()) { OS << Contents.ImmVal; [all...] |
/external/llvm/tools/dsymutil/ |
DwarfLinker.cpp | 594 /// \brief Emit the debug_range section contents for \p FuncRange by 633 /// if \p DoDebugRanges is true the debug_range contents for a 661 sizeof(int32_t) + // Size of contents (w/o this field [all...] |
/external/v8/include/ |
v8.h | 206 * Creates a handle for the contents of the specified handle. This 457 * and create a new one with the contents of other if other is non empty 464 * and create a new one with the contents of other if other is non empty 605 * This will clone the contents of storage cell, but not any of the flags, etc. [all...] |
/external/clang/include/clang-c/ |
Index.h | 95 * \brief Provides the contents of a file that has not yet been saved to disk. 98 * system along with the current contents of that file that have not 103 * \brief The file whose contents have not yet been saved. 110 * \brief A buffer containing the unsaved contents of this file. 112 const char *Contents; 115 * \brief The length of the unsaved contents of this buffer. 992 * Fix-its are described in terms of a source range whose contents [all...] |