Searched defs:Binary (Results 1 - 25 of 49) sorted by relevance

12

/external/llvm/lib/Object/
H A DBinary.cpp1 //===- Binary.cpp - A generic binary file -----------------------*- C++ -*-===//
10 // This file defines the Binary class.
14 #include "llvm/Object/Binary.h"
28 Binary::~Binary() {}
30 Binary::Binary(unsigned int Type, MemoryBufferRef Source) function in class:Binary
33 StringRef Binary::getData() const { return Data.getBuffer(); }
35 StringRef Binary::getFileName() const { return Data.getBufferIdentifier(); }
37 MemoryBufferRef Binary
[all...]
/external/swiftshader/third_party/LLVM/lib/Object/
H A DBinary.cpp1 //===- Binary.cpp - A generic binary file -----------------------*- C++ -*-===//
10 // This file defines the Binary class.
14 #include "llvm/Object/Binary.h"
27 Binary::~Binary() {
31 Binary::Binary(unsigned int Type, MemoryBuffer *Source) function in class:Binary
35 StringRef Binary::getData() const {
39 StringRef Binary::getFileName() const {
44 OwningPtr<Binary>
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml14 | Binary of char * expr * expr Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml14 | Binary of char * expr * expr Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml14 | Binary of char * expr * expr Constructor in type:expr
/external/llvm/unittests/ObjectYAML/
H A DYAMLTest.cpp17 yaml::BinaryRef Binary; member in struct:BinaryHolder
25 IO.mapRequired("Binary", BH.Binary);
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
H A Dast.ml14 | Binary of char * expr * expr Constructor in type:expr
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
H A Dast.ml14 | Binary of char * expr * expr Constructor in type:expr
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
H A Dast.ml14 | Binary of char * expr * expr Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dast.ml14 | Binary of char * expr * expr Constructor in type:expr
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dast.ml17 | Binary of char * expr * expr Constructor in type:expr
H A Dtoken.ml22 | Binary | Unary Constructor in type:token
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml17 | Binary of char * expr * expr Constructor in type:expr
H A Dtoken.ml22 | Binary | Unary Constructor in type:token
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
H A Dast.ml14 | Binary of char * expr * expr Constructor in type:expr
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
H A Dast.ml17 | Binary of char * expr * expr Constructor in type:expr
H A Dtoken.ml22 | Binary | Unary Constructor in type:token
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
H A Dast.ml17 | Binary of char * expr * expr Constructor in type:expr
H A Dtoken.ml22 | Binary | Unary Constructor in type:token
/external/swiftshader/third_party/LLVM/include/llvm/Object/
H A DBinary.h1 //===- Binary.h - A generic binary file -------------------------*- C++ -*-===//
10 // This file declares the Binary class.
27 class Binary { class in namespace:llvm::object
29 Binary(); // = delete
30 Binary(const Binary &other); // = delete
37 Binary(unsigned int Type, MemoryBuffer *Source);
51 virtual ~Binary();
58 static inline bool classof(const Binary *v) { return true; }
61 error_code createBinary(MemoryBuffer *Source, OwningPtr<Binary>
[all...]
/external/swiftshader/third_party/LLVM/tools/llc/
H A Dllc.cpp195 bool Binary = false; local
202 Binary = true;
209 if (Binary) OpenFlags |= raw_fd_ostream::F_Binary;
/external/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp440 Expected<std::unique_ptr<Binary>> ChildOrErr = Child.getAsBinary();
460 /// @brief Dumps each object file in \a MachO Universal Binary;
482 Expected<OwningBinary<Binary>> BinaryOrErr = createBinary(File);
485 Binary &Binary = *BinaryOrErr.get().getBinary(); local
487 if (Archive *Arc = dyn_cast<Archive>(&Binary))
490 dyn_cast<MachOUniversalBinary>(&Binary))
492 else if (ObjectFile *Obj = dyn_cast<ObjectFile>(&Binary))
494 else if (COFFImportFile *Import = dyn_cast<COFFImportFile>(&Binary))
/external/llvm/include/llvm/Object/
H A DBinary.h1 //===- Binary.h - A generic binary file -------------------------*- C++ -*-===//
10 // This file declares the Binary class.
29 class Binary { class in namespace:llvm::object
31 Binary() = delete;
32 Binary(const Binary &other) = delete;
39 Binary(unsigned int Type, MemoryBufferRef Source);
80 virtual ~Binary();
134 /// @brief Create a Binary from Source, autodetecting the file type.
136 /// @param Source The data to create the Binary fro
[all...]
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCCodeEmitter.cpp551 uint64_t Binary = getBinaryCodeForInstr(MI, Fixups, STI); local
552 support::endian::Writer<support::little>(OS).write<uint32_t>(Binary);
/external/llvm/tools/llc/
H A Dllc.cpp188 bool Binary = false; local
194 Binary = true;
201 if (!Binary)

Completed in 394 milliseconds

12