Searched refs:lowNibble (Results 1 – 2 of 2) sorted by relevance
179 int lowNibble = HexCharToNum (inputStr [i * 2 + 1]); in FromUtf8HexString() local181 if (lowNibble < 0) in FromUtf8HexString()186 data [i] = (uint8) ((highNibble << 4) + lowNibble); in FromUtf8HexString()
1024 private static int makeByte(int lowNibble, int highNibble) { in makeByte() argument1025 if ((lowNibble & ~0xf) != 0) { in makeByte()1033 return lowNibble | (highNibble << 4); in makeByte()