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

/packages/apps/Bluetooth/src/com/android/bluetooth/
H A DSignedLongLong.java47 long lsb = 0, msb = 0;
61 msb = BluetoothMapUtils.getLongFromString(msbStr);
64 return new SignedLongLong(lsb, msb);
H A DUtils.java112 long msb, lsb;
114 msb = uuid.getMostSignificantBits();
116 converter.putLong(msb);
126 long msb, lsb;
129 msb = uuid.getMostSignificantBits();
131 converter.putLong(i * BD_UUID_LEN, msb);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DBinaryDictDecoderUtils.java300 final int msb = dictBuffer.readUnsignedByte();
301 if (FormatSpec.MAX_PTNODES_FOR_ONE_BYTE_PTNODE_COUNT >= msb) {
302 return msb;
304 return ((FormatSpec.MAX_PTNODES_FOR_ONE_BYTE_PTNODE_COUNT & msb) << 8)
/packages/apps/Bluetooth/jni/
H A Dcom_android_bluetooth_gatt.cpp82 uint64_t msb = 0; local
87 msb <<= 8;
88 msb |= uuid->uu[i];
91 return msb;

Completed in 179 milliseconds