Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/tests/src/com/android/bluetooth/util/
DNumberUtilsTest.java29 assertEquals(0, NumberUtils.unsignedByteToInt((byte) 0)); in testUnsignedByteToInt()
30 assertEquals(19, NumberUtils.unsignedByteToInt((byte) 19)); in testUnsignedByteToInt()
31 assertEquals(154, NumberUtils.unsignedByteToInt((byte) 154)); in testUnsignedByteToInt()
/packages/apps/Bluetooth/src/com/android/bluetooth/util/
DNumberUtils.java27 public static int unsignedByteToInt(byte b) { in unsignedByteToInt() method in NumberUtils
41 int value = unsignedByteToInt(bytes[i]); in littleEndianByteArrayToInt()