Searched refs:decodeHighUnsignedNibble (Results 1 – 9 of 9) sorted by relevance
81 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction35mi()84 this.regE = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 4]); in Instruction35mi()86 this.regG = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 5]); in Instruction35mi()
81 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction35ms()84 this.regE = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 4]); in Instruction35ms()86 this.regG = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 5]); in Instruction35ms()
82 this.regCount = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction35c()85 this.regE = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 4]); in Instruction35c()87 this.regG = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 5]); in Instruction35c()
58 this.regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction12x()
62 this.regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction22s()
66 this.regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction22cs()
68 regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction22t()
62 this.regB = NumberUtils.decodeHighUnsignedNibble(buffer[bufferIndex + 1]); in Instruction22c()
56 public static byte decodeHighUnsignedNibble(byte b) { in decodeHighUnsignedNibble() method in NumberUtils