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/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, MemoryBufferRef Source)
33 StringRef Binary::getData() const { return Data.getBuffer(); }
35 StringRef Binary::getFileName() const { return Data.getBufferIdentifier();
    [all...]
Android.mk 5 Binary.cpp \
  /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/Target/Hexagon/MCTargetDesc/
HexagonMCCodeEmitter.cpp 43 void emitLittleEndian(uint64_t Binary, raw_ostream &OS) {
44 OS << static_cast<uint8_t>((Binary >> 0x00) & 0xff);
45 OS << static_cast<uint8_t>((Binary >> 0x08) & 0xff);
46 OS << static_cast<uint8_t>((Binary >> 0x10) & 0xff);
47 OS << static_cast<uint8_t>((Binary >> 0x18) & 0xff);
58 uint64_t Binary = getBinaryCodeForInstr(MI, Fixups, STI) | getPacketBits(MI);
62 emitLittleEndian(Binary, OS);
  /external/llvm/tools/obj2yaml/
obj2yaml.cpp 35 ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(File);
39 Binary &Binary = *BinaryOrErr.get().getBinary();
41 if (ObjectFile *Obj = dyn_cast<ObjectFile>(&Binary))
  /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() = delete;
32 Binary(const Binary &other) = delete;
39 Binary(unsigned int Type, MemoryBufferRef Source);
78 virtual ~Binary();
126 /// @brief Create a Binary from Source, autodetecting the file type
    [all...]
MachOUniversal.h 21 #include "llvm/Object/Binary.h"
29 class MachOUniversalBinary : public Binary {
36 /// \brief Index of object in the universal binary.
107 static inline bool classof(Binary const *V) {
Archive.h 19 #include "llvm/Object/Binary.h"
51 class Archive : public Binary {
104 ErrorOr<std::unique_ptr<Binary>>
201 static inline bool classof(Binary const *v) {
IRObjectFile.h 54 static inline bool classof(const Binary *v) {
  /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
lexer.ml 52 | "binary" -> [< 'Token.Binary; stream >]
  /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;
526 /// getMachineOpValue - Return binary encoding of operand. If the machine
    [all...]
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.h 77 /// universal binary (or the binary itself if it is an object file).
78 ObjectFile *getObjectFileFromBinary(Binary *Bin, const std::string &ArchName);
83 SmallVector<std::unique_ptr<Binary>, 4> ParsedBinariesAndObjects;
85 void addOwningBinary(OwningBinary<Binary> OwningBin) {
86 std::unique_ptr<Binary> Bin;
  /external/llvm/tools/llvm-readobj/
llvm-readobj.cpp 309 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = ArcI->getAsBinary();
324 /// @brief Dumps each object file in \a MachO Universal Binary;
345 // Attempt to open the binary.
346 ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(File);
351 Binary &Binary = *BinaryOrErr.get().getBinary();
353 if (Archive *Arc = dyn_cast<Archive>(&Binary))
356 dyn_cast<MachOUniversalBinary>(&Binary))
358 else if (ObjectFile *Obj = dyn_cast<ObjectFile>(&Binary))
  /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 31 enum CodeGenType { Unknown, Object, DynObj, Exec, External, 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/google-breakpad/src/testing/test/
gmock-spec-builders_test.cc 4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
143 MOCK_METHOD2(Binary, bool(int x, int y)); // NOLINT
922 ON_CALL(a, Binary(_, _))
924 EXPECT_TRUE(a.Binary(1, 2));
937 ON_CALL(a, Binary(_, _))
939 EXPECT_CALL(a, Binary(0, 0));
940 a.Binary(0, 0);
942 EXPECT_NONFATAL_FAILURE(result = a.Binary(1, 2),
1124 ON_CALL(a, Binary(_, _)
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 13 (* variant for a binary operator. *)
14 | Binary of char * expr * expr

Completed in 575 milliseconds

1 2 3 4 5 6