HomeSort by relevance Sort by last modified time
    Searched refs:opcode (Results 101 - 125 of 1561) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
RegOps.java 24 * <p><b>Note:</b> Opcode descriptions use a rough pseudocode. {@code r}
43 * <b>Note:</b> This opcode should only ever be used in the
284 * <b>Note:</b> This opcode should only ever be used in the
291 * <b>Note:</b> This opcode should only ever be used in the
307 * Gets the name of the given opcode.
309 * @param opcode the opcode
312 public static String opName(int opcode) {
313 switch (opcode) {
372 return "unknown-" + Hex.u1(opcode);
    [all...]
Rop.java 52 /** the opcode; one of the constants in {@link RegOps} */
53 private final int opcode; field in class:Rop
83 * @param opcode the opcode; one of the constants in {@link RegOps}
94 public Rop(int opcode, Type result, TypeList sources,
118 this.opcode = opcode;
131 * @param opcode the opcode; one of the constants in {@link RegOps}
141 public Rop(int opcode, Type result, TypeList sources
    [all...]