Searched refs:n3 (Results 1 - 1 of 1) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/code/
H A DInsnFormat.java443 * @param n3 {@code 0..15;} high nibble
446 protected static short codeUnit(int n0, int n1, int n2, int n3) { argument
459 if ((n3 & 0xf) != n3) {
460 throw new IllegalArgumentException("n3 out of range 0..15");
463 return (short) (n0 | (n1 << 4) | (n2 << 8) | (n3 << 12));

Completed in 98 milliseconds