HomeSort by relevance Sort by last modified time
    Searched defs:unsignedByteToInt (Results 1 - 4 of 4) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/util/
NumberUtils.java 27 public static int unsignedByteToInt(byte b) {
41 int value = unsignedByteToInt(bytes[i]);
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattCharacteristic.java 527 return unsignedByteToInt(mValue[offset]);
536 return unsignedToSigned(unsignedByteToInt(mValue[offset]), 8);
713 private int unsignedByteToInt(byte b) {
721 return (unsignedByteToInt(b0) + (unsignedByteToInt(b1) << 8));
728 return (unsignedByteToInt(b0) + (unsignedByteToInt(b1) << 8))
729 + (unsignedByteToInt(b2) << 16) + (unsignedByteToInt(b3) << 24);
736 int mantissa = unsignedToSigned(unsignedByteToInt(b0
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.3_r2-robolectric-0.jar 

Completed in 71 milliseconds