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

1 2

  /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"
28 Binary::~Binary() {}
30 Binary::Binary(unsigned int Type, std::unique_ptr<MemoryBuffer> Source)
33 StringRef Binary::getData() const {
37 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/unittests/MC/
YAMLTest.cpp 17 yaml::BinaryRef Binary;
25 IO.mapRequired("Binary", BH.Binary);
  /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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 53 Binary = buffer
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 53 Binary = buffer
  /external/llvm/include/llvm/Object/
Binary.h 1 //===- Binary.h - A generic binary file -------------------------*- C++ -*-===//
10 // This file declares the Binary class.
29 class Binary {
31 Binary() LLVM_DELETED_FUNCTION;
32 Binary(const Binary &other) LLVM_DELETED_FUNCTION;
39 Binary(unsigned int Type, std::unique_ptr<MemoryBuffer> Source);
78 virtual ~Binary();
126 /// @brief Create a Binary from Source, autodetecting the file type
    [all...]
  /external/llvm/tools/llc/
llc.cpp 149 // Decide if we need "binary" output.
150 bool Binary = false;
156 Binary = true;
163 if (!Binary)
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 39 Binary
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCCodeEmitter.cpp 48 // binary encoding for an instruction.
53 /// getMachineOpValue - Return binary encoding of operand. If the machine
213 /// getMachineOpValue - Return binary encoding of operand. If the machine
617 uint64_t Binary = getBinaryCodeForInstr(MI, Fixups, STI);
618 EmitConstant(Binary, 4, OS);
  /frameworks/compile/mclinker/include/mcld/MC/
Input.h 35 Binary,
  /external/chromium_org/third_party/WebKit/Source/platform/mhtml/
MHTMLParser.cpp 4 * Redistribution and use in source and binary forms, with or without
10 * * Redistributions in binary form must reproduce the above
62 Binary,
179 if (encoding == "binary")
180 return Binary;
290 // If no content transfer encoding is specified, default to binary encoding.
293 contentTransferEncoding = MIMEHeader::Binary;
298 if (contentTransferEncoding == MIMEHeader::Binary) {
300 WTF_LOG_ERROR("Binary contents requires end of part");
306 WTF_LOG_ERROR("Binary contents requires end of part")
    [all...]
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 541 uint32_t Binary = (Value - 4) >> 1;
542 return ((Binary & 0x20) << 4) | ((Binary & 0x1f) << 3);
    [all...]
ARMMCCodeEmitter.cpp 67 // binary encoding for an instruction.
72 /// getMachineOpValue - Return binary encoding of operand. If the machine
299 unsigned Binary = (ARM_AM::getSOImmValRot((unsigned)SoImmVal) >> 1)
303 Binary |= ARM_AM::getSOImmValImm((unsigned)SoImmVal);
304 return Binary;
506 /// getMachineOpValue - Return binary encoding of operand. If the machine
    [all...]
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
WebSocketFrame.java 334 Continuation(0), Text(1), Binary(2), Close(8), Ping(9), Pong(10);
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 77 /// CodeEmitterGenerator using TableGen, produces the binary encoding for
91 void emitWordLE(unsigned Binary);
92 void emitDWordLE(uint64_t Binary);
150 /// getMachineOpValue - Return binary encoding of operand. If the machine
255 uint32_t Binary;
256 Binary = Imm12 & 0xfff;
258 Binary |= (1 << 12);
259 Binary |= (Reg << 13);
260 return Binary;
306 uint32_t Binary = Imm12 & 0xfff
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
xmlrpclib.py 16 # 1999-01-16 fl Added Binary/base64 element, default to RPC2 service
40 # 2002-04-16 fl Added __str__ methods to datetime/binary wrappers
115 Binary binary data wrapper
471 # Wrapper for binary data. This can be used to transport any kind
472 # of binary data over XML-RPC, using BASE64 encoding.
482 class Binary:
483 """Wrapper for binary data."""
497 if isinstance(other, Binary):
510 # decode xml element contents into a Binary structur
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
xmlrpclib.py 16 # 1999-01-16 fl Added Binary/base64 element, default to RPC2 service
40 # 2002-04-16 fl Added __str__ methods to datetime/binary wrappers
115 Binary binary data wrapper
471 # Wrapper for binary data. This can be used to transport any kind
472 # of binary data over XML-RPC, using BASE64 encoding.
482 class Binary:
483 """Wrapper for binary data."""
497 if isinstance(other, Binary):
510 # decode xml element contents into a Binary structur
    [all...]
  /external/lldb/tools/debugserver/source/
DNBDefs.h 183 Binary,

Completed in 418 milliseconds

1 2