Home
last modified time | relevance | path

Searched refs:lsb (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
DBluetoothUuid.java280 long lsb = buf.getLong(0); in parseUuidFrom() local
281 return new ParcelUuid(new UUID(msb, lsb)); in parseUuidFrom()
297 long lsb = BASE_UUID.getUuid().getLeastSignificantBits(); in parseUuidFrom() local
298 return new ParcelUuid(new UUID(msb, lsb)); in parseUuidFrom()
334 long lsb = uuid.getUuid().getLeastSignificantBits(); in uuidToBytes() local
339 buf.putLong(0, lsb); in uuidToBytes()
/frameworks/base/media/java/android/media/
DMediaCrypto.java45 long lsb = uuid.getLeastSignificantBits(); in getByteArrayFromUUID() local
50 uuidBytes[8 + i] = (byte)(lsb >>> (8 * (7 - i))); in getByteArrayFromUUID()
DMediaExtractor.java463 long lsb = rawpssh.getLong();
464 UUID uuid = new UUID(msb, lsb);
DMediaDrm.java208 long lsb = uuid.getLeastSignificantBits(); in getByteArrayFromUUID() local
213 uuidBytes[8 + i] = (byte)(lsb >>> (8 * (7 - i))); in getByteArrayFromUUID()
DMediaPlayer.java5093 long msb = 0, lsb = 0; in bytesToUUID() local
5096 lsb |= ( ((long)uuid[i+8] & 0xff) << (8 * (7 - i)) ); in bytesToUUID()
5099 return new UUID(msb, lsb); in bytesToUUID()
5467 long lsb = uuid.getLeastSignificantBits(); in getByteArrayFromUUID() local
5472 uuidBytes[8 + i] = (byte)(lsb >>> (8 * (7 - i))); in getByteArrayFromUUID()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/js/binary/
Darith_test.js66 assertEquals(a.lsb(), false);
74 assertEquals(a.lsb(), true);
Darith.js119 jspb.arith.UInt64.prototype.lsb = function() { method in jspb.arith.UInt64
/frameworks/base/core/java/android/hardware/
DSensor.java1244 private void setUuid(long msb, long lsb) { in setUuid() argument
/frameworks/base/media/apex/java/android/media/
DMediaPlayer2.java4357 long msb = 0, lsb = 0;
4360 lsb |= (((long) uuid[i + 8] & 0xff) << (8 * (7 - i)));
4363 return new UUID(msb, lsb);
4496 long lsb = uuid.getLeastSignificantBits();
4501 uuidBytes[8 + i] = (byte) (lsb >>> (8 * (7 - i)));