HomeSort by relevance Sort by last modified time
    Searched defs:ntohl (Results 1 - 20 of 20) sorted by null

  /external/grub/netboot/
osdep.h 38 #define ntohl(x) \ macro
  /external/webkit/Source/WebCore/platform/graphics/
WOFFFileFormat.cpp 42 #define ntohl(x) std_ntohl(x) macro
50 #define ntohl(x) ((uint32_t)(x)) macro
55 #define ntohl(x) ((uint32_t)((((uint32_t)(x) & 0xffff0000) >> 16) | (((uint32_t)(x) & 0xffff) << 16)) macro
56 #define htonl(x) ntohl(x)
60 #define ntohl(x) ((uint32_t)((((uint32_t)(x) & 0xff000000) >> 24) | (((uint32_t)(x) & 0x00ff0000) >> 8) | \ macro
62 #define htonl(x) ntohl(x)
74 value = ntohl(*reinterpret_cast<const uint32_t*>(buffer->data() + offset));
  /external/tcpdump/
tcpdump-stdinc.h 147 #undef ntohl macro
155 #define ntohl(x) __ntohl(x) macro
  /bionic/libc/include/sys/
endian.h 208 #define ntohl(x) __swap32(x) macro
247 #define ntohl(x) (x) macro
258 #define NTOHL(x) (x) = ntohl((u_int32_t)(x))
  /development/ndk/platforms/android-3/include/sys/
endian.h 208 #define ntohl(x) __swap32(x) macro
247 #define ntohl(x) (x) macro
258 #define NTOHL(x) (x) = ntohl((u_int32_t)(x))
  /external/grub/stage2/
imgact_aout.h 38 * 11/23/95 - Kludge to get "ntohl" null macro added. -- ESB
46 #define ntohl(x) ((x << 24) | ((x & 0xFF00) << 8) \ macro
48 #define htonl(x) ntohl(x)
64 (ntohl((ex).a_midmag) & 0xffff)
66 ((ntohl((ex).a_midmag) >> 16) & 0x03ff)
68 ((ntohl((ex).a_midmag) >> 26) & 0x3f)
  /external/kernel-headers/original/linux/byteorder/
generic.h 49 * ntohl(__u32 x)
58 * unsigned long inline ntohl(x){return ___ntohl(x);}
132 * Handle ntohl and suches. These have various compatibility
145 #undef ntohl macro
154 extern __u32 ntohl(__be32);
167 #define ntohl(x) ___ntohl(x) macro
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/sys/
endian.h 208 #define ntohl(x) __swap32(x) macro
247 #define ntohl(x) (x) macro
258 #define NTOHL(x) (x) = ntohl((u_int32_t)(x))
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/sys/
endian.h 208 #define ntohl(x) __swap32(x) macro
247 #define ntohl(x) (x) macro
258 #define NTOHL(x) (x) = ntohl((u_int32_t)(x))
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/sys/
endian.h 208 #define ntohl(x) __swap32(x) macro
247 #define ntohl(x) (x) macro
258 #define NTOHL(x) (x) = ntohl((u_int32_t)(x))
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/sys/
endian.h 208 #define ntohl(x) __swap32(x) macro
247 #define ntohl(x) (x) macro
258 #define NTOHL(x) (x) = ntohl((u_int32_t)(x))
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/sys/
endian.h 208 #define ntohl(x) __swap32(x) macro
247 #define ntohl(x) (x) macro
258 #define NTOHL(x) (x) = ntohl((u_int32_t)(x))
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/sys/
endian.h 208 #define ntohl(x) __swap32(x) macro
247 #define ntohl(x) (x) macro
258 #define NTOHL(x) (x) = ntohl((u_int32_t)(x))
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/sys/
endian.h 208 #define ntohl(x) __swap32(x) macro
247 #define ntohl(x) (x) macro
258 #define NTOHL(x) (x) = ntohl((u_int32_t)(x))
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/sys/
endian.h 208 #define ntohl(x) __swap32(x) macro
247 #define ntohl(x) (x) macro
258 #define NTOHL(x) (x) = ntohl((u_int32_t)(x))
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/sys/
endian.h 208 #define ntohl(x) __swap32(x) macro
247 #define ntohl(x) (x) macro
258 #define NTOHL(x) (x) = ntohl((u_int32_t)(x))
  /external/valgrind/main/coregrind/
m_libcfile.c 670 UInt VG_(ntohl) ( UInt x ) function
  /frameworks/base/libs/utils/
Unicode.cpp 28 # define ntohl(x) ( ((x) << 24) | (((x) >> 24) & 255) | (((x) << 8) & 0xff0000) | (((x) >> 8) & 0xff00) ) macro
29 # define htonl(x) ntohl(x)
33 # define ntohl(x) (x) macro
ResourceTypes.cpp 54 #define ntohl(x) ( ((x) << 24) | (((x) >> 24) & 255) | (((x) << 8) & 0xff0000) | (((x) >> 8) & 0xff00) ) macro
55 #define htonl(x) ntohl(x)
59 #define ntohl(x) (x)
156 xDivs[i] = ntohl(xDivs[i]);
159 yDivs[i] = ntohl(yDivs[i]);
161 paddingLeft = ntohl(paddingLeft);
162 paddingRight = ntohl(paddingRight);
163 paddingTop = ntohl(paddingTop);
164 paddingBottom = ntohl(paddingBottom);
166 colors[i] = ntohl(colors[i])
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/netinet/
in.h 352 extern uint32_t ntohl (uint32_t __netlong) __THROW __attribute__ ((__const__));
372 # define ntohl(x) (x) macro
378 # define ntohl(x) __bswap_32 (x) macro
417 && (ntohl (((__const uint32_t *) (a))[3]) > 1))

Completed in 1008 milliseconds