Home
last modified time | relevance | path

Searched refs:htobe32 (Results 1 – 15 of 15) sorted by relevance

/external/avb/test/
Davb_util_unittest.cc52 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 …]
Davb_vbmeta_image_unittest.cc158 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()
/external/kmod/port-gnu/
Dendian-darwin.h29 # define htobe32(x) OSSwapHostToBigInt32(x) macro
73 # define htobe32(x) htonl(x) macro
91 # define htobe32(x) (x) macro
/external/vboot_reference/cgpt/
Dcgpt_endian.h26 # define htobe32(x) __bswap_32 (x) macro
41 # define htobe32(x) (x) macro
/external/iperf3/src/
Dportable_endian.h53 # define htobe32(x) OSSwapHostToBigInt32(x) macro
99 # define htobe32(x) htonl(x) macro
117 # define htobe32(x) (x) macro
/external/epid-sdk/epid/member/tiny/stdlib/
Dendian.h32 #define htobe32(host_32bits) \ macro
/external/libese/libese-sysdeps/
Dandroid-sysdeps.c33 uint32_t ese_htobe32(uint32_t host_32bits) { return htobe32(host_32bits); } in ese_htobe32()
/external/epid-sdk/epid/member/tiny/math/src/
Dserialize.c41 uint32_t tmp = htobe32( in SwapNativeAndPortableLayout()
44 htobe32(*(uint32_t*)((uint8_t*)src + i + 32 - sizeof(uint32_t) - j)); in SwapNativeAndPortableLayout()
/external/libmtp/m4/
Dbyteorder.m4221 #ifndef htobe32
222 # define htobe32(x) htonl(x)
232 #define HTOBE32(x) (x) = htobe32(x)
358 # define htobe32a(a,x) *(uint32_t*)(a) = htobe32(x)
/external/libexif/m4m/
Dgp-byteorder.m4221 #define htobe32(x) htonl(x)
226 #define HTOBE32(x) (x) = htobe32(x)
305 #define htobe32a(a,x) *(uint32_t*)(a) = htobe32(x)
/external/puffin/src/
Dpuffdiff.cc81 uint32_t be_header_size = htobe32(header_size); in CreatePatch()
/external/u-boot/tools/
Dmips-relocs.c68 _val = is_be ? htobe32(val) : htole32(val); \
/external/syzkaller/executor/
Dexecutor.cc1113 val = htobe32(val); in read_const_arg()
/external/u-boot/lib/
Dbch.c73 #define cpu_to_be32 htobe32
/external/libmtp/src/
Dptp-pack.c46 return ((params->byteorder==PTP_DL_LE)?htole32(var):htobe32(var)); in htod32p()