OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HostToNet32
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/base/
sys_byteorder.h
129
inline uint32
HostToNet32
(uint32 x) {
/external/chromium_org/sync/util/
nigori.cc
33
uint32 size = base::
HostToNet32
(value.size());
43
uint32 size = base::
HostToNet32
(sizeof(uint32));
45
uint32 value = base::
HostToNet32
(type);
/external/chromium_org/net/spdy/
spdy_test_utils.cc
106
int32 wire_length = base::
HostToNet32
(length);
/external/chromium_org/crypto/
p224.cc
18
using base::
HostToNet32
;
632
out[6] =
HostToNet32
((in[0] >> 0) | (in[1] << 28));
633
out[5] =
HostToNet32
((in[1] >> 4) | (in[2] << 24));
634
out[4] =
HostToNet32
((in[2] >> 8) | (in[3] << 20));
635
out[3] =
HostToNet32
((in[3] >> 12) | (in[4] << 16));
636
out[2] =
HostToNet32
((in[4] >> 16) | (in[5] << 12));
637
out[1] =
HostToNet32
((in[5] >> 20) | (in[6] << 8));
638
out[0] =
HostToNet32
((in[6] >> 24) | (in[7] << 4));
symmetric_key_win.cc
266
uint32 big_endian_block_index = base::
HostToNet32
(block_index);
/external/chromium_org/chrome/browser/safe_browsing/
protocol_parser.cc
384
*chunk_id = base::
HostToNet32
(*chunk_id);
/external/chromium_org/content/browser/renderer_host/p2p/
socket_host_test_utils.h
276
base::
HostToNet32
(kStunMagicCookie);
/external/chromium_org/net/server/
web_socket.cc
41
return base::
HostToNet32
(static_cast<uint32>(number / spaces));
Completed in 159 milliseconds