Searched refs:unsignedByteToInt (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCharacteristic.java436 return unsignedByteToInt(mValue[offset]);
445 return unsignedToSigned(unsignedByteToInt(mValue[offset]), 8);
623 private int unsignedByteToInt(byte b) { method in class:BluetoothGattCharacteristic
631 return (unsignedByteToInt(b0) + (unsignedByteToInt(b1) << 8));
638 return (unsignedByteToInt(b0) + (unsignedByteToInt(b1) << 8))
639 + (unsignedByteToInt(b2) << 16) + (unsignedByteToInt(b3) << 24);
646 int mantissa = unsignedToSigned(unsignedByteToInt(b
[all...]

Completed in 5 milliseconds