/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" 26 Binary::~Binary() { 30 Binary::Binary(unsigned int Type, MemoryBuffer *Source) 34 StringRef Binary::getData() const { 38 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(); // = 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...] |
/external/llvm/tools/llc/ |
llc.cpp | 178 // Decide if we need "binary" output. 179 bool Binary = false; 186 Binary = true; 193 if (Binary) OpenFlags |= raw_fd_ostream::F_Binary;
|
/external/llvm/lib/Target/ARM/ |
ARMAsmBackend.cpp | 307 uint32_t Binary = 0; 309 Binary = (Value & 0x7ff) << 16; // Low imm11 value. 310 Binary |= (Value & 0x1ffc00) >> 11; // High imm10 value. 311 Binary |= isNeg << 10; // Sign bit. 312 return Binary; 325 uint32_t Binary = 0; 327 Binary = (Value & 0x3ff) << 17; // Low imm10L value. 328 Binary |= (Value & 0xffc00) >> 10; // High imm10H value. 329 Binary |= isNeg << 10; // Sign bit. 330 return Binary; [all...] |
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 265 uint32_t Binary; 266 Binary = Imm12 & 0xfff; 268 Binary |= (1 << 12); 269 Binary |= (Reg << 13); 270 return Binary; 309 uint32_t Binary = 0 [all...] |
ARMMCCodeEmitter.cpp | 65 // binary encoding for an instruction. 69 /// getMachineOpValue - Return binary encoding of operand. If the machine 227 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1) 231 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal); 232 return Binary; 399 /// getMachineOpValue - Return binary encoding of operand. If the machine 652 uint32_t Binary = Imm12 & 0xfff; 655 Binary |= (1 << 12); 656 Binary |= (Reg << 13); 657 return Binary; [all...] |
/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/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 */
|
/external/dropbear/libtommath/ |
bn.tex | [all...] |
/external/llvm/include/llvm/MC/ |
MCExpr.h | 35 Binary, ///< Binary expressions. 281 /// MCBinaryExpr - Binary assembler expressions. 314 : MCExpr(MCExpr::Binary), Op(_Op), LHS(_LHS), RHS(_RHS) {} 399 /// getOpcode - Get the kind of this binary expression. 402 /// getLHS - Get the left-hand side expression of the binary operator. 405 /// getRHS - Get the right-hand side expression of the binary operator. 411 return E->getKind() == MCExpr::Binary;
|