Home
last modified time | relevance | path

Searched refs:avb_be64toh (Results 1 – 8 of 8) sorted by relevance

/openbmc/u-boot/lib/libavb/
H A Davb_vbmeta_image.c232 avb_be64toh(dest->authentication_data_block_size); in avb_vbmeta_image_header_to_host_byte_order()
234 avb_be64toh(dest->auxiliary_data_block_size); in avb_vbmeta_image_header_to_host_byte_order()
238 dest->hash_offset = avb_be64toh(dest->hash_offset); in avb_vbmeta_image_header_to_host_byte_order()
239 dest->hash_size = avb_be64toh(dest->hash_size); in avb_vbmeta_image_header_to_host_byte_order()
241 dest->signature_offset = avb_be64toh(dest->signature_offset); in avb_vbmeta_image_header_to_host_byte_order()
242 dest->signature_size = avb_be64toh(dest->signature_size); in avb_vbmeta_image_header_to_host_byte_order()
244 dest->public_key_offset = avb_be64toh(dest->public_key_offset); in avb_vbmeta_image_header_to_host_byte_order()
245 dest->public_key_size = avb_be64toh(dest->public_key_size); in avb_vbmeta_image_header_to_host_byte_order()
248 avb_be64toh(dest->public_key_metadata_offset); in avb_vbmeta_image_header_to_host_byte_order()
249 dest->public_key_metadata_size = avb_be64toh(dest->public_key_metadata_size); in avb_vbmeta_image_header_to_host_byte_order()
[all …]
H A Davb_hashtree_descriptor.c25 dest->image_size = avb_be64toh(dest->image_size); in avb_hashtree_descriptor_validate_and_byteswap()
26 dest->tree_offset = avb_be64toh(dest->tree_offset); in avb_hashtree_descriptor_validate_and_byteswap()
27 dest->tree_size = avb_be64toh(dest->tree_size); in avb_hashtree_descriptor_validate_and_byteswap()
31 dest->fec_offset = avb_be64toh(dest->fec_offset); in avb_hashtree_descriptor_validate_and_byteswap()
32 dest->fec_size = avb_be64toh(dest->fec_size); in avb_hashtree_descriptor_validate_and_byteswap()
H A Davb_descriptor.c12 dest->tag = avb_be64toh(src->tag); in avb_descriptor_validate_and_byteswap()
13 dest->num_bytes_following = avb_be64toh(src->num_bytes_following); in avb_descriptor_validate_and_byteswap()
60 avb_be64toh(header->authentication_data_block_size) + in avb_descriptor_foreach()
61 avb_be64toh(header->descriptors_offset); in avb_descriptor_foreach()
63 desc_end = desc_start + avb_be64toh(header->descriptors_size); in avb_descriptor_foreach()
74 uint64_t nb_following = avb_be64toh(dh->num_bytes_following); in avb_descriptor_foreach()
H A Davb_footer.c15 dest->original_image_size = avb_be64toh(dest->original_image_size); in avb_footer_validate_and_byteswap()
16 dest->vbmeta_offset = avb_be64toh(dest->vbmeta_offset); in avb_footer_validate_and_byteswap()
17 dest->vbmeta_size = avb_be64toh(dest->vbmeta_size); in avb_footer_validate_and_byteswap()
H A Davb_property_descriptor.c24 dest->key_num_bytes = avb_be64toh(dest->key_num_bytes); in avb_property_descriptor_validate_and_byteswap()
25 dest->value_num_bytes = avb_be64toh(dest->value_num_bytes); in avb_property_descriptor_validate_and_byteswap()
H A Davb_hash_descriptor.c24 dest->image_size = avb_be64toh(dest->image_size); in avb_hash_descriptor_validate_and_byteswap()
H A Davb_util.h134 uint64_t avb_be64toh(uint64_t in) AVB_ATTR_WARN_UNUSED_RESULT;
H A Davb_util.c20 uint64_t avb_be64toh(uint64_t in) { in avb_be64toh() function