/external/kernel-headers/original/uapi/linux/byteorder/ |
D | little_endian.h | 15 #define __constant_htonl(x) ((__force __be32)___constant_swab32((x))) 16 #define __constant_ntohl(x) ___constant_swab32((__force __be32)(x)) 17 #define __constant_htons(x) ((__force __be16)___constant_swab16((x))) 18 #define __constant_ntohs(x) ___constant_swab16((__force __be16)(x)) 19 #define __constant_cpu_to_le64(x) ((__force __le64)(__u64)(x)) 20 #define __constant_le64_to_cpu(x) ((__force __u64)(__le64)(x)) 21 #define __constant_cpu_to_le32(x) ((__force __le32)(__u32)(x)) 22 #define __constant_le32_to_cpu(x) ((__force __u32)(__le32)(x)) 23 #define __constant_cpu_to_le16(x) ((__force __le16)(__u16)(x)) 24 #define __constant_le16_to_cpu(x) ((__force __u16)(__le16)(x)) [all …]
|
D | big_endian.h | 15 #define __constant_htonl(x) ((__force __be32)(__u32)(x)) 16 #define __constant_ntohl(x) ((__force __u32)(__be32)(x)) 17 #define __constant_htons(x) ((__force __be16)(__u16)(x)) 18 #define __constant_ntohs(x) ((__force __u16)(__be16)(x)) 19 #define __constant_cpu_to_le64(x) ((__force __le64)___constant_swab64((x))) 20 #define __constant_le64_to_cpu(x) ___constant_swab64((__force __u64)(__le64)(x)) 21 #define __constant_cpu_to_le32(x) ((__force __le32)___constant_swab32((x))) 22 #define __constant_le32_to_cpu(x) ___constant_swab32((__force __u32)(__le32)(x)) 23 #define __constant_cpu_to_le16(x) ((__force __le16)___constant_swab16((x))) 24 #define __constant_le16_to_cpu(x) ___constant_swab16((__force __u16)(__le16)(x)) [all …]
|
/external/kernel-headers/original/uapi/sound/ |
D | asound.h | 184 #define SNDRV_PCM_ACCESS_MMAP_INTERLEAVED ((__force snd_pcm_access_t) 0) /* interleaved mmap */ 185 #define SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED ((__force snd_pcm_access_t) 1) /* noninterleaved mmap … 186 #define SNDRV_PCM_ACCESS_MMAP_COMPLEX ((__force snd_pcm_access_t) 2) /* complex mmap */ 187 #define SNDRV_PCM_ACCESS_RW_INTERLEAVED ((__force snd_pcm_access_t) 3) /* readi/writei */ 188 #define SNDRV_PCM_ACCESS_RW_NONINTERLEAVED ((__force snd_pcm_access_t) 4) /* readn/writen */ 192 #define SNDRV_PCM_FORMAT_S8 ((__force snd_pcm_format_t) 0) 193 #define SNDRV_PCM_FORMAT_U8 ((__force snd_pcm_format_t) 1) 194 #define SNDRV_PCM_FORMAT_S16_LE ((__force snd_pcm_format_t) 2) 195 #define SNDRV_PCM_FORMAT_S16_BE ((__force snd_pcm_format_t) 3) 196 #define SNDRV_PCM_FORMAT_U16_LE ((__force snd_pcm_format_t) 4) [all …]
|
D | asequencer.h | 342 #define NO_CLIENT ((__force snd_seq_client_type_t) 0) 343 #define USER_CLIENT ((__force snd_seq_client_type_t) 1) 344 #define KERNEL_CLIENT ((__force snd_seq_client_type_t) 2)
|
/external/e2fsprogs/lib/ext2fs/ |
D | bitops.h | 14 #define ext2fs_cpu_to_le64(x) ((__force __le64)ext2fs_swab64((__u64)(x))) 15 #define ext2fs_le64_to_cpu(x) ext2fs_swab64((__force __u64)(__le64)(x)) 16 #define ext2fs_cpu_to_le32(x) ((__force __le32)ext2fs_swab32((__u32)(x))) 17 #define ext2fs_le32_to_cpu(x) ext2fs_swab32((__force __u32)(__le32)(x)) 18 #define ext2fs_cpu_to_le16(x) ((__force __le16)ext2fs_swab16((__u16)(x))) 19 #define ext2fs_le16_to_cpu(x) ext2fs_swab16((__force __u16)(__le16)(x)) 21 #define ext2fs_cpu_to_be64(x) ((__force __be64)(__u64)(x)) 22 #define ext2fs_be64_to_cpu(x) ((__force __u64)(__be64)(x)) 23 #define ext2fs_cpu_to_be32(x) ((__force __be32)(__u32)(x)) 24 #define ext2fs_be32_to_cpu(x) ((__force __u32)(__be32)(x)) [all …]
|
D | ext2_types.h | 28 #define __force __attribute__((force)) macro 33 #define __force macro
|
D | ext2_types.h.in | 177 #define __force __attribute__((force)) macro 182 #define __force macro
|
/external/wpa_supplicant_8/src/utils/ |
D | common.h | 174 #define le_to_host16(n) ((__force u16) (le16) (n)) 175 #define host_to_le16(n) ((__force le16) (u16) (n)) 176 #define be_to_host16(n) bswap_16((__force u16) (be16) (n)) 177 #define host_to_be16(n) ((__force be16) bswap_16((n))) 178 #define le_to_host32(n) ((__force u32) (le32) (n)) 179 #define host_to_le32(n) ((__force le32) (u32) (n)) 180 #define be_to_host32(n) bswap_32((__force u32) (be32) (n)) 181 #define host_to_be32(n) ((__force be32) bswap_32((n))) 182 #define le_to_host64(n) ((__force u64) (le64) (n)) 183 #define host_to_le64(n) ((__force le64) (u64) (n)) [all …]
|
/external/kernel-headers/original/uapi/asm-generic/ |
D | signal-defs.h | 24 #define SIG_DFL ((__force __sighandler_t)0) /* default signal handling */ 25 #define SIG_IGN ((__force __sighandler_t)1) /* ignore signal */ 26 #define SIG_ERR ((__force __sighandler_t)-1) /* error return from signal */
|
/external/kernel-headers/original/uapi/linux/ |
D | fs.h | 369 #define RWF_HIPRI ((__force __kernel_rwf_t)0x00000001) 372 #define RWF_DSYNC ((__force __kernel_rwf_t)0x00000002) 375 #define RWF_SYNC ((__force __kernel_rwf_t)0x00000004) 378 #define RWF_NOWAIT ((__force __kernel_rwf_t)0x00000008)
|
D | if_tunnel.h | 146 #define VTI_ISVTI ((__force __be16)0x0001)
|
/external/e2fsprogs/util/ |
D | android_types.h | 28 #define __force __attribute__((force)) macro 31 #define __force macro
|
/external/e2fsprogs/lib/uuid/ |
D | uuid_types.h | 28 #define __force __attribute__((force)) macro 31 #define __force macro
|
/external/e2fsprogs/lib/blkid/ |
D | blkid_types.h | 28 #define __force __attribute__((force)) macro 33 #define __force macro
|
/external/valgrind/include/vki/ |
D | vki-s390x-linux.h | 35 #define __force macro 240 #define VKI_SIG_DFL ((__force __vki_sighandler_t)0) 242 #define VKI_SIG_IGN ((__force __vki_sighandler_t)1) 244 #define VKI_SIG_ERR ((__force __vki_sighandler_t)-1)
|
/external/f2fs-tools/fsck/ |
D | quotaio.h | 181 #define __force __attribute__((force)) macro 186 #define __force macro
|
D | quotaio_v2.c | 160 be_magic = be32_to_cpu((__force __be32)dqh.dqh_magic); in v2_check_file()
|
/external/tinycompress/ |
D | utils.c | 58 #define __force macro
|
D | cplay.c | 66 #define __force macro
|
D | compress.c | 71 #define __force macro
|
/external/e2fsprogs/lib/support/ |
D | quotaio_v2.c | 162 be_magic = ext2fs_be32_to_cpu((__force __be32)dqh.dqh_magic); in v2_check_file()
|
/external/tinyalsa/ |
D | mixer.c | 43 #define __force macro
|
D | pcm.c | 44 #define __force macro
|