Searched refs:htobe32 (Results 1 – 15 of 15) sorted by relevance
52 h.key_num_bits = htobe32(n32); in TEST_F()54 h.n0inv = htobe32(n32); in TEST_F()78 h.version_major = htobe32(AVB_FOOTER_VERSION_MAJOR); in TEST_F()79 h.version_minor = htobe32(AVB_FOOTER_VERSION_MINOR); in TEST_F()103 h.version_minor = htobe32(AVB_FOOTER_VERSION_MINOR + 1); in TEST_F()113 bad.version_major = htobe32(AVB_FOOTER_VERSION_MAJOR + 1); in TEST_F()128 h.kernel_cmdline_length = htobe32(40); in TEST_F()131 h.flags = htobe32(n32); in TEST_F()151 bad.kernel_cmdline_length = htobe32(41); in TEST_F()167 h.partition_name_len = htobe32(10); in TEST_F()[all …]
158 h->required_libavb_version_major = htobe32(1 + AVB_VERSION_MAJOR); in TEST_F()170 h->required_libavb_version_minor = htobe32(1 + AVB_VERSION_MINOR); in TEST_F()249 htobe32(be32toh(h->authentication_data_block_size) - 32); in TEST_F()256 htobe32(be32toh(h->auxiliary_data_block_size) - 32); in TEST_F()374 h->algorithm_type = htobe32(_AVB_ALGORITHM_NUM_TYPES); in TEST_F()501 h.required_libavb_version_major = htobe32(n32); in TEST_F()503 h.required_libavb_version_minor = htobe32(n32); in TEST_F()509 h.algorithm_type = htobe32(n32); in TEST_F()533 h.flags = htobe32(n32); in TEST_F()
29 # define htobe32(x) OSSwapHostToBigInt32(x) macro73 # define htobe32(x) htonl(x) macro91 # define htobe32(x) (x) macro
26 # define htobe32(x) __bswap_32 (x) macro41 # define htobe32(x) (x) macro
53 # define htobe32(x) OSSwapHostToBigInt32(x) macro99 # define htobe32(x) htonl(x) macro117 # define htobe32(x) (x) macro
32 #define htobe32(host_32bits) \ macro
33 uint32_t ese_htobe32(uint32_t host_32bits) { return htobe32(host_32bits); } in ese_htobe32()
41 uint32_t tmp = htobe32( in SwapNativeAndPortableLayout()44 htobe32(*(uint32_t*)((uint8_t*)src + i + 32 - sizeof(uint32_t) - j)); in SwapNativeAndPortableLayout()
221 #ifndef htobe32222 # define htobe32(x) htonl(x)232 #define HTOBE32(x) (x) = htobe32(x)358 # define htobe32a(a,x) *(uint32_t*)(a) = htobe32(x)
221 #define htobe32(x) htonl(x)226 #define HTOBE32(x) (x) = htobe32(x)305 #define htobe32a(a,x) *(uint32_t*)(a) = htobe32(x)
81 uint32_t be_header_size = htobe32(header_size); in CreatePatch()
68 _val = is_be ? htobe32(val) : htole32(val); \
1113 val = htobe32(val); in read_const_arg()
73 #define cpu_to_be32 htobe32
46 return ((params->byteorder==PTP_DL_LE)?htole32(var):htobe32(var)); in htod32p()