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

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCharacteristic.java517 return unsignedByteToInt(mValue[offset]);
526 return unsignedToSigned(unsignedByteToInt(mValue[offset]), 8);
704 private int unsignedByteToInt(byte b) { method in class:BluetoothGattCharacteristic
712 return (unsignedByteToInt(b0) + (unsignedByteToInt(b1) << 8));
719 return (unsignedByteToInt(b0) + (unsignedByteToInt(b1) << 8))
720 + (unsignedByteToInt(b2) << 16) + (unsignedByteToInt(b3) << 24);
727 int mantissa = unsignedToSigned(unsignedByteToInt(b
[all...]

Completed in 62 milliseconds