Home
last modified time | relevance | path

Searched refs:htole32 (Results 1 – 14 of 14) sorted by relevance

/OK3568_Linux_fs/kernel/tools/usb/ffs-aio-example/multibuff/device_app/
H A Daio_multibuff.c79 .magic = htole32(FUNCTIONFS_DESCRIPTORS_MAGIC_V2),
80 .flags = htole32(FUNCTIONFS_HAS_FS_DESC |
84 .length = htole32(sizeof(descriptors)),
86 .fs_count = htole32(3),
108 .hs_count = htole32(3),
132 .ss_count = htole32(5),
167 .os_count = htole32(1),
169 .interface = htole32(1),
170 .dwLength = htole32(sizeof(descriptors.os_header) +
172 .bcdVersion = htole32(1),
[all …]
/OK3568_Linux_fs/kernel/tools/usb/ffs-aio-example/simple/device_app/
H A Daio_simple.c77 .magic = htole32(FUNCTIONFS_DESCRIPTORS_MAGIC_V2),
78 .flags = htole32(FUNCTIONFS_HAS_FS_DESC |
82 .length = htole32(sizeof(descriptors)),
84 .fs_count = htole32(3),
106 .hs_count = htole32(3),
130 .ss_count = htole32(5),
165 .os_count = htole32(1),
167 .interface = htole32(1),
168 .dwLength = htole32(sizeof(descriptors.os_header) +
170 .bcdVersion = htole32(1),
[all …]
/OK3568_Linux_fs/kernel/tools/include/tools/
H A Dendian.h12 #ifndef htole32
13 #define htole32(x) (x) macro
36 #ifndef htole32
37 #define htole32(x) __bswap_32(x) macro
/OK3568_Linux_fs/app/forlinx/quectelCM/
H A Dmbim-cm.c37 #ifndef htole32
42 #define htole32(x) (uint32_t)(x) macro
64 #define htole32(x) __bswap32(x) macro
889 pRequest->MessageHeader.MessageType = htole32(MBIM_OPEN_MSG); in compose_open_command()
890 pRequest->MessageHeader.MessageLength = htole32(sizeof(MBIM_COMMAND_MSG_T)); in compose_open_command()
891 pRequest->MessageHeader.TransactionId = htole32(TransactionId++); in compose_open_command()
892 pRequest->MaxControlTransfer = htole32(MaxControlTransfer); in compose_open_command()
904 pRequest->MessageHeader.MessageType = htole32(MBIM_CLOSE_MSG); in compose_close_command()
905 pRequest->MessageHeader.MessageLength = htole32(sizeof(MBIM_CLOSE_MSG_T)); in compose_close_command()
906 pRequest->MessageHeader.TransactionId = htole32(TransactionId++); in compose_close_command()
[all …]
H A Dquectel-qmi-proxy.c40 #ifndef htole32
45 #define htole32(x) (uint32_t)(x) macro
67 #define htole32(x) __bswap32(x) macro
H A DReleaseNote.txt73 1. very old uclib do not support htole32 and pthread_condattr_setclock
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/
H A Dendian.h45 # define htole32(x) __uint32_identity (x) macro
61 # define htole32(x) __bswap_32 (x) macro
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/
H A Dendian.h45 # define htole32(x) __uint32_identity (x) macro
61 # define htole32(x) __bswap_32 (x) macro
/OK3568_Linux_fs/buildroot/package/android-tools/
H A D0006-fix-big-endian-build.patch27 -#define cpu_to_le32(x) htole32(x)
49 -#define cpu_to_le32(x) htole32(x)
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/
H A Dendianess-header.patch49 +# define htole32(x) (x)
64 +# define htole32(x) __bswap_32 (x)
H A Dendian-ness_handling.patch369 + return htole32(x);
/OK3568_Linux_fs/kernel/tools/bootconfig/
H A Dmain.c432 *(u32 *)p = htole32(size); in apply_xbc()
435 *(u32 *)p = htole32(csum); in apply_xbc()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/core/
H A D0004-adb-Fix-build-on-big-endian-systems.patch33 -#define cpu_to_le32(x) htole32(x)
/OK3568_Linux_fs/u-boot/tools/
H A Dmips-relocs.c69 _val = is_be ? htobe32(val) : htole32(val); \