HomeSort by relevance Sort by last modified time
    Searched refs:Binary (Results 1 - 25 of 132) sorted by null

1 2 3 4 5 6

  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 77 /// CodeEmitterGenerator using TableGen, produces the binary encoding for
91 void emitWordLE(unsigned Binary);
92 void emitDWordLE(uint64_t Binary);
150 /// getMachineOpValue - Return binary encoding of operand. If the machine
255 uint32_t Binary;
256 Binary = Imm12 & 0xfff;
258 Binary |= (1 << 12);
259 Binary |= (Reg << 13);
260 return Binary;
306 uint32_t Binary = Imm12 & 0xfff
    [all...]
  /external/llvm/include/llvm/Object/
Binary.h 1 //===- Binary.h - A generic binary file -------------------------*- C++ -*-===//
10 // This file declares the Binary class.
29 class Binary {
31 Binary() LLVM_DELETED_FUNCTION;
32 Binary(const Binary &other) LLVM_DELETED_FUNCTION;
39 Binary(unsigned int Type, std::unique_ptr<MemoryBuffer> Source);
78 virtual ~Binary();
126 /// @brief Create a Binary from Source, autodetecting the file type
    [all...]
MachOUniversal.h 19 #include "llvm/Object/Binary.h"
30 class MachOUniversalBinary : public Binary {
37 /// \brief Index of object in the universal binary.
102 static inline bool classof(Binary const *V) {
Archive.h 18 #include "llvm/Object/Binary.h"
47 class Archive : public Binary {
95 ErrorOr<std::unique_ptr<Binary>>
187 static inline bool classof(Binary const *v) {
IRObjectFile.h 48 static inline bool classof(const Binary *v) {
  /external/clang/include/clang/Basic/
OperatorKinds.h 24 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
  /external/llvm/unittests/MC/
YAMLTest.cpp 17 yaml::BinaryRef Binary;
25 IO.mapRequired("Binary", BH.Binary);
  /external/llvm/lib/Object/
Binary.cpp 1 //===- 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, std::unique_ptr<MemoryBuffer> Source)
33 StringRef Binary::getData() const {
37 StringRef Binary::getFileName() const
    [all...]
Android.mk 5 Binary.cpp \
  /external/llvm/tools/obj2yaml/
obj2yaml.cpp 35 ErrorOr<Binary *> BinaryOrErr = createBinary(File);
39 std::unique_ptr<Binary> Binary(BinaryOrErr.get());
41 if (ObjectFile *Obj = dyn_cast<ObjectFile>(Binary.get()))
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.h 65 typedef std::pair<Binary*, Binary*> BinaryPair;
68 /// \brief Returns pair of pointers to binary and debug binary.
71 /// universal binary (or the binary itself if it is an object file).
72 ObjectFile *getObjectFileFromBinary(Binary *Bin, const std::string &ArchName);
77 SmallVector<std::unique_ptr<Binary>, 4> ParsedBinariesAndObjects;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 22 | Binary | Unary
ast.ml 16 (* variant for a binary operator. *)
17 | Binary of char * expr * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 22 | Binary | Unary
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCCodeEmitter.cpp 67 // binary encoding for an instruction.
72 /// getMachineOpValue - Return binary encoding of operand. If the machine
299 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
303 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
304 return Binary;
506 /// getMachineOpValue - Return binary encoding of operand. If the machine
    [all...]
  /external/llvm/tools/llvm-readobj/
llvm-readobj.cpp 265 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = ArcI->getAsBinary();
289 // Attempt to open the binary.
290 ErrorOr<Binary *> BinaryOrErr = createBinary(File);
295 std::unique_ptr<Binary> Binary(BinaryOrErr.get());
297 if (Archive *Arc = dyn_cast<Archive>(Binary.get()))
299 else if (ObjectFile *Obj = dyn_cast<ObjectFile>(Binary.get()))
  /frameworks/compile/mclinker/tools/mcld/lib/
OutputFormatOptions.cpp 36 clEnumValN(mcld::LinkerConfig::Binary, "bin",
37 "Emit a binary file"),
47 clEnumValN(mcld::LinkerConfig::Binary, "binary",
48 "generate binary machine code."),
77 clEnumValN(mcld::Input::Binary, "binary",
78 "read in binary machine code."),
212 if (mcld::Input::Binary == m_Format)
260 else if (mcld::LinkerConfig::Binary == m_OFormat)
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 13 (* variant for a binary operator. *)
14 | Binary of char * expr * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 13 (* variant for a binary operator. *)
14 | Binary of char * expr * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 13 (* variant for a binary operator. *)
14 | Binary of char * expr * expr
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 39 Binary
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 53 Binary = buffer
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 53 Binary = buffer
  /external/chromium_org/third_party/WebKit/Source/platform/mhtml/
MHTMLParser.cpp 4 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions in binary form must reproduce the above
56 Binary,
171 if (encoding == "binary")
172 return Binary;
282 // If no content transfer encoding is specified, default to binary encoding.
285 contentTransferEncoding = MIMEHeader::Binary;
290 if (contentTransferEncoding == MIMEHeader::Binary) {
292 WTF_LOG_ERROR("Binary contents requires end of part");
298 WTF_LOG_ERROR("Binary contents requires end of part")
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 13 (* variant for a binary operator. *)
14 | Binary of char * expr * expr

Completed in 450 milliseconds

1 2 3 4 5 6