Home
last modified time | relevance | path

Searched refs:BYTE_SWAP_32 (Results 1 – 7 of 7) sorted by relevance

/external/arm-trusted-firmware/tools/nxp/create_pbl/
Dcreate_pbl.c172 #define BYTE_SWAP_32(word) ((((word) & 0xff000000) >> 24)| \ macro
337 pbi_stop_cmd = BYTE_SWAP_32(CRC_STOP_CMD_ARM); in add_pbi_stop_cmd()
409 pbi_crc = BYTE_SWAP_32(pbi_crc); in add_pbi_stop_cmd()
475 bootptr_addr = BYTE_SWAP_32(CSF_ADDR_SB); in add_boot_ptr_cmd()
477 bootptr_addr = BYTE_SWAP_32(BOOTPTR_ADDR); in add_boot_ptr_cmd()
478 pblimg.ep = BYTE_SWAP_32(pblimg.ep); in add_boot_ptr_cmd()
510 printf("\nBoot Location Pointer= %x\n", BYTE_SWAP_32(pblimg.ep)); in add_boot_ptr_cmd()
611 uint32_t ALTCBAR_ADDRESS = BYTE_SWAP_32(0x09570158); in add_cpy_cmd()
612 uint32_t WAIT_CMD_WRITE_ADDRESS = BYTE_SWAP_32(0x096100c0); in add_cpy_cmd()
613 uint32_t WAIT_CMD = BYTE_SWAP_32(0x000FFFFF); in add_cpy_cmd()
[all …]
Dbyte_swap.c23 #define BYTE_SWAP_32(word) ((((word) & 0xff000000) >> 24)| \ macro
73 upper_byte = BYTE_SWAP_32(upper_byte); in do_byteswap()
74 lower_byte = BYTE_SWAP_32(lower_byte); in do_byteswap()
/external/tensorflow/tensorflow/core/util/tensor_bundle/
Dbyte_swap.h37 #define BYTE_SWAP_32(x) bswap_32(x) macro
46 #define BYTE_SWAP_32(x) htonl(x) macro
61 #define BYTE_SWAP_32(x) htonl(x) macro
75 #define BYTE_SWAP_32(x) \ macro
Dbyte_swap.cc127 array_32[i] = BYTE_SWAP_32(array_32[i]); in ByteSwapArray()
Dtensor_bundle.cc96 elem_size_uint32 = BYTE_SWAP_32(elem_size_uint32); in ReadStringTensor()
123 length_checksum = need_to_swap_bytes ? BYTE_SWAP_32(raw_length_checksum) in ReadStringTensor()
/external/arm-trusted-firmware/include/drivers/brcm/
Dchimp_nv_defs.h39 #define BYTE_SWAP_32(x) \ macro
48 SIZEOF_IN_BITS(x) == 32 ? BYTE_SWAP_32(x) : (x))
59 #define LE_INT32(x) BYTE_SWAP_32(x)
68 #define BE_INT32(x) BYTE_SWAP_32(x)
/external/tensorflow/tensorflow/core/kernels/image/
Ddecode_image_op.cc173 return BYTE_SWAP_32(x); in ByteSwapInt32ForBigEndian()