HomeSort by relevance Sort by last modified time
    Searched refs:Binary (Results 1 - 25 of 83) 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(); // = delete
30 Binary(const Binary &other); // = delete
37 Binary(unsigned int Type, MemoryBuffer *Source);
51 virtual ~Binary();
58 static inline bool classof(const Binary *v) { return true;
    [all...]
Archive.h 17 #include "llvm/Object/Binary.h"
24 class Archive : public Binary {
47 error_code getAsBinary(OwningPtr<Binary> &Result) const;
79 static inline bool classof(Binary const *v) {
80 return v->getType() == Binary::isArchive;
  /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
267 uint32_t Binary;
268 Binary = Imm12 & 0xfff;
270 Binary |= (1 << 12);
271 Binary |= (Reg << 13);
272 return Binary;
313 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...]
Archive.cpp 126 error_code Archive::Child::getAsBinary(OwningPtr<Binary> &Result) const {
127 OwningPtr<Binary> ret;
136 : Binary(Binary::isArchive, source)
ObjectFile.cpp 25 : Binary(Type, source) {
  /external/clang/include/clang/Basic/
OperatorKinds.h 23 #define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCCodeEmitter.cpp 66 // binary encoding for an instruction.
70 /// getMachineOpValue - Return binary encoding of operand. If the machine
244 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
248 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
249 return Binary;
399 /// getMachineOpValue - Return binary encoding of operand. If the machine
736 uint32_t Binary = Imm12 & 0xfff;
739 Binary |= (1 << 12);
740 Binary |= (Reg << 13);
741 return Binary;
    [all...]
ARMAsmBackend.cpp 321 uint32_t Binary = 0;
323 Binary = (Value & 0x7ff) << 16; // Low imm11 value.
324 Binary |= (Value & 0x1ffc00) >> 11; // High imm10 value.
325 Binary |= isNeg << 10; // Sign bit.
326 return Binary;
339 uint32_t Binary = 0;
341 Binary = (Value & 0x3ff) << 17; // Low imm10L value.
342 Binary |= (Value & 0xffc00) >> 10; // High imm10H value.
343 Binary |= isNeg << 10; // Sign bit.
344 return Binary;
    [all...]
ARMMCExpr.cpp 54 case MCExpr::Binary: {
  /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/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/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/clang/include/clang/Frontend/
CompilerInstance.h 559 createDefaultOutputFile(bool Binary = true, StringRef BaseInput = "",
568 bool Binary = true, bool RemoveFileOnSignal = true,
586 /// \param Binary - The mode to open the file in.
598 bool Binary = true, bool RemoveFileOnSignal = true,
  /external/icu4c/tools/genbidi/
genbidi.c 18 * It then writes a binary file containing the properties
198 /* parse files with multiple binary properties ------------------------------ */
204 struct Binary {
209 typedef struct Binary Binary;
213 const Binary *binaries;
218 static const Binary
246 /* parse binary property name */
348 "create a binary file " UBIDI_DATA_NAME "." UBIDI_DATA_TYPE " with the bidi/shaping properties\n"
357 "\t-C or --csource generate a .c source file rather than the .icu binary\n")
    [all...]
  /external/icu4c/tools/gencase/
gencase.c 18 * It then writes a binary file containing the properties
66 /* parse files with multiple binary properties ------------------------------ */
72 struct Binary {
77 typedef struct Binary Binary;
81 const Binary *binaries;
86 static const Binary
96 static const Binary
110 * Treat Word_Break=MidLetter and MidNumLet as a single binary property.
114 static const Binary
    [all...]
  /external/icu4c/tools/genprops/
props2.c 236 /* parse files with multiple binary properties ------------------------------ */
238 struct Binary {
242 typedef struct Binary Binary;
246 const Binary *binaries;
251 static const Binary
286 static const Binary
347 /* parse binary property name */

Completed in 553 milliseconds

1 2 3 4