Home
last modified time | relevance | path

Searched refs:__force (Results 1 – 5 of 5) sorted by relevance

/DragonStub/inc/dragonstub/linux/
H A Dbyteorder_little_endian.h16 #define __constant_htonl(x) ((__force __be32)___constant_swab32((x)))
17 #define __constant_ntohl(x) ___constant_swab32((__force __be32)(x))
18 #define __constant_htons(x) ((__force __be16)___constant_swab16((x)))
19 #define __constant_ntohs(x) ___constant_swab16((__force __be16)(x))
20 #define __constant_cpu_to_le64(x) ((__force __le64)(__u64)(x))
21 #define __constant_le64_to_cpu(x) ((__force __u64)(__le64)(x))
22 #define __constant_cpu_to_le32(x) ((__force __le32)(__u32)(x))
23 #define __constant_le32_to_cpu(x) ((__force __u32)(__le32)(x))
24 #define __constant_cpu_to_le16(x) ((__force __le16)(__u16)(x))
25 #define __constant_le16_to_cpu(x) ((__force __u16)(__le16)(x))
[all …]
H A Derr.h49 static inline long __must_check PTR_ERR(__force const void *ptr) in PTR_ERR()
59 static inline bool __must_check IS_ERR(__force const void *ptr) in IS_ERR()
70 static inline bool __must_check IS_ERR_OR_NULL(__force const void *ptr) in IS_ERR_OR_NULL()
82 static inline void * __must_check ERR_CAST(__force const void *ptr) in ERR_CAST()
105 static inline int __must_check PTR_ERR_OR_ZERO(__force const void *ptr) in PTR_ERR_OR_ZERO()
H A Dcompiler.h29 #define is_signed_type(type) (((type)(-1)) < (__force type)1)
/DragonStub/inc/dragonstub/
H A Dcompiler_types.h52 #define __force __attribute__((force)) macro
57 (*((typeof((p)->member) __force *)&(p)->member))
81 #define __force macro
/DragonStub/apps/lib/
H A Dvsprintf.c91 #define _(x) (__force u16) cpu_to_le16(((x % 10) | ((x / 10) << 8)) + 0x3030)