Home
last modified time | relevance | path

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

/external/skia/src/pdf/
DSkPDFFont.cpp248 bool highNibble = true; in handle_type1_stream() local
254 if (highNibble) { in handle_type1_stream()
256 highNibble = false; in handle_type1_stream()
259 highNibble = true; in handle_type1_stream()
263 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()