Home
last modified time | relevance | path

Searched refs:byteOrder (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/media/java/android/media/
DExifInterface.java451 public static ExifAttribute createUShort(int[] values, ByteOrder byteOrder) { in createUShort() argument
454 buffer.order(byteOrder); in createUShort()
461 public static ExifAttribute createUShort(int value, ByteOrder byteOrder) { in createUShort() argument
462 return createUShort(new int[] {value}, byteOrder); in createUShort()
465 public static ExifAttribute createULong(long[] values, ByteOrder byteOrder) { in createULong() argument
468 buffer.order(byteOrder); in createULong()
475 public static ExifAttribute createULong(long value, ByteOrder byteOrder) { in createULong() argument
476 return createULong(new long[] {value}, byteOrder); in createULong()
479 public static ExifAttribute createSLong(int[] values, ByteOrder byteOrder) { in createSLong() argument
482 buffer.order(byteOrder); in createSLong()
[all …]
/frameworks/wilhelm/tests/sandbox/
Dplaybq.c45 SLuint32 byteOrder; // desired to use for PCM buffers variable
72 if (byteOrder != nativeByteOrder) { in squeeze()
182 byteOrder = nativeByteOrder; in main()
199 byteOrder = SL_BYTEORDER_BIGENDIAN; in main()
201 byteOrder = SL_BYTEORDER_LITTLEENDIAN; in main()
398 format_pcm.endianness = byteOrder; in main()
Dplaybq.cpp45 SLuint32 byteOrder; // desired to use for PCM buffers variable
72 if (byteOrder != nativeByteOrder) { in squeeze()
182 byteOrder = nativeByteOrder; in main()
199 byteOrder = SL_BYTEORDER_BIGENDIAN; in main()
201 byteOrder = SL_BYTEORDER_LITTLEENDIAN; in main()
398 format_pcm.endianness = byteOrder; in main()
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
DExifParser.java738 short byteOrder = mTiffStream.readShort(); in parseTiffHeader() local
739 if (LITTLE_ENDIAN_TAG == byteOrder) { in parseTiffHeader()
741 } else if (BIG_ENDIAN_TAG == byteOrder) { in parseTiffHeader()