Searched refs:msb (Results 1 – 6 of 6) sorted by relevance
253 long msb = buf.getLong(8); in parseUuidFrom() local255 return new ParcelUuid(new UUID(msb, lsb)); in parseUuidFrom()270 long msb = BASE_UUID.getUuid().getMostSignificantBits() + (shortUuid << 32); in parseUuidFrom() local272 return new ParcelUuid(new UUID(msb, lsb)); in parseUuidFrom()309 long msb = uuid.getUuid().getMostSignificantBits(); in uuidToBytes() local314 buf.putLong(8, msb); in uuidToBytes()
44 long msb = uuid.getMostSignificantBits(); in getByteArrayFromUUID() local49 uuidBytes[i] = (byte)(msb >>> (8 * (7 - i))); in getByteArrayFromUUID()
462 long msb = rawpssh.getLong();464 UUID uuid = new UUID(msb, lsb);
207 long msb = uuid.getMostSignificantBits(); in getByteArrayFromUUID() local212 uuidBytes[i] = (byte)(msb >>> (8 * (7 - i))); in getByteArrayFromUUID()
5093 long msb = 0, lsb = 0; in bytesToUUID() local5095 msb |= ( ((long)uuid[i] & 0xff) << (8 * (7 - i)) ); in bytesToUUID()5099 return new UUID(msb, lsb); in bytesToUUID()5466 long msb = uuid.getMostSignificantBits(); in getByteArrayFromUUID() local5471 uuidBytes[i] = (byte)(msb >>> (8 * (7 - i))); in getByteArrayFromUUID()
1244 private void setUuid(long msb, long lsb) { in setUuid() argument1246 mId = (int) msb; in setUuid()