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

  /external/libchrome/base/
sys_byteorder.h 98 inline uint32_t HostToNet32(uint32_t x) {
  /external/libweave/third_party/chromium/crypto/
p224.cc 21 inline uint32_t HostToNet32(uint32_t x) {
665 out[6] = HostToNet32((in[0] >> 0) | (in[1] << 28));
666 out[5] = HostToNet32((in[1] >> 4) | (in[2] << 24));
667 out[4] = HostToNet32((in[2] >> 8) | (in[3] << 20));
668 out[3] = HostToNet32((in[3] >> 12) | (in[4] << 16));
669 out[2] = HostToNet32((in[4] >> 16) | (in[5] << 12));
670 out[1] = HostToNet32((in[5] >> 20) | (in[6] << 8));
671 out[0] = HostToNet32((in[6] >> 24) | (in[7] << 4));

Completed in 974 milliseconds