Searched refs:longEnoughBytes (Results 1 – 1 of 1) sorted by relevance
103 static int unsignedIntFromBytes(byte[] longEnoughBytes) { in unsignedIntFromBytes() argument104 return (extractByte(longEnoughBytes, 0) in unsignedIntFromBytes()105 | extractByte(longEnoughBytes, 1) in unsignedIntFromBytes()106 | extractByte(longEnoughBytes, 2) in unsignedIntFromBytes()107 | extractByte(longEnoughBytes, 3)) in unsignedIntFromBytes()