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

1 2 3 4 5 6

  /external/llvm/include/llvm/Object/
Binary.h 1 //===- Binary.h - A generic binary file -------------------------*- C++ -*-===//
10 // This file declares the Binary class.
27 class Binary {
29 Binary() LLVM_DELETED_FUNCTION;
30 Binary(const Binary &other) LLVM_DELETED_FUNCTION;
37 Binary(unsigned int Type, MemoryBuffer *Source);
74 virtual ~Binary();
113 /// @brief Create a Binary from Source, autodetecting the file type
    [all...]
MachOUniversal.h 20 #include "llvm/Object/Binary.h"
28 class MachOUniversalBinary : public Binary {
35 /// \brief Index of object in the universal binary.
91 static inline bool classof(Binary const *V) {
Archive.h 18 #include "llvm/Object/Binary.h"
46 class Archive : public Binary {
94 error_code getAsBinary(OwningPtr<Binary> &Result) const;
184 static inline bool classof(Binary const *v) {
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 75 /// CodeEmitterGenerator using TableGen, produces the binary encoding for
89 void emitWordLE(unsigned Binary);
90 void emitDWordLE(uint64_t Binary);
152 /// getMachineOpValue - Return binary encoding of operand. If the machine
271 uint32_t Binary;
272 Binary = Imm12 & 0xfff;
274 Binary |= (1 << 12);
275 Binary |= (Reg << 13);
276 return Binary;
317 uint32_t Binary = 0
    [all...]
  /external/clang/include/clang/Basic/
OperatorKinds.h 24 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
  /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"
29 Binary::~Binary() {
33 Binary::Binary(unsigned int Type, MemoryBuffer *Source)
37 StringRef Binary::getData() const {
41 StringRef Binary::getFileName() const
    [all...]
Android.mk 5 Binary.cpp \
  /external/llvm/unittests/Object/
YAMLTest.cpp 17 object::yaml::BinaryRef Binary;
25 IO.mapRequired("Binary", BH.Binary);
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.h 64 typedef std::pair<Binary*, Binary*> BinaryPair;
67 /// \brief Returns pair of pointers to binary and debug binary.
70 /// universal binary (or the binary itself if it is an object file).
71 ObjectFile *getObjectFileFromBinary(Binary *Bin, const std::string &ArchName);
76 SmallVector<Binary*, 4> ParsedBinariesAndObjects;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 22 | Binary | Unary
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 22 | Binary | Unary
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCCodeEmitter.cpp 68 // binary encoding for an instruction.
72 /// getMachineOpValue - Return binary encoding of operand. If the machine
247 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
251 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
252 return Binary;
416 /// getMachineOpValue - Return binary encoding of operand. If the machine
785 uint32_t Binary = Imm12 & 0xfff;
788 Binary |= (1 << 12);
789 Binary |= (Reg << 13);
790 return Binary;
    [all...]
ARMAsmBackend.cpp 423 uint32_t Binary = 0;
427 Binary |= secondHalf << 16;
428 Binary |= firstHalf;
429 return Binary;
454 uint32_t Binary = 0;
458 Binary |= secondHalf << 16;
459 Binary |= firstHalf;
460 return Binary;
469 uint32_t Binary = (Value - 4) >> 1;
470 return ((Binary & 0x20) << 4) | ((Binary & 0x1f) << 3)
    [all...]
ARMMCExpr.cpp 53 case MCExpr::Binary: {
  /external/chromium_org/third_party/WebKit/Source/core/platform/network/
MIMEHeader.h 4 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions in binary form must reproduce the above
50 Binary,
  /external/llvm/tools/llvm-readobj/
llvm-readobj.cpp 232 OwningPtr<Binary> child;
256 // Attempt to open the binary.
257 OwningPtr<Binary> Binary;
258 if (error_code EC = createBinary(File, Binary)) {
263 if (Archive *Arc = dyn_cast<Archive>(Binary.get()))
265 else if (ObjectFile *Obj = dyn_cast<ObjectFile>(Binary.get()))
  /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
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsBaseInfo.h 135 if (Kind == MCExpr::Binary) {
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 42 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/testing/gmock/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
142 MOCK_METHOD2(Binary, bool(int x, int y)); // NOLINT
911 ON_CALL(a, Binary(_, _))
913 EXPECT_TRUE(a.Binary(1, 2));
926 ON_CALL(a, Binary(_, _))
928 EXPECT_CALL(a, Binary(0, 0));
929 a.Binary(0, 0);
931 EXPECT_NONFATAL_FAILURE(result = a.Binary(1, 2),
1113 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 812 milliseconds

1 2 3 4 5 6