Searched defs:n2 (Results 1 - 2 of 2) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DInsnFormat.java442 * @param n2 {@code 0..15;} medium-high nibble
446 protected static short codeUnit(int n0, int n1, int n2, int n3) { argument
455 if ((n2 & 0xf) != n2) {
456 throw new IllegalArgumentException("n2 out of range 0..15");
463 return (short) (n0 | (n1 << 4) | (n2 << 8) | (n3 << 12));
/dalvik/dx/src/com/android/dx/dex/code/
H A DInsnFormat.java540 * @param n2 {@code 0..15;} medium-high nibble
544 protected static short codeUnit(int n0, int n1, int n2, int n3) { argument
553 if ((n2 & 0xf) != n2) {
554 throw new IllegalArgumentException("n2 out of range 0..15");
561 return (short) (n0 | (n1 << 4) | (n2 << 8) | (n3 << 12));

Completed in 162 milliseconds