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

  /external/llvm/bindings/python/llvm/tests/
test_core.py 2 from ..core import OpCode
7 self.assertTrue(hasattr(OpCode, 'Ret'))
8 self.assertTrue(isinstance(OpCode.Ret, OpCode))
9 self.assertEqual(OpCode.Ret.value, 1)
11 op = OpCode.from_value(1)
12 self.assertTrue(isinstance(op, OpCode))
13 self.assertEqual(op, OpCode.Ret)
  /external/llvm/bindings/python/llvm/
core.py 27 class OpCode(object):
28 """Represents an individual OpCode enumeration."""
37 return 'OpCode.%s' % self.name
41 """Obtain an OpCode instance from a numeric value."""
42 result = OpCode._value_map.get(value, None)
45 raise ValueError('Unknown OpCode: %d' % value)
51 """Registers a new OpCode enumeration.
56 if value in OpCode._value_map:
57 raise ValueError('OpCode value already registered: %d' % value)
59 opcode = OpCode(name, value
    [all...]
  /external/chromium_org/net/websockets/
websocket_frame.h 24 typedef int OpCode;
39 // Return true if |opcode| is one of the data opcodes known to this
41 static bool IsKnownDataOpCode(OpCode opcode) {
42 return opcode == kOpCodeContinuation || opcode == kOpCodeText ||
43 opcode == kOpCodeBinary;
46 // Return true if |opcode| is one of the control opcodes known to this
48 static bool IsKnownControlOpCode(OpCode opcode) {
80 OpCode opcode; member in struct:net::WebSocketFrameHeader
    [all...]
websocket_frame_parser.cc 99 typedef WebSocketFrameHeader::OpCode OpCode;
119 OpCode opcode = first_byte & kOpCodeMask; local
161 current_frame_header_.reset(new WebSocketFrameHeader(opcode));
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketFrame.h 40 enum OpCode {
56 static bool isNonControlOpCode(OpCode opCode) { return opCode == OpCodeContinuation || opCode == OpCodeText || opCode == OpCodeBinary; }
57 static bool isControlOpCode(OpCode opCode) { return opCode == OpCodeClose || opCode == OpCodePing || opCode == OpCodePong;
    [all...]
  /external/chromium_org/net/server/
web_socket.cc 148 typedef int OpCode;
150 const OpCode kOpCodeContinuation = 0x0;
151 const OpCode kOpCodeText = 0x1;
152 const OpCode kOpCodeBinary = 0x2;
153 const OpCode kOpCodeClose = 0x8;
154 const OpCode kOpCodePing = 0x9;
155 const OpCode kOpCodePong = 0xA;
244 OpCode op_code_;
365 OpCode op_code = kOpCodeText;
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp 491 unsigned OpCode = Is64Bit ? PPC::ISEL8 : PPC::ISEL;
525 BuildMI(MBB, MI, dl, get(OpCode), DestReg)
801 assert(Cond.size() == 2 && "Invalid PPC branch opcode!");
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
dlist.c 105 struct gl_list_instruction Opcode[MAX_DLIST_EXT_OPCODES];
493 } OpCode;
510 OpCode opcode; member in union:gl_dlist_node
522 void *next; /* If prev node's opcode==OPCODE_CONTINUE */
577 dlist->Head[0].opcode = OPCODE_END_OF_LIST;
593 /** Is the given opcode an extension code? */
595 is_ext_opcode(OpCode opcode)
597 return (opcode >= OPCODE_EXT_0)
651 const OpCode opcode = n[0].opcode; local
7692 const OpCode opcode = n[0].opcode; local
10703 const OpCode opcode = n[0].opcode; local
    [all...]
  /external/mesa3d/src/mesa/main/
dlist.c 105 struct gl_list_instruction Opcode[MAX_DLIST_EXT_OPCODES];
493 } OpCode;
510 OpCode opcode; member in union:gl_dlist_node
522 void *next; /* If prev node's opcode==OPCODE_CONTINUE */
577 dlist->Head[0].opcode = OPCODE_END_OF_LIST;
593 /** Is the given opcode an extension code? */
595 is_ext_opcode(OpCode opcode)
597 return (opcode >= OPCODE_EXT_0)
651 const OpCode opcode = n[0].opcode; local
7692 const OpCode opcode = n[0].opcode; local
10703 const OpCode opcode = n[0].opcode; local
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp 16799 unsigned opcode; local
    [all...]

Completed in 442 milliseconds