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

/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DInsnFormat.java440 * @param n0 {@code 0..15;} low nibble
446 protected static short codeUnit(int n0, int n1, int n2, int n3) { argument
447 if ((n0 & 0xf) != n0) {
448 throw new IllegalArgumentException("n0 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.java539 * @param n0 {@code 0..15;} low nibble
545 protected static short codeUnit(int n0, int n1, int n2, int n3) { argument
546 if ((n0 & 0xf) != n0) {
547 throw new IllegalArgumentException("n0 out of range 0..15");
562 return (short) (n0 | (n1 << 4) | (n2 << 8) | (n3 << 12));

Completed in 47 milliseconds