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

1 2 3 4 5 6 7 8 91011>>

  /cts/suite/audio_quality/lib/src/audio/
AudioProtocol.cpp 31 mBuffer[0] = htonl(mCommand);
93 mBuffer[0] = htonl(ECmdDownload);
94 mBuffer[1] = htonl(4 + param.mBuffer->getSize());
95 mBuffer[2] = htonl(param.mId);
111 mBuffer[0] = htonl(ECmdStartPlayback);
112 mBuffer[1] = htonl(20);
113 mBuffer[2] = htonl(param.mId);
114 mBuffer[3] = htonl(param.mSamplingF);
117 mBuffer[4] = htonl(mode);
118 mBuffer[5] = htonl(param.mVolume)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
igmp.h 119 #define IGMP_ALL_HOSTS htonl(0xE0000001L)
120 #define IGMP_ALL_ROUTER htonl(0xE0000002L)
121 #define IGMPV3_ALL_MCR htonl(0xE0000016L)
122 #define IGMP_LOCAL_GROUP htonl(0xE0000000L)
123 #define IGMP_LOCAL_GROUP_MASK htonl(0xFFFFFF00L)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
igmp.h 119 #define IGMP_ALL_HOSTS htonl(0xE0000001L)
120 #define IGMP_ALL_ROUTER htonl(0xE0000002L)
121 #define IGMPV3_ALL_MCR htonl(0xE0000016L)
122 #define IGMP_LOCAL_GROUP htonl(0xE0000000L)
123 #define IGMP_LOCAL_GROUP_MASK htonl(0xFFFFFF00L)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
igmp.h 119 #define IGMP_ALL_HOSTS htonl(0xE0000001L)
120 #define IGMP_ALL_ROUTER htonl(0xE0000002L)
121 #define IGMPV3_ALL_MCR htonl(0xE0000016L)
122 #define IGMP_LOCAL_GROUP htonl(0xE0000000L)
123 #define IGMP_LOCAL_GROUP_MASK htonl(0xFFFFFF00L)
  /frameworks/av/media/common_time/
utils.cpp 69 s->sin_addr.s_addr = htonl(p->readInt32());
78 a[0] = htonl(p->readInt32());
79 a[1] = htonl(p->readInt32());
80 a[2] = htonl(p->readInt32());
81 a[3] = htonl(p->readInt32());
83 s->sin6_flowinfo = htonl(p->readInt32());
84 s->sin6_scope_id = htonl(p->readInt32());
  /external/kernel-headers/original/linux/
in.h 242 /* <asm/byteorder.h> contains the htonl type stuff.. */
247 #define LOOPBACK(x) (((x) & htonl(0xff000000)) == htonl(0x7f000000))
248 #define MULTICAST(x) (((x) & htonl(0xf0000000)) == htonl(0xe0000000))
249 #define BADCLASS(x) (((x) & htonl(0xf0000000)) == htonl(0xf0000000))
250 #define ZERONET(x) (((x) & htonl(0xff000000)) == htonl(0x00000000))
251 #define LOCAL_MCAST(x) (((x) & htonl(0xFFFFFF00)) == htonl(0xE0000000)
    [all...]
  /external/iproute2/tc/
f_rsvp.c 56 pi->key = htonl(((__u32)tmp)<<16);
57 pi->mask = htonl(0xFFFF0000);
60 pi->key = htonl(((__u32)tmp));
61 pi->mask = htonl(0x0000FFFF);
82 pi->mask = htonl(0xFFFFFFFF);
83 pi->key = htonl(gpi);
94 pi->mask = htonl(0xFFFFFFFF);
95 pi->key = htonl(gpi);
107 pi->mask = htonl(0x000FFFFF);
108 pi->key = htonl(flabel) & pi->mask
    [all...]
  /external/dhcpcd/
ipv4ll.c 56 u32 = htonl(LINKLOCAL_MASK);
61 u32 = htonl(LINKLOCAL_BRDC);
75 addr = htonl(LINKLOCAL_ADDR |
96 if (IN_LINKLOCAL(htonl(iface->addr.s_addr))) {
109 if (!IN_LINKLOCAL(htonl(addr))) {
if-pref.c 55 sill = (si->state->new->cookie == htonl(MAGIC_COOKIE));
56 till = (ti->state->new->cookie == htonl(MAGIC_COOKIE));
  /external/mdnsresponder/mDNSShared/
dnssd_ipc.c 156 hdr->version = htonl(hdr->version);
157 hdr->datalen = htonl(hdr->datalen);
158 hdr->ipc_flags = htonl(hdr->ipc_flags);
159 hdr->op = htonl(hdr->op );
160 hdr->reg_index = htonl(hdr->reg_index);
  /external/srtp/crypto/include/
crypto_math.h 153 tmp = htonl(x->v32[3]) + htonl(y->v32[3]); \
156 tmp = htonl(x->v32[2]) + htonl(y->v32[2]) \
157 + htonl(tmp >> 32); \
160 tmp = htonl(x->v32[1]) + htonl(y->v32[1]) \
161 + htonl(tmp >> 32); \
164 tmp = htonl(x->v32[0]) + htonl(y->v32[0])
    [all...]
datatypes.h 297 tmp = htonl(x->v32[3]) + htonl(y->v32[3]); \
300 tmp = htonl(x->v32[2]) + htonl(y->v32[2]) \
301 + htonl(tmp >> 32); \
304 tmp = htonl(x->v32[1]) + htonl(y->v32[1]) \
305 + htonl(tmp >> 32); \
308 tmp = htonl(x->v32[0]) + htonl(y->v32[0])
    [all...]
  /external/kernel-headers/original/linux/byteorder/
generic.h 51 * htonl(__u32 x)
147 #undef htonl macro
155 extern __be32 htonl(__u32);
166 #define htonl(x) ___htonl(x) macro
  /external/webkit/Source/WebCore/platform/graphics/
WOFFFileFormat.cpp 40 #define htonl(x) std_htonl(x) macro
51 #define htonl(x) ((uint32_t)(x)) macro
56 #define htonl(x) ntohl(x) macro
62 #define htonl(x) ntohl(x) macro
94 uint32_t bigEndianValue = htonl(value);
222 *sfntTableDirectoryPtr++ = htonl(tableTag);
223 *sfntTableDirectoryPtr++ = htonl(tableOrigChecksum);
224 *sfntTableDirectoryPtr++ = htonl(sfnt.size());
225 *sfntTableDirectoryPtr++ = htonl(tableOrigLength);
  /external/bluetooth/bluedroid/gki/common/
gki_inet.h 24 #define htonl ntohl macro
  /external/libnfc-nci/halimpl/bcm2079x/gki/common/
gki_inet.h 24 #define htonl ntohl macro
  /external/libnfc-nci/src/gki/common/
gki_inet.h 24 #define htonl ntohl macro
  /external/chromium/net/spdy/
spdy_protocol.h 318 id = htonl(id & kSettingsIdMask);
376 length = htonl(length & kLengthMask);
415 frame_->data_.stream_id_ = htonl(id & kStreamIdMask);
507 mutable_block()->stream_id_ = htonl(id & kStreamIdMask);
515 mutable_block()->associated_stream_id_ = htonl(id & kStreamIdMask);
557 mutable_block()->stream_id_ = htonl(id & kStreamIdMask);
594 mutable_block()->stream_id_ = htonl(id & kStreamIdMask);
606 mutable_block()->status_ = htonl(static_cast<uint32>(status));
634 mutable_block()->num_entries_ = htonl(val);
679 mutable_block()->unique_id_ = htonl(unique_id)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
jfs_compat.h 18 #define cpu_to_be32(n) htonl(n)
mkjournal.c 59 jsb->s_header.h_magic = htonl(JFS_MAGIC_NUMBER);
61 jsb->s_header.h_blocktype = htonl(JFS_SUPERBLOCK_V1);
63 jsb->s_header.h_blocktype = htonl(JFS_SUPERBLOCK_V2);
64 jsb->s_blocksize = htonl(fs->blocksize);
65 jsb->s_maxlen = htonl(size);
66 jsb->s_nr_users = htonl(1);
67 jsb->s_first = htonl(1);
68 jsb->s_sequence = htonl(1);
78 jsb->s_first = htonl(3);
80 jsb->s_first = htonl(2)
    [all...]
  /external/ppp/pppd/plugins/radius/
ip_util.c 106 UINT4 n_ipaddr = htonl (h_ipaddr);
  /external/webkit/Source/WebKit/android/wds/
Connection.cpp 62 addr.sin_addr.s_addr = htonl(INADDR_ANY);
  /system/core/libcutils/
socket_inaddr_any_server.c 45 addr.sin_addr.s_addr = htonl(INADDR_ANY);
socket_loopback_client.c 46 addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
socket_loopback_server.c 45 addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);

Completed in 876 milliseconds

1 2 3 4 5 6 7 8 91011>>