HomeSort by relevance Sort by last modified time
    Searched refs:Binary (Results 26 - 50 of 132) sorted by null

12 3 4 5 6

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 16 (* variant for a binary operator. *)
17 | Binary of char * expr * expr
lexer.ml 52 | "binary" -> [< 'Token.Binary; stream >]
  /external/llvm/include/llvm/Object/
SymbolicFile.h 17 #include "llvm/Object/Binary.h"
95 SF_Thumb = 1U << 8, // Thumb symbol in a 32-bit ARM binary
119 class SymbolicFile : public Binary {
160 static inline bool classof(const Binary *v) {
  /external/llvm/lib/Object/
MachOUniversal.cpp 1 //===- MachOUniversal.cpp - Mach-O universal binary -------------*- C++ -*-===//
47 // Universal binary headers have big-endian byte order.
108 : Binary(Binary::ID_MachOUniversalBinary, Source), NumberOfObjects(0) {
SymbolicFile.cpp 23 : Binary(Type, Source) {}
78 llvm_unreachable("Unexpected Binary File Type");
Archive.cpp 192 ErrorOr<std::unique_ptr<Binary>>
210 : Binary(Binary::ID_Archive, Source), SymbolTable(child_end()) {
  /external/nanopb-c/extra/
nanopb.mk 18 # Check whether to use binary version of nanopb_generator or the
21 # Binary package
  /system/extras/simpleperf/
read_elf.cpp 29 #include <llvm/Object/Binary.h>
102 llvm::object::Binary* binary = owning_binary.get().getBinary(); local
103 if (auto obj = llvm::dyn_cast<llvm::object::ObjectFile>(binary)) {
  /frameworks/compile/mclinker/include/mcld/MC/
Input.h 35 Binary,
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.cpp 355 ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(path);
358 OwningBinary<Binary> B = std::move(BinaryOrErr.get());
381 ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(Path);
383 OwningBinary<Binary> &B = BinaryOrErr.get();
393 // Try to locate the debug binary using .gnu_debuglink section.
402 OwningBinary<Binary> B = std::move(BinaryOrErr.get());
417 LLVMSymbolizer::getObjectFileFromBinary(Binary *Bin,
  /external/clang/include/clang/Frontend/
CompilerInstance.h 639 raw_pwrite_stream *createDefaultOutputFile(bool Binary = true,
647 raw_pwrite_stream *createOutputFile(StringRef OutputPath, bool Binary,
666 /// \param Binary - The mode to open the file in.
679 createOutputFile(StringRef OutputPath, std::error_code &Error, bool Binary,
  /external/llvm/tools/llc/
llc.cpp 140 // Decide if we need "binary" output.
141 bool Binary = false;
147 Binary = true;
154 if (!Binary)
  /external/google-breakpad/src/testing/test/
gmock-generated-function-mockers_test.cc 4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
83 virtual long Binary(short x, int y) = 0; // NOLINT
126 MOCK_METHOD2(Binary, long(short, int)); // NOLINT
193 // Tests mocking a binary function.
195 EXPECT_CALL(mock_foo_, Binary(2, _))
198 EXPECT_EQ(3, foo_->Binary(2, 1));
gmock-generated-internal-utils_test.cc 4 // Redistribution and use in source and binary forms, with or without
10 // * Redistributions in binary form must reproduce the above
94 TEST(FunctionTest, Binary) {
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; }
246 // Tests using Invoke() with a binary function.
247 TEST(InvokeTest, Binary) {
248 Action<const char*(const char*, short)> a = Invoke(Binary); // NOLINT
377 // Tests using Invoke() with a binary method.
378 TEST(InvokeMethodTest, Binary) {
380 Action<string(const string&, char)> a = Invoke(&foo, &Foo::Binary);
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCExpr.cpp 113 case MCExpr::Binary: {
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCCodeEmitter.cpp 168 uint32_t Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI);
171 // Unfortunately in MIPS both NOP and SLL will come in with Binary == 0
175 (Opcode != Mips::SLL_MM) && !Binary)
185 Binary = getBinaryCodeForInstr(TmpInst, Fixups, STI);
196 EmitInstruction(Binary, Size, STI, OS);
199 /// getBranchTargetOpValue - Return binary encoding of the branch
221 /// getBranchTarget7OpValueMM - Return binary encoding of the microMIPS branch
243 /// getBranchTargetOpValueMMPC10 - Return binary encoding of the microMIPS
265 /// getBranchTargetOpValue - Return binary encoding of the microMIPS branch
288 /// getBranchTarget21OpValue - Return binary encoding of the branc
    [all...]
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
WebSocket.java 92 } else if (frame.getOpCode() == OpCode.Text || frame.getOpCode() == OpCode.Binary) {
191 sendFrame(new WebSocketFrame(OpCode.Binary, true, payload));
  /external/llvm/include/llvm/MC/
MCExpr.h 37 Binary, ///< Binary expressions.
393 /// MCBinaryExpr - Binary assembler expressions.
426 : MCExpr(MCExpr::Binary), Op(Op), LHS(LHS), RHS(RHS) {}
511 /// getOpcode - Get the kind of this binary expression.
514 /// getLHS - Get the left-hand side expression of the binary operator.
517 /// getRHS - Get the right-hand side expression of the binary operator.
523 return E->getKind() == MCExpr::Binary;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
110 (* Parse the unary expression after the binary operator. *)
127 let lhs = Ast.Binary (c, lhs, rhs) in
139 * ::= binary LETTER number? (id, id)
148 | [< 'Token.Binary >] -> "binary", 2
  /external/llvm/tools/macho-dump/
macho-dump.cpp 406 ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(InputFile);
409 Binary &Binary = *BinaryOrErr.get().getBinary();
411 const MachOObjectFile *InputObject = dyn_cast<MachOObjectFile>(&Binary);
  /external/llvm/tools/llvm-cxxdump/
llvm-cxxdump.cpp 510 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = ArcC.getAsBinary();
532 // Attempt to open the binary.
533 ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(File);
538 Binary &Binary = *BinaryOrErr.get().getBinary();
540 if (Archive *Arc = dyn_cast<Archive>(&Binary))
542 else if (ObjectFile *Obj = dyn_cast<ObjectFile>(&Binary))
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 807 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = i->getAsBinary();
839 // Attempt to open the binary.
840 ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(file);
845 Binary &Binary = *BinaryOrErr.get().getBinary();
847 if (Archive *a = dyn_cast<Archive>(&Binary))
849 else if (ObjectFile *o = dyn_cast<ObjectFile>(&Binary))
  /external/llvm/tools/llvm-size/
llvm-size.cpp 438 // Attempt to open the binary.
439 ErrorOr<OwningBinary<Binary>> BinaryOrErr = createBinary(file);
444 Binary &Bin = *BinaryOrErr.get().getBinary();
451 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = i->getAsBinary();
477 // Look for a slice in the universal binary that matches each ArchFlag.
513 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = i->getAsBinary();
590 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = i->getAsBinary();
654 ErrorOr<std::unique_ptr<Binary>> ChildOrErr = i->getAsBinary();
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
basic.rb 48 lexer grammar Binary;
60 lexer = Binary::Lexer.new( '01' )
73 lexer = Binary::Lexer.new( '2' )

Completed in 1628 milliseconds

12 3 4 5 6