Home
last modified time | relevance | path

Searched refs:be32toh (Results 1 – 21 of 21) sorted by relevance

/external/kmod/port-gnu/
Dendian-darwin.h31 # define be32toh(x) OSSwapBigToHostInt32(x) macro
55 # define be32toh(x) betoh32(x) macro
75 # define be32toh(x) ntohl(x) macro
93 # define be32toh(x) (x) macro
/external/epid-sdk/epid/member/tiny/src/
Dsetsigrl.c39 n2_in = be32toh(sig_rl->n2); in EpidMemberSetSigRl()
56 uint32_t current_ver = be32toh(ctx->sig_rl->version); in EpidMemberSetSigRl()
57 uint32_t incoming_ver = be32toh(sig_rl->version); in EpidMemberSetSigRl()
Dsign.c37 uint32_t n2 = be32toh(sig_rl->n2); in EpidGetSigSize()
93 num_sig_rl = be32toh(ctx->sig_rl->n2); in EpidSign()
/external/iperf3/src/
Dportable_endian.h28 # define be32toh(x) betoh32(x) macro
55 # define be32toh(x) OSSwapBigToHostInt32(x) macro
101 # define be32toh(x) ntohl(x) macro
119 # define be32toh(x) (x) macro
/external/kmod/shared/
Dmissing.h51 #define be32toh(x) bswap_32 (x) macro
53 #define be32toh(x) (x) macro
/external/vboot_reference/cgpt/
Dcgpt_endian.h28 # define be32toh(x) __bswap_32 (x) macro
43 # define be32toh(x) (x) macro
/external/nos/host/generic/nugget/include/
Dsigned_header.h145 printf("hdr.img_chk : %08x\n", be32toh(img_chk_)); in print()
146 printf("hdr.fuses_chk : %08x\n", be32toh(fuses_chk_)); in print()
147 printf("hdr.info_chk : %08x\n", be32toh(info_chk_)); in print()
/external/elfutils/libdwfl/
Dlinux-core-attach.c156 ? be32toh (val32) : le32toh (val32)); in core_next_thread()
209 ? be32toh (val32) : le32toh (val32)); in core_set_initial_registers()
226 ? be32toh (val32) : le32toh (val32)); in core_set_initial_registers()
268 ? be32toh (val32) : le32toh (val32)); in core_set_initial_registers()
403 ? be32toh (val32) : le32toh (val32)); in dwfl_core_file_attach()
/external/epid-sdk/epid/member/tiny/stdlib/
Dendian.h25 #define be32toh(big_endian_32bits) \ macro
/external/u-boot/tools/
Dmips-relocs.c41 _val = is_be ? be32toh(_val) : le32toh(_val); \
154 off = is_be ? be32toh(rel->r_offset) : le32toh(rel->r_offset); in parse_mips32_rel()
157 type = is_be ? be32toh(rel->r_info) : le32toh(rel->r_info); in parse_mips32_rel()
/external/libese/libese-sysdeps/
Dandroid-sysdeps.c30 return be32toh(big_endian_32bits); in ese_be32toh()
/external/libmtp/m4/
Dbyteorder.m4227 #ifndef be32toh
228 # define be32toh(x) ntohl(x)
233 #define BE32TOH(x) (x) = be32toh(x)
339 # define be32atoh(x) be32toh(*(uint32_t*)(x))
/external/libexif/m4m/
Dgp-byteorder.m4223 #define be32toh(x) ntohl(x)
227 #define BE32TOH(x) (x) = be32toh(x)
298 #define be32atoh(x) be32toh(*(uint32_t*)(x))
/external/kmod/
Dconfigure.ac57 # RHEL 5 and older do not have be32toh
58 AC_CHECK_DECLS_ONCE([be32toh])
DNEWS209 - Allow to build with libc's without be32toh()
/external/puffin/src/
Dpuffpatch.cc120 header_size = be32toh(header_size); in DecodePatch()
/external/avb/test/
Davb_vbmeta_image_unittest.cc249 htobe32(be32toh(h->authentication_data_block_size) - 32); in TEST_F()
256 htobe32(be32toh(h->auxiliary_data_block_size) - 32); in TEST_F()
Davb_util_unittest.cc522 TEST_F(UtilTest, be32toh) { in TEST_F() argument
523 EXPECT_EQ(avb_be32toh(0x12345678), be32toh(0x12345678)); in TEST_F()
/external/kmod/libkmod/
Dlibkmod-signature.c345 sig_len = be32toh(get_unaligned(&modsig->sig_len)); in kmod_module_signature_info()
/external/nos/host/generic/citadel/updater/
Dupdater.cpp539 hdr->epoch_, hdr->major_, hdr->minor_, be32toh(hdr->img_chk_), in show_ro_string()
/external/libmtp/src/
Dptp-pack.c85 return ((params->byteorder==PTP_DL_LE)?le32toh(var):be32toh(var)); in dtoh32p()