RT-Thread RTOS 1.2.0
An open source embedded real-time operating system
载入中...
搜索中...
未找到
byteorder.h 文件参考
+ 此图展示该文件被哪些文件直接或间接地引用了:

浏览该文件的源代码.

宏定义

#define __bitwise
 
#define rt_cpu_to_be16(x)
 
#define rt_cpu_to_be32(x)
 
#define rt_cpu_to_be64(x)
 
#define rt_be16_to_cpu(x)
 
#define rt_be32_to_cpu(x)
 
#define rt_be64_to_cpu(x)
 
#define rt_le16_to_cpu(x)
 
#define rt_le32_to_cpu(x)
 
#define rt_le64_to_cpu(x)
 
#define rt_cpu_to_le16(x)
 
#define rt_cpu_to_le32(x)
 
#define rt_cpu_to_le64(x)
 

类型定义

typedef rt_uint16_t __bitwise rt_le16_t
 
typedef rt_uint32_t __bitwise rt_le32_t
 
typedef rt_uint64_t __bitwise rt_le64_t
 
typedef rt_uint16_t __bitwise rt_be16_t
 
typedef rt_uint32_t __bitwise rt_be32_t
 
typedef rt_uint64_t __bitwise rt_be64_t
 

宏定义说明

◆ __bitwise

#define __bitwise

在文件 byteorder.h17 行定义.

◆ rt_cpu_to_be16

#define rt_cpu_to_be16 ( x)
值:
__builtin_bswap16(x)

在文件 byteorder.h42 行定义.

◆ rt_cpu_to_be32

#define rt_cpu_to_be32 ( x)
值:
__builtin_bswap32(x)

在文件 byteorder.h43 行定义.

◆ rt_cpu_to_be64

#define rt_cpu_to_be64 ( x)
值:
__builtin_bswap64(x)

在文件 byteorder.h44 行定义.

◆ rt_be16_to_cpu

#define rt_be16_to_cpu ( x)
值:
__builtin_bswap16(x)

在文件 byteorder.h45 行定义.

◆ rt_be32_to_cpu

#define rt_be32_to_cpu ( x)
值:
__builtin_bswap32(x)

在文件 byteorder.h46 行定义.

◆ rt_be64_to_cpu

#define rt_be64_to_cpu ( x)
值:
__builtin_bswap64(x)

在文件 byteorder.h47 行定义.

◆ rt_le16_to_cpu

#define rt_le16_to_cpu ( x)
值:
(x)

在文件 byteorder.h48 行定义.

◆ rt_le32_to_cpu

#define rt_le32_to_cpu ( x)
值:
(x)

在文件 byteorder.h49 行定义.

◆ rt_le64_to_cpu

#define rt_le64_to_cpu ( x)
值:
(x)

在文件 byteorder.h50 行定义.

◆ rt_cpu_to_le16

#define rt_cpu_to_le16 ( x)
值:
(x)

在文件 byteorder.h51 行定义.

◆ rt_cpu_to_le32

#define rt_cpu_to_le32 ( x)
值:
(x)

在文件 byteorder.h52 行定义.

◆ rt_cpu_to_le64

#define rt_cpu_to_le64 ( x)
值:
(x)

在文件 byteorder.h53 行定义.

类型定义说明

◆ rt_le16_t

在文件 byteorder.h20 行定义.

◆ rt_le32_t

在文件 byteorder.h21 行定义.

◆ rt_le64_t

在文件 byteorder.h22 行定义.

◆ rt_be16_t

在文件 byteorder.h23 行定义.

◆ rt_be32_t

在文件 byteorder.h24 行定义.

◆ rt_be64_t

在文件 byteorder.h25 行定义.