HomeSort by relevance Sort by last modified time
    Searched refs:BIG_ENDIAN (Results 1 - 25 of 638) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/Arm/
arith.h 5 #if BYTE_ORDER == BIG_ENDIAN
gd_qnan.h 6 #if BYTE_ORDER == BIG_ENDIAN
  /external/syslinux/com32/include/
endian.h 11 #define BIG_ENDIAN __BIG_ENDIAN
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
param.h 37 #define BIG_ENDIAN 4321
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xarch.h 61 # if !defined(BIG_ENDIAN) && defined(__BIG_ENDIAN)
62 # define BIG_ENDIAN __BIG_ENDIAN
74 # define BIG_ENDIAN 4321
82 # define BYTE_ORDER BIG_ENDIAN
88 # define X_BIG_ENDIAN BIG_ENDIAN
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xarch.h 62 # if !defined(BIG_ENDIAN) && defined(__BIG_ENDIAN)
63 # define BIG_ENDIAN __BIG_ENDIAN
75 # define BIG_ENDIAN 4321
83 # define BYTE_ORDER BIG_ENDIAN
89 # define X_BIG_ENDIAN BIG_ENDIAN
  /toolchain/binutils/binutils-2.25/gas/config/
tc-arc.h 37 #ifdef BIG_ENDIAN
38 #undef BIG_ENDIAN
43 #define BIG_ENDIAN 4321
  /external/llvm/include/llvm/Support/
Host.h 32 #if defined(BYTE_ORDER) && defined(BIG_ENDIAN) && BYTE_ORDER == BIG_ENDIAN
Solaris.h 21 #define BIG_ENDIAN 4321
24 #define BYTE_ORDER BIG_ENDIAN
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
ByteOrderTest.java 31 assertEquals(ByteOrder.BIG_ENDIAN.toString(), "BIG_ENDIAN");
37 assertTrue(o == ByteOrder.BIG_ENDIAN || o == ByteOrder.LITTLE_ENDIAN);
ByteBufferTest.java 489 // BIG_ENDIAN is the default byte order
490 assertEquals(ByteOrder.BIG_ENDIAN, buf.order());
495 buf.order(ByteOrder.BIG_ENDIAN);
496 assertEquals(ByteOrder.BIG_ENDIAN, buf.order());
502 buf.order(ByteOrder.BIG_ENDIAN);
823 // test BIG_ENDIAN char buffer, read
825 buf.order(ByteOrder.BIG_ENDIAN);
827 assertSame(ByteOrder.BIG_ENDIAN, charBuffer.order());
846 // test BIG_ENDIAN char buffer, write
848 buf.order(ByteOrder.BIG_ENDIAN);
    [all...]
  /system/nfc/halimpl/bcm2079x/gki/ulinux/
data_types.h 47 #ifndef BIG_ENDIAN
48 #define BIG_ENDIAN FALSE
  /system/nfc/src/gki/ulinux/
data_types.h 48 #ifndef BIG_ENDIAN
49 #define BIG_ENDIAN FALSE
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/
infinityf_ieee754.c 16 #if BYTE_ORDER == BIG_ENDIAN
  /external/compiler-rt/test/ubsan/TestCases/Float/
cast-overflow.cpp 19 # define BIG_ENDIAN __DARWIN_BIG_ENDIAN
24 # define BIG_ENDIAN _BIG_ENDIAN
28 # define BIG_ENDIAN 1
33 # define BIG_ENDIAN __BIG_ENDIAN
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_vertex.h 35 #if defined(BYTE_ORDER) && defined(BIG_ENDIAN) && BYTE_ORDER == BIG_ENDIAN
43 #if defined(BYTE_ORDER) && defined(BIG_ENDIAN) && BYTE_ORDER == BIG_ENDIAN
  /libcore/ojluni/src/main/java/java/nio/
ByteOrder.java 49 public static final ByteOrder BIG_ENDIAN
50 = new ByteOrder("BIG_ENDIAN");
77 * <p> This method returns the string <tt>"BIG_ENDIAN"</tt> for {@link
78 * #BIG_ENDIAN} and <tt>"LITTLE_ENDIAN"</tt> for {@link #LITTLE_ENDIAN}.
  /external/squashfs-tools/squashfs-tools/
lz4_wrapper.h 29 #define __BIG_ENDIAN BIG_ENDIAN
gzip_wrapper.h 29 #define __BIG_ENDIAN BIG_ENDIAN
xz_wrapper.h 29 #define __BIG_ENDIAN BIG_ENDIAN
  /frameworks/base/core/java/android/os/
FileBridge.java 100 final int cmd = Memory.peekInt(temp, 0, ByteOrder.BIG_ENDIAN);
103 int len = Memory.peekInt(temp, 4, ByteOrder.BIG_ENDIAN);
166 Memory.pokeInt(mTemp, 0, cmd, ByteOrder.BIG_ENDIAN);
171 if (Memory.peekInt(mTemp, 0, ByteOrder.BIG_ENDIAN) == cmd) {
182 Memory.pokeInt(mTemp, 0, CMD_WRITE, ByteOrder.BIG_ENDIAN);
183 Memory.pokeInt(mTemp, 4, byteCount, ByteOrder.BIG_ENDIAN);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
UUIDConverter.java 45 b.order(ByteOrder.BIG_ENDIAN);
  /frameworks/base/wifi/java/android/net/wifi/aware/
TlvBufferUtils.java 224 Memory.pokeShort(mArray, mPosition, data, ByteOrder.BIG_ENDIAN);
242 Memory.pokeInt(mArray, mPosition, data, ByteOrder.BIG_ENDIAN);
301 Memory.pokeShort(mArray, mPosition, (short) type, ByteOrder.BIG_ENDIAN);
308 Memory.pokeShort(mArray, mPosition, (short) length, ByteOrder.BIG_ENDIAN);
382 return Memory.peekShort(refArray, offset, ByteOrder.BIG_ENDIAN);
397 return Memory.peekInt(refArray, offset, ByteOrder.BIG_ENDIAN);
519 type = Memory.peekShort(mArray, mOffset, ByteOrder.BIG_ENDIAN);
527 length = Memory.peekShort(mArray, mOffset, ByteOrder.BIG_ENDIAN);
573 ByteOrder.BIG_ENDIAN);
  /system/nfc/halimpl/bcm2079x/gki/common/
gki_inet.h 29 #if (BIG_ENDIAN == TRUE)
  /system/nfc/src/gki/common/
gki_inet.h 29 #if (BIG_ENDIAN == TRUE)

Completed in 460 milliseconds

1 2 3 4 5 6 7 8 91011>>