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

/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DInsnFormat.java441 * @param n1 {@code 0..15;} medium-low nibble
446 protected static short codeUnit(int n0, int n1, int n2, int n3) { argument
451 if ((n1 & 0xf) != n1) {
452 throw new IllegalArgumentException("n1 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 n1 {@code 0..15;} medium-low nibble
544 protected static short codeUnit(int n0, int n1, int n2, int n3) { argument
549 if ((n1 & 0xf) != n1) {
550 throw new IllegalArgumentException("n1 out of range 0..15");
561 return (short) (n0 | (n1 << 4) | (n2 << 8) | (n3 << 12));

Completed in 30 milliseconds