Home
last modified time | relevance | path

Searched refs:lowNibble (Results 1 – 1 of 1) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DInstructionCodec.java1024 private static int makeByte(int lowNibble, int highNibble) { in makeByte() argument
1025 if ((lowNibble & ~0xf) != 0) { in makeByte()
1033 return lowNibble | (highNibble << 4); in makeByte()