Home
last modified time | relevance | path

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

/external/dng_sdk/source/
Ddng_fingerprint.cpp179 int lowNibble = HexCharToNum (inputStr [i * 2 + 1]); in FromUtf8HexString() local
181 if (lowNibble < 0) in FromUtf8HexString()
186 data [i] = (uint8) ((highNibble << 4) + lowNibble); in FromUtf8HexString()
/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()