Searched refs:highNibble (Results 1 – 3 of 3) sorted by relevance
172 int highNibble = HexCharToNum (inputStr [i * 2]); in FromUtf8HexString() local174 if (highNibble < 0) in FromUtf8HexString()186 data [i] = (uint8) ((highNibble << 4) + lowNibble); in FromUtf8HexString()
247 bool highNibble = true; in handle_type1_stream() local253 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()
1024 private static int makeByte(int lowNibble, int highNibble) { in makeByte() argument1029 if ((highNibble & ~0xf) != 0) { in makeByte()1033 return lowNibble | (highNibble << 4); in makeByte()