HomeSort by relevance Sort by last modified time
    Searched defs:Binary (Results 1 - 24 of 24) sorted by null

  /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...]
  /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/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 13 (* variant for a binary operator. *)
14 | Binary of char * expr * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 16 (* variant for a binary operator. *)
17 | Binary of char * expr * expr
token.ml 22 | Binary | Unary
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 16 (* variant for a binary operator. *)
17 | Binary of char * expr * expr
token.ml 22 | Binary | Unary
  /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/AArch64/MCTargetDesc/
AArch64MCCodeEmitter.cpp 83 // binary encoding for an instruction.
87 /// getMachineOpValue - Return binary encoding of operand. If the machine
496 uint32_t Binary = getBinaryCodeForInstr(MI, Fixups);
498 EmitInstruction(Binary, OS);
  /external/llvm/lib/Target/Mips/MCTargetDesc/
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...]
  /external/llvm/tools/llc/
llc.cpp 133 // Decide if we need "binary" output.
134 bool Binary = false;
140 Binary = true;
147 if (Binary) OpenFlags |= raw_fd_ostream::F_Binary;
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 44 Binary
  /external/chromium/testing/gmock/test/
gmock-more-actions_test.cc 4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
108 const char* Binary(const char* input, short n) { return input + n; } // NOLINT
188 string Binary(const string& str, char c) const { return str + c; }
245 // Tests using Invoke() with a binary function.
246 TEST(InvokeTest, Binary) {
247 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
376 // Tests using Invoke() with a binary method.
377 TEST(InvokeMethodTest, Binary) {
379 Action<string(const string&, char)> a = Invoke(&foo, &Foo::Binary);
    [all...]
gmock-actions_test.cc 4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
    [all...]
gmock-generated-actions_test.cc 4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
95 const char* Binary(const char* input, short n) { return input + n; } // NOLINT
250 EXPECT_STREQ("i", a.Perform(make_tuple(&Binary)));
258 EXPECT_STREQ("i", a.Perform(make_tuple(&Binary)));
294 WithArgs<0, 2>(Invoke(Binary));
399 WithArgs<1, 0>(Invoke(Binary));
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
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...]
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...]
  /frameworks/compile/mclinker/tools/llvm-mcld/
llvm-mcld.cpp 721 Binary,
732 clEnumValN(format::Binary, "binary",
733 "read in binary machine code."),
747 clEnumValN(format::Binary, "binary",
748 "generate binary machine code."),
1005 else if (format::Binary == ArgOFormat) {
1010 if (format::Binary == ArgFormat)
    [all...]
  /external/dropbear/libtommath/
bn.tex     [all...]
  /external/llvm/include/llvm/MC/
MCExpr.h 34 Binary, ///< Binary expressions.
323 /// MCBinaryExpr - Binary assembler expressions.
356 : MCExpr(MCExpr::Binary), Op(_Op), LHS(_LHS), RHS(_RHS) {}
441 /// getOpcode - Get the kind of this binary expression.
444 /// getLHS - Get the left-hand side expression of the binary operator.
447 /// getRHS - Get the right-hand side expression of the binary operator.
453 return E->getKind() == MCExpr::Binary;
  /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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar 

Completed in 438 milliseconds