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

  /bionic/tests/
endian_test.cpp 26 static constexpr uint32_t be32 = 0x78563412; variable
46 ASSERT_EQ(be32, htonl(le32));
56 ASSERT_EQ(le32, ntohl(be32));
65 ASSERT_EQ(be32, htobe32(le32));
77 ASSERT_EQ(le32, be32toh(be32));
90 ASSERT_EQ(le32, betoh32(be32));
netinet_in_test.cpp 30 static constexpr uint32_t be32 = 0x78563412; variable
53 ASSERT_EQ(be32, (htonl)(le32));
69 ASSERT_EQ(le32, (ntohl)(be32));
  /system/core/base/
endian_test.cpp 35 static constexpr uint32_t be32 = 0x78563412; local
39 ASSERT_EQ(be32, htonl(le32));
43 ASSERT_EQ(le32, ntohl(be32));
47 ASSERT_EQ(be32, htobe32(le32));
51 ASSERT_EQ(le32, betoh32(be32));
63 ASSERT_EQ(le32, be32toh(be32));
  /external/wpa_supplicant_8/src/utils/
common.h 171 #define be_to_host32(n) bswap_32((__force u32) (be32) (n))
172 #define host_to_be32(n) ((__force be32) bswap_32((n)))
431 typedef u32 __bitwise be32; typedef

Completed in 273 milliseconds