/external/v8/src/x64/ |
lithium-x64.h | 186 virtual Opcode opcode() const { return LInstruction::k##type; } \ 217 enum Opcode { 225 virtual Opcode opcode() const = 0; 229 bool Is##type() const { return opcode() == k##type; } 234 // an opcode. 1087 virtual Opcode opcode() const { return LInstruction::kArithmeticD; } function in class:v8::internal::LArithmeticD 1104 virtual Opcode opcode() const { return LInstruction::kArithmeticT; function in class:v8::internal::LArithmeticT [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/ |
p_shader_tokens.h | 441 * Opcode is the operation code to execute. A given operation defines the 458 unsigned Opcode : 8; /* TGSI_OPCODE_ */
|
/external/chromium_org/v8/src/arm/ |
lithium-arm.h | 193 virtual Opcode opcode() const { return LInstruction::k##type; } \ 225 enum Opcode { 233 virtual Opcode opcode() const = 0; 237 bool Is##type() const { return opcode() == k##type; } 242 // an opcode. 1477 virtual Opcode opcode() const { return LInstruction::kArithmeticD; } function in class:v8::internal::LArithmeticD 1498 virtual Opcode opcode() const { return LInstruction::kArithmeticT; } function in class:v8::internal::LArithmeticT [all...] |
/external/chromium_org/v8/src/ia32/ |
lithium-ia32.h | 192 virtual Opcode opcode() const { return LInstruction::k##type; } \ 224 enum Opcode { 232 virtual Opcode opcode() const = 0; 236 bool Is##type() const { return opcode() == k##type; } 241 // an opcode. 1462 virtual Opcode opcode() const { return LInstruction::kArithmeticD; } function in class:v8::internal::LArithmeticD 1487 virtual Opcode opcode() const { return LInstruction::kArithmeticT; } function in class:v8::internal::LArithmeticT [all...] |
/external/chromium_org/v8/src/mips/ |
lithium-mips.h | 190 virtual Opcode opcode() const { return LInstruction::k##type; } \ 222 enum Opcode { 230 virtual Opcode opcode() const = 0; 234 bool Is##type() const { return opcode() == k##type; } 239 // an opcode. 1455 virtual Opcode opcode() const { return LInstruction::kArithmeticD; } function in class:v8::internal::LArithmeticD 1476 virtual Opcode opcode() const { return LInstruction::kArithmeticT; } function in class:v8::internal::LArithmeticT [all...] |
/external/chromium_org/v8/src/x64/ |
lithium-x64.h | 190 virtual Opcode opcode() const { return LInstruction::k##type; } \ 222 enum Opcode { 230 virtual Opcode opcode() const = 0; 234 bool Is##type() const { return opcode() == k##type; } 239 // an opcode. 1415 virtual Opcode opcode() const { return LInstruction::kArithmeticD; } function in class:v8::internal::LArithmeticD 1436 virtual Opcode opcode() const { return LInstruction::kArithmeticT; } function in class:v8::internal::LArithmeticT [all...] |
/external/clang/include/clang/AST/ |
Expr.h | [all...] |
/external/clang/lib/CodeGen/ |
CGExprScalar.cpp | 47 BinaryOperator::Opcode Opcode; // Opcode of BinOp to perform 842 BinaryOperatorKind Opcode = Info.Opcode; 843 if (BinaryOperator::isCompoundAssignmentOp(Opcode)) 844 Opcode = BinaryOperator::getOpForCompoundAssignment(Opcode); [all...] |
/external/llvm/bindings/ocaml/llvm/ |
llvm.mli | 187 module Opcode : sig 281 | Instruction of Opcode.t 668 val constexpr_opcode : llvalue -> Opcode.t [all...] |
/external/llvm/lib/MC/MCParser/ |
AsmParser.cpp | 100 /// Opcode - The opcode from the last parsed instruction. 101 unsigned Opcode; 108 ParseStatementInfo() : Opcode(~0U), ParseError(false), AsmRewrites(0) {} 110 : Opcode(~0), ParseError(false), AsmRewrites(rewrites) {} [all...] |
/external/llvm/lib/Target/Mips/ |
MipsISelLowering.cpp | 150 const char *MipsTargetLowering::getTargetNodeName(unsigned Opcode) const { 151 switch (Opcode) { [all...] |
/external/mesa3d/src/gallium/include/pipe/ |
p_shader_tokens.h | 441 * Opcode is the operation code to execute. A given operation defines the 458 unsigned Opcode : 8; /* TGSI_OPCODE_ */
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/ |
Opcode.java | 35 public enum Opcode 37 NOP((short)0x00, "nop", ReferenceType.none, Format.Format10x, Opcode.CAN_CONTINUE), 38 MOVE((short)0x01, "move", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER), 39 MOVE_FROM16((short)0x02, "move/from16", ReferenceType.none, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER), 40 MOVE_16((short)0x03, "move/16", ReferenceType.none, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER), 41 MOVE_WIDE((short)0x04, "move-wide", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER) 382 opcodesByName.put(opcode.name.hashCode(), opcode); typedefs 420 opcodesByName.put(opcode.name.hashCode(), opcode); local [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAGBuilder.cpp | [all...] |
DAGCombiner.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/llvm/lib/Target/ARM/ |
ARMISelLowering.cpp | [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...] |
/prebuilts/tools/common/asm-tools/ |
asm-xml-4.0.jar | |
asm-debug-all-4.0.jar | |
/external/llvm/lib/Target/X86/ |
X86ISelLowering.cpp | 16799 unsigned opcode; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.objectweb.asm_3.2.0.v200909071300.jar | |
/external/robolectric/lib/main/ |
javassist-3.14.0-GA.jar | |
/prebuilts/tools/common/m2/internal/com/google/code/findbugs/findbugs/2.0.1/ |
findbugs-2.0.1.jar | |