Searched refs:byteOrder (Results 1 – 6 of 6) sorted by relevance
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
D | ByteBufferReader.java | 46 public static long readInteger(ByteBuffer payload, ByteOrder byteOrder, int size) { in readInteger() argument 57 if (byteOrder == ByteOrder.LITTLE_ENDIAN) { in readInteger()
|
/frameworks/base/media/java/android/media/ |
D | ExifInterface.java | 588 public static ExifAttribute createUShort(int[] values, ByteOrder byteOrder) { in createUShort() argument 591 buffer.order(byteOrder); in createUShort() 598 public static ExifAttribute createUShort(int value, ByteOrder byteOrder) { in createUShort() argument 599 return createUShort(new int[] {value}, byteOrder); in createUShort() 602 public static ExifAttribute createULong(long[] values, ByteOrder byteOrder) { in createULong() argument 605 buffer.order(byteOrder); in createULong() 612 public static ExifAttribute createULong(long value, ByteOrder byteOrder) { in createULong() argument 613 return createULong(new long[] {value}, byteOrder); in createULong() 616 public static ExifAttribute createSLong(int[] values, ByteOrder byteOrder) { in createSLong() argument 619 buffer.order(byteOrder); in createSLong() [all …]
|
/frameworks/support/exifinterface/src/android/support/media/ |
D | ExifInterface.java | 553 public static ExifAttribute createUShort(int[] values, ByteOrder byteOrder) { in createUShort() argument 556 buffer.order(byteOrder); in createUShort() 563 public static ExifAttribute createUShort(int value, ByteOrder byteOrder) { in createUShort() argument 564 return createUShort(new int[] {value}, byteOrder); in createUShort() 567 public static ExifAttribute createULong(long[] values, ByteOrder byteOrder) { in createULong() argument 570 buffer.order(byteOrder); in createULong() 577 public static ExifAttribute createULong(long value, ByteOrder byteOrder) { in createULong() argument 578 return createULong(new long[] {value}, byteOrder); in createULong() 581 public static ExifAttribute createSLong(int[] values, ByteOrder byteOrder) { in createSLong() argument 584 buffer.order(byteOrder); in createSLong() [all …]
|
/frameworks/wilhelm/tests/sandbox/ |
D | playbq.cpp | 45 SLuint32 byteOrder; // desired to use for PCM buffers variable 74 if (byteOrder != nativeByteOrder) { in squeeze() 184 byteOrder = nativeByteOrder; in main() 201 byteOrder = SL_BYTEORDER_BIGENDIAN; in main() 203 byteOrder = SL_BYTEORDER_LITTLEENDIAN; in main() 400 format_pcm.endianness = byteOrder; in main()
|
/frameworks/base/core/java/android/companion/ |
D | BluetoothLeDeviceFilter.java | 368 int bytesFrom, int bytesLength, ByteOrder byteOrder) { in setRenameFromBytes() argument 373 mRenameBytesReverseOrder = byteOrder == ByteOrder.LITTLE_ENDIAN; in setRenameFromBytes()
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/ |
D | ExifParser.java | 738 short byteOrder = mTiffStream.readShort(); in parseTiffHeader() local 739 if (LITTLE_ENDIAN_TAG == byteOrder) { in parseTiffHeader() 741 } else if (BIG_ENDIAN_TAG == byteOrder) { in parseTiffHeader()
|