Home
last modified time | relevance | path

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

/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DInstructionCodec.java909 int a = nibble0(abcd); in decodeRegisterList()
1002 private static short codeUnit(int nibble0, int nibble1, int nibble2, in codeUnit() argument
1004 if ((nibble0 & ~0xf) != 0) { in codeUnit()
1020 return (short) (nibble0 | (nibble1 << 4) in codeUnit()
1084 private static int nibble0(int value) { in nibble0() method in InstructionCodec
/external/fonttools/Lib/fontTools/misc/
DpsCharStrings.py68 nibble0 = (b & 0xf0) >> 4
70 if nibble0 == 0xf:
72 number = number + realNibbles[nibble0]