Searched defs: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.java538 * @param n0 {@code 0..15;} low nibble
544 protected static short codeUnit(int n0, int n1, int n2, int n3) { argument
545 if ((n0 & 0xf) != n0) {
546 throw new IllegalArgumentException("n0 out of range 0..15");
561 return (short) (n0 | (n1 << 4) | (n2 << 8) | (n3 << 12));

Completed in 24 milliseconds