/external/kernel-headers/original/uapi/asm-x86/asm/ |
byteorder.h | 4 #include <linux/byteorder/little_endian.h>
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/ |
byteorder.h | 4 #include <linux/byteorder/little_endian.h>
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/ |
byteorder.h | 4 #include <linux/byteorder/little_endian.h>
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/ |
byteorder.h | 4 #include <linux/byteorder/little_endian.h>
|
/libcore/luni/src/main/java/java/nio/ |
ByteOrder.java | 22 public final class ByteOrder { 23 private static final ByteOrder NATIVE_ORDER; 28 public static final ByteOrder BIG_ENDIAN; 33 public static final ByteOrder LITTLE_ENDIAN; 39 BIG_ENDIAN = new ByteOrder("BIG_ENDIAN", isLittleEndian); 40 LITTLE_ENDIAN = new ByteOrder("LITTLE_ENDIAN", !isLittleEndian); 47 * This is the only thing that ByteOrder is really used for: to know whether we need to swap 54 private ByteOrder(String name, boolean needsSwap) { 65 public static ByteOrder nativeOrder() { 72 * @return "BIG_ENDIAN" for {@link #BIG_ENDIAN ByteOrder.BIG_ENDIAN [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/ |
ByteOrderTest.java | 20 import java.nio.ByteOrder; 25 * Test java.nio.ByteOrder 31 assertEquals(ByteOrder.BIG_ENDIAN.toString(), "BIG_ENDIAN"); 32 assertEquals(ByteOrder.LITTLE_ENDIAN.toString(), "LITTLE_ENDIAN"); 36 ByteOrder o = ByteOrder.nativeOrder(); 37 assertTrue(o == ByteOrder.BIG_ENDIAN || o == ByteOrder.LITTLE_ENDIAN);
|
ByteBufferTest.java | 23 import java.nio.ByteOrder; 486 assertEquals(ByteOrder.BIG_ENDIAN, buf.order()); 488 buf.order(ByteOrder.LITTLE_ENDIAN); 489 assertEquals(ByteOrder.LITTLE_ENDIAN, buf.order()); 491 buf.order(ByteOrder.BIG_ENDIAN); 492 assertEquals(ByteOrder.BIG_ENDIAN, buf.order()); 495 buf.order((ByteOrder)null); 496 assertEquals(ByteOrder.LITTLE_ENDIAN, buf.order()); 498 buf.order(ByteOrder.BIG_ENDIAN); 776 buf.order(ByteOrder.BIG_ENDIAN) [all...] |
/external/kernel-headers/original/uapi/asm-mips/asm/ |
byteorder.h | 12 #include <linux/byteorder/big_endian.h> 14 #include <linux/byteorder/little_endian.h>
|
/libcore/luni/src/test/java/libcore/java/nio/ |
BufferTest.java | 28 import java.nio.ByteOrder; 129 b.order(ByteOrder.BIG_ENDIAN).asCharBuffer().get(chars, 1, 4); 131 b.order(ByteOrder.LITTLE_ENDIAN).asCharBuffer().get(chars, 1, 4); 135 b.order(ByteOrder.BIG_ENDIAN).asDoubleBuffer().get(doubles, 1, 1); 139 b.order(ByteOrder.LITTLE_ENDIAN).asDoubleBuffer().get(doubles, 1, 1); 145 b.order(ByteOrder.BIG_ENDIAN).asFloatBuffer().get(floats, 1, 2); 150 b.order(ByteOrder.LITTLE_ENDIAN).asFloatBuffer().get(floats, 1, 2); 157 b.order(ByteOrder.BIG_ENDIAN).asIntBuffer().get(ints, 1, 2); 162 b.order(ByteOrder.LITTLE_ENDIAN).asIntBuffer().get(ints, 1, 2); 169 b.order(ByteOrder.BIG_ENDIAN).asLongBuffer().get(longs, 1, 1) [all...] |
/external/kernel-headers/original/uapi/asm-arm/asm/ |
byteorder.h | 2 * arch/arm/include/asm/byteorder.h 19 #include <linux/byteorder/big_endian.h> 21 #include <linux/byteorder/little_endian.h>
|
/libcore/luni/src/main/native/ |
java_nio_ByteOrder.cpp | 17 #define LOG_TAG "ByteOrder" 28 NATIVE_METHOD(ByteOrder, isLittleEndian, "!()Z"), 31 jniRegisterNativeMethods(env, "java/nio/ByteOrder", gMethods, NELEM(gMethods));
|
/libcore/benchmarks/src/benchmarks/regression/ |
ByteBufferBenchmark.java | 31 BIG(ByteOrder.BIG_ENDIAN), LITTLE(ByteOrder.LITTLE_ENDIAN); 32 final ByteOrder byteOrder; 33 MyByteOrder(ByteOrder byteOrder) { 34 this.byteOrder = byteOrder; 38 @Param private MyByteOrder byteOrder; 47 public static ByteBuffer newBuffer(MyByteOrder byteOrder, boolean aligned, MyBufferType bufferType) throws IOException [all...] |
/external/lldb/include/lldb/Host/ |
Endian.h | 25 inline ByteOrder InlHostByteOrder() { return (ByteOrder)endianTest.bytes[0]; } 27 // ByteOrder const InlHostByteOrder = (ByteOrder)endianTest.bytes[0];
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
utf_16.py | 26 if sys.byteorder == 'little': 48 if sys.byteorder == 'little': 60 (output, consumed, byteorder) = \ 62 if byteorder == -1: 64 elif byteorder == 1: 87 if sys.byteorder == 'little': 105 (object, consumed, byteorder) = \ 107 if byteorder == -1: 109 elif byteorder == 1:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
utf_16.py | 26 if sys.byteorder == 'little': 48 if sys.byteorder == 'little': 60 (output, consumed, byteorder) = \ 62 if byteorder == -1: 64 elif byteorder == 1: 87 if sys.byteorder == 'little': 105 (object, consumed, byteorder) = \ 107 if byteorder == -1: 109 elif byteorder == 1:
|
/bionic/libc/kernel/uapi/asm-arm64/asm/ |
byteorder.h | 22 #include <linux/byteorder/big_endian.h> 25 #include <linux/byteorder/little_endian.h>
|
/development/ndk/platforms/android-21/arch-arm64/include/asm/ |
byteorder.h | 22 #include <linux/byteorder/big_endian.h> 25 #include <linux/byteorder/little_endian.h>
|
/development/ndk/platforms/android-3/arch-arm/include/asm/ |
byteorder.h | 45 #include <linux/byteorder/big_endian.h> 47 #include <linux/byteorder/little_endian.h>
|
/development/ndk/platforms/android-3/include/linux/ |
aio_abi.h | 15 #include <asm/byteorder.h> 40 #error edit for your odd byteorder.
|
/external/fonttools/Lib/fontTools/misc/ |
macCreatorType.py | 19 if sys.byteorder == "little": 31 if sys.byteorder == "little":
|
/external/kernel-headers/original/uapi/asm-arm64/asm/ |
byteorder.h | 20 #include <linux/byteorder/big_endian.h> 22 #include <linux/byteorder/little_endian.h>
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/asm/ |
byteorder.h | 45 #include <linux/byteorder/big_endian.h> 47 #include <linux/byteorder/little_endian.h>
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/ |
aio_abi.h | 15 #include <asm/byteorder.h> 40 #error edit for your odd byteorder.
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/asm/ |
byteorder.h | 45 #include <linux/byteorder/big_endian.h> 47 #include <linux/byteorder/little_endian.h>
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/ |
aio_abi.h | 15 #include <asm/byteorder.h> 40 #error edit for your odd byteorder.
|