Home
last modified time | relevance | path

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

/external/dng_sdk/source/
Ddng_fingerprint.cpp172 int highNibble = HexCharToNum (inputStr [i * 2]); in FromUtf8HexString() local
174 if (highNibble < 0) in FromUtf8HexString()
186 data [i] = (uint8) ((highNibble << 4) + lowNibble); in FromUtf8HexString()
/external/skia/src/pdf/
DSkPDFFont.cpp247 bool highNibble = true; in handle_type1_stream() local
253 if (highNibble) { in handle_type1_stream()
255 highNibble = false; in handle_type1_stream()
258 highNibble = true; in handle_type1_stream()
262 if (!highNibble) { in handle_type1_stream()
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DInstructionCodec.java1024 private static int makeByte(int lowNibble, int highNibble) { in makeByte() argument
1029 if ((highNibble & ~0xf) != 0) { in makeByte()
1033 return lowNibble | (highNibble << 4); in makeByte()