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

1 2 3 4

  /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);
60 virtual ~Binary();
94 /// @brief Create a Binary from Source, autodetecting the file type
    [all...]
  /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
269 uint32_t Binary;
270 Binary = Imm12 & 0xfff;
272 Binary |= (1 << 12);
273 Binary |= (Reg << 13);
274 return Binary;
315 uint32_t Binary = 0
    [all...]
  /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"
27 Binary::~Binary() {
31 Binary::Binary(unsigned int Type, MemoryBuffer *Source)
35 StringRef Binary::getData() const {
39 StringRef Binary::getFileName() const
    [all...]
Android.mk 5 Binary.cpp \
ObjectFile.cpp 27 : Binary(Type, source) {
Archive.cpp 93 error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const {
94 OwningPtr<Binary> ret;
105 : Binary(Binary::ID_Archive, source) {
  /external/clang/include/clang/Basic/
OperatorKinds.h 24 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
  /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
ast.ml 16 (* variant for a binary operator. *)
17 | Binary of char * expr * expr
lexer.ml 52 | "binary" -> [< 'Token.Binary; stream >]
  /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;
403 /// getMachineOpValue - Return binary encoding of operand. If the machine
772 uint32_t Binary = Imm12 & 0xfff;
775 Binary |= (1 << 12);
776 Binary |= (Reg << 13);
777 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/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) {
MipsMCCodeEmitter.cpp 63 // binary encoding for an instruction.
67 // getBranchJumpOpValue - Return binary encoding of the jump
73 // getBranchTargetOpValue - Return binary encoding of the branch
79 // getMachineOpValue - Return binary encoding of operand. If the machin
135 uint32_t Binary = getBinaryCodeForInstr(TmpInst, Fixups);
138 // Unfortunately in MIPS both NOP and SLL will come in with Binary == 0
141 if ((Opcode != Mips::NOP) && (Opcode != Mips::SLL) && !Binary)
151 EmitInstruction(Binary, Size, OS);
154 /// getBranchTargetOpValue - Return binary encoding of the branch
174 /// getJumpTargetOpValue - Return binary encoding of the jum
    [all...]
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 44 Binary
  /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
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCExpr.cpp 93 case MCExpr::Binary: {
159 case MCExpr::Binary: {

Completed in 496 milliseconds

1 2 3 4