HomeSort by relevance Sort by last modified time
    Searched refs:__force (Results 1 - 25 of 49) sorted by null

1 2

  /bionic/libc/kernel/android/uapi/linux/
compiler.h 16 #define __force macro
  /external/kernel-headers/original/uapi/linux/byteorder/
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...]
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...]
  /bionic/libc/kernel/uapi/asm-generic/
signal-defs.h 36 #define SIG_DFL ((__force __sighandler_t) 0)
37 #define SIG_IGN ((__force __sighandler_t) 1)
38 #define SIG_ERR ((__force __sighandler_t) - 1)
  /external/kernel-headers/original/uapi/asm-generic/
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 */
  /bionic/libc/kernel/uapi/linux/byteorder/
big_endian.h 29 #define __constant_htonl(x) ((__force __be32) (__u32) (x))
30 #define __constant_ntohl(x) ((__force __u32) (__be32) (x))
31 #define __constant_htons(x) ((__force __be16) (__u16) (x))
32 #define __constant_ntohs(x) ((__force __u16) (__be16) (x))
33 #define __constant_cpu_to_le64(x) ((__force __le64) ___constant_swab64((x)))
34 #define __constant_le64_to_cpu(x) ___constant_swab64((__force __u64) (__le64) (x))
35 #define __constant_cpu_to_le32(x) ((__force __le32) ___constant_swab32((x)))
36 #define __constant_le32_to_cpu(x) ___constant_swab32((__force __u32) (__le32) (x))
37 #define __constant_cpu_to_le16(x) ((__force __le16) ___constant_swab16((x)))
38 #define __constant_le16_to_cpu(x) ___constant_swab16((__force __u16) (__le16) (x)
    [all...]
little_endian.h 29 #define __constant_htonl(x) ((__force __be32) ___constant_swab32((x)))
30 #define __constant_ntohl(x) ___constant_swab32((__force __be32) (x))
31 #define __constant_htons(x) ((__force __be16) ___constant_swab16((x)))
32 #define __constant_ntohs(x) ___constant_swab16((__force __be16) (x))
33 #define __constant_cpu_to_le64(x) ((__force __le64) (__u64) (x))
34 #define __constant_le64_to_cpu(x) ((__force __u64) (__le64) (x))
35 #define __constant_cpu_to_le32(x) ((__force __le32) (__u32) (x))
36 #define __constant_le32_to_cpu(x) ((__force __u32) (__le32) (x))
37 #define __constant_cpu_to_le16(x) ((__force __le16) (__u16) (x))
38 #define __constant_le16_to_cpu(x) ((__force __u16) (__le16) (x)
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/libfdt/
libfdt_env.h 60 #define __force __attribute__((force)) macro
63 #define __force macro
82 return (__force uint16_t)CPU_TO_FDT16(x);
86 return (__force fdt16_t)CPU_TO_FDT16(x);
91 return (__force uint32_t)CPU_TO_FDT32(x);
95 return (__force fdt32_t)CPU_TO_FDT32(x);
100 return (__force uint64_t)CPU_TO_FDT64(x);
104 return (__force fdt64_t)CPU_TO_FDT64(x);
  /bionic/libc/kernel/uapi/sound/
asound.h 124 #define SNDRV_PCM_ACCESS_MMAP_INTERLEAVED ((__force snd_pcm_access_t) 0)
125 #define SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED ((__force snd_pcm_access_t) 1)
126 #define SNDRV_PCM_ACCESS_MMAP_COMPLEX ((__force snd_pcm_access_t) 2)
127 #define SNDRV_PCM_ACCESS_RW_INTERLEAVED ((__force snd_pcm_access_t) 3)
128 #define SNDRV_PCM_ACCESS_RW_NONINTERLEAVED ((__force snd_pcm_access_t) 4)
131 #define SNDRV_PCM_FORMAT_S8 ((__force snd_pcm_format_t) 0)
132 #define SNDRV_PCM_FORMAT_U8 ((__force snd_pcm_format_t) 1)
133 #define SNDRV_PCM_FORMAT_S16_LE ((__force snd_pcm_format_t) 2)
134 #define SNDRV_PCM_FORMAT_S16_BE ((__force snd_pcm_format_t) 3)
135 #define SNDRV_PCM_FORMAT_U16_LE ((__force snd_pcm_format_t) 4
    [all...]
  /hardware/qcom/msm8996/kernel-headers/sound/
asound.h 141 #define SNDRV_PCM_ACCESS_MMAP_INTERLEAVED ((__force snd_pcm_access_t) 0)
142 #define SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED ((__force snd_pcm_access_t) 1)
143 #define SNDRV_PCM_ACCESS_MMAP_COMPLEX ((__force snd_pcm_access_t) 2)
144 #define SNDRV_PCM_ACCESS_RW_INTERLEAVED ((__force snd_pcm_access_t) 3)
146 #define SNDRV_PCM_ACCESS_RW_NONINTERLEAVED ((__force snd_pcm_access_t) 4)
149 #define SNDRV_PCM_FORMAT_S8 ((__force snd_pcm_format_t) 0)
151 #define SNDRV_PCM_FORMAT_U8 ((__force snd_pcm_format_t) 1)
152 #define SNDRV_PCM_FORMAT_S16_LE ((__force snd_pcm_format_t) 2)
153 #define SNDRV_PCM_FORMAT_S16_BE ((__force snd_pcm_format_t) 3)
154 #define SNDRV_PCM_FORMAT_U16_LE ((__force snd_pcm_format_t) 4
    [all...]
  /hardware/qcom/msm8996/original-kernel-headers/sound/
asound.h 172 #define SNDRV_PCM_ACCESS_MMAP_INTERLEAVED ((__force snd_pcm_access_t) 0) /* interleaved mmap */
173 #define SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED ((__force snd_pcm_access_t) 1) /* noninterleaved mmap */
174 #define SNDRV_PCM_ACCESS_MMAP_COMPLEX ((__force snd_pcm_access_t) 2) /* complex mmap */
175 #define SNDRV_PCM_ACCESS_RW_INTERLEAVED ((__force snd_pcm_access_t) 3) /* readi/writei */
176 #define SNDRV_PCM_ACCESS_RW_NONINTERLEAVED ((__force snd_pcm_access_t) 4) /* readn/writen */
180 #define SNDRV_PCM_FORMAT_S8 ((__force snd_pcm_format_t) 0)
181 #define SNDRV_PCM_FORMAT_U8 ((__force snd_pcm_format_t) 1)
182 #define SNDRV_PCM_FORMAT_S16_LE ((__force snd_pcm_format_t) 2)
183 #define SNDRV_PCM_FORMAT_S16_BE ((__force snd_pcm_format_t) 3)
184 #define SNDRV_PCM_FORMAT_U16_LE ((__force snd_pcm_format_t) 4
    [all...]
  /hardware/qcom/msm8x09/kernel-headers/sound/
asound.h 139 #define SNDRV_PCM_ACCESS_MMAP_INTERLEAVED ((__force snd_pcm_access_t) 0)
140 #define SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED ((__force snd_pcm_access_t) 1)
141 #define SNDRV_PCM_ACCESS_MMAP_COMPLEX ((__force snd_pcm_access_t) 2)
142 #define SNDRV_PCM_ACCESS_RW_INTERLEAVED ((__force snd_pcm_access_t) 3)
144 #define SNDRV_PCM_ACCESS_RW_NONINTERLEAVED ((__force snd_pcm_access_t) 4)
147 #define SNDRV_PCM_FORMAT_S8 ((__force snd_pcm_format_t) 0)
149 #define SNDRV_PCM_FORMAT_U8 ((__force snd_pcm_format_t) 1)
150 #define SNDRV_PCM_FORMAT_S16_LE ((__force snd_pcm_format_t) 2)
151 #define SNDRV_PCM_FORMAT_S16_BE ((__force snd_pcm_format_t) 3)
152 #define SNDRV_PCM_FORMAT_U16_LE ((__force snd_pcm_format_t) 4
    [all...]
  /hardware/qcom/msm8x09/original-kernel-headers/sound/
asound.h 172 #define SNDRV_PCM_ACCESS_MMAP_INTERLEAVED ((__force snd_pcm_access_t) 0) /* interleaved mmap */
173 #define SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED ((__force snd_pcm_access_t) 1) /* noninterleaved mmap */
174 #define SNDRV_PCM_ACCESS_MMAP_COMPLEX ((__force snd_pcm_access_t) 2) /* complex mmap */
175 #define SNDRV_PCM_ACCESS_RW_INTERLEAVED ((__force snd_pcm_access_t) 3) /* readi/writei */
176 #define SNDRV_PCM_ACCESS_RW_NONINTERLEAVED ((__force snd_pcm_access_t) 4) /* readn/writen */
180 #define SNDRV_PCM_FORMAT_S8 ((__force snd_pcm_format_t) 0)
181 #define SNDRV_PCM_FORMAT_U8 ((__force snd_pcm_format_t) 1)
182 #define SNDRV_PCM_FORMAT_S16_LE ((__force snd_pcm_format_t) 2)
183 #define SNDRV_PCM_FORMAT_S16_BE ((__force snd_pcm_format_t) 3)
184 #define SNDRV_PCM_FORMAT_U16_LE ((__force snd_pcm_format_t) 4
    [all...]
  /hardware/qcom/msm8994/kernel-headers/sound/
asound.h 135 #define SNDRV_PCM_ACCESS_MMAP_INTERLEAVED ((__force snd_pcm_access_t) 0)
136 #define SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED ((__force snd_pcm_access_t) 1)
137 #define SNDRV_PCM_ACCESS_MMAP_COMPLEX ((__force snd_pcm_access_t) 2)
139 #define SNDRV_PCM_ACCESS_RW_INTERLEAVED ((__force snd_pcm_access_t) 3)
140 #define SNDRV_PCM_ACCESS_RW_NONINTERLEAVED ((__force snd_pcm_access_t) 4)
144 #define SNDRV_PCM_FORMAT_S8 ((__force snd_pcm_format_t) 0)
145 #define SNDRV_PCM_FORMAT_U8 ((__force snd_pcm_format_t) 1)
146 #define SNDRV_PCM_FORMAT_S16_LE ((__force snd_pcm_format_t) 2)
147 #define SNDRV_PCM_FORMAT_S16_BE ((__force snd_pcm_format_t) 3)
149 #define SNDRV_PCM_FORMAT_U16_LE ((__force snd_pcm_format_t) 4
    [all...]
  /hardware/qcom/msm8994/original-kernel-headers/sound/
asound.h 169 #define SNDRV_PCM_ACCESS_MMAP_INTERLEAVED ((__force snd_pcm_access_t) 0) /* interleaved mmap */
170 #define SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED ((__force snd_pcm_access_t) 1) /* noninterleaved mmap */
171 #define SNDRV_PCM_ACCESS_MMAP_COMPLEX ((__force snd_pcm_access_t) 2) /* complex mmap */
172 #define SNDRV_PCM_ACCESS_RW_INTERLEAVED ((__force snd_pcm_access_t) 3) /* readi/writei */
173 #define SNDRV_PCM_ACCESS_RW_NONINTERLEAVED ((__force snd_pcm_access_t) 4) /* readn/writen */
177 #define SNDRV_PCM_FORMAT_S8 ((__force snd_pcm_format_t) 0)
178 #define SNDRV_PCM_FORMAT_U8 ((__force snd_pcm_format_t) 1)
179 #define SNDRV_PCM_FORMAT_S16_LE ((__force snd_pcm_format_t) 2)
180 #define SNDRV_PCM_FORMAT_S16_BE ((__force snd_pcm_format_t) 3)
181 #define SNDRV_PCM_FORMAT_U16_LE ((__force snd_pcm_format_t) 4
    [all...]
  /hardware/qcom/msm8x26/kernel-headers/sound/
asound.h 134 #define SNDRV_PCM_ACCESS_MMAP_INTERLEAVED ((__force snd_pcm_access_t) 0)
135 #define SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED ((__force snd_pcm_access_t) 1)
136 #define SNDRV_PCM_ACCESS_MMAP_COMPLEX ((__force snd_pcm_access_t) 2)
137 #define SNDRV_PCM_ACCESS_RW_INTERLEAVED ((__force snd_pcm_access_t) 3)
139 #define SNDRV_PCM_ACCESS_RW_NONINTERLEAVED ((__force snd_pcm_access_t) 4)
142 #define SNDRV_PCM_FORMAT_S8 ((__force snd_pcm_format_t) 0)
144 #define SNDRV_PCM_FORMAT_U8 ((__force snd_pcm_format_t) 1)
145 #define SNDRV_PCM_FORMAT_S16_LE ((__force snd_pcm_format_t) 2)
146 #define SNDRV_PCM_FORMAT_S16_BE ((__force snd_pcm_format_t) 3)
147 #define SNDRV_PCM_FORMAT_U16_LE ((__force snd_pcm_format_t) 4
    [all...]
  /hardware/qcom/msm8x26/original-kernel-headers/sound/
asound.h 168 #define SNDRV_PCM_ACCESS_MMAP_INTERLEAVED ((__force snd_pcm_access_t) 0) /* interleaved mmap */
169 #define SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED ((__force snd_pcm_access_t) 1) /* noninterleaved mmap */
170 #define SNDRV_PCM_ACCESS_MMAP_COMPLEX ((__force snd_pcm_access_t) 2) /* complex mmap */
171 #define SNDRV_PCM_ACCESS_RW_INTERLEAVED ((__force snd_pcm_access_t) 3) /* readi/writei */
172 #define SNDRV_PCM_ACCESS_RW_NONINTERLEAVED ((__force snd_pcm_access_t) 4) /* readn/writen */
176 #define SNDRV_PCM_FORMAT_S8 ((__force snd_pcm_format_t) 0)
177 #define SNDRV_PCM_FORMAT_U8 ((__force snd_pcm_format_t) 1)
178 #define SNDRV_PCM_FORMAT_S16_LE ((__force snd_pcm_format_t) 2)
179 #define SNDRV_PCM_FORMAT_S16_BE ((__force snd_pcm_format_t) 3)
180 #define SNDRV_PCM_FORMAT_U16_LE ((__force snd_pcm_format_t) 4
    [all...]
  /hardware/qcom/msm8x84/kernel-headers/sound/
asound.h 134 #define SNDRV_PCM_ACCESS_MMAP_INTERLEAVED ((__force snd_pcm_access_t) 0)
135 #define SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED ((__force snd_pcm_access_t) 1)
136 #define SNDRV_PCM_ACCESS_MMAP_COMPLEX ((__force snd_pcm_access_t) 2)
137 #define SNDRV_PCM_ACCESS_RW_INTERLEAVED ((__force snd_pcm_access_t) 3)
139 #define SNDRV_PCM_ACCESS_RW_NONINTERLEAVED ((__force snd_pcm_access_t) 4)
142 #define SNDRV_PCM_FORMAT_S8 ((__force snd_pcm_format_t) 0)
144 #define SNDRV_PCM_FORMAT_U8 ((__force snd_pcm_format_t) 1)
145 #define SNDRV_PCM_FORMAT_S16_LE ((__force snd_pcm_format_t) 2)
146 #define SNDRV_PCM_FORMAT_S16_BE ((__force snd_pcm_format_t) 3)
147 #define SNDRV_PCM_FORMAT_U16_LE ((__force snd_pcm_format_t) 4
    [all...]
  /hardware/qcom/msm8x84/original-kernel-headers/sound/
asound.h 168 #define SNDRV_PCM_ACCESS_MMAP_INTERLEAVED ((__force snd_pcm_access_t) 0) /* interleaved mmap */
169 #define SNDRV_PCM_ACCESS_MMAP_NONINTERLEAVED ((__force snd_pcm_access_t) 1) /* noninterleaved mmap */
170 #define SNDRV_PCM_ACCESS_MMAP_COMPLEX ((__force snd_pcm_access_t) 2) /* complex mmap */
171 #define SNDRV_PCM_ACCESS_RW_INTERLEAVED ((__force snd_pcm_access_t) 3) /* readi/writei */
172 #define SNDRV_PCM_ACCESS_RW_NONINTERLEAVED ((__force snd_pcm_access_t) 4) /* readn/writen */
176 #define SNDRV_PCM_FORMAT_S8 ((__force snd_pcm_format_t) 0)
177 #define SNDRV_PCM_FORMAT_U8 ((__force snd_pcm_format_t) 1)
178 #define SNDRV_PCM_FORMAT_S16_LE ((__force snd_pcm_format_t) 2)
179 #define SNDRV_PCM_FORMAT_S16_BE ((__force snd_pcm_format_t) 3)
180 #define SNDRV_PCM_FORMAT_U16_LE ((__force snd_pcm_format_t) 4
    [all...]
  /external/kernel-headers/original/uapi/sound/
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...]
  /external/e2fsprogs/lib/blkid/
blkid_types.h 28 #define __force __attribute__((force)) macro
33 #define __force macro
  /external/e2fsprogs/lib/ext2fs/
ext2_types.h 28 #define __force __attribute__((force)) macro
33 #define __force macro
  /external/e2fsprogs/lib/uuid/
uuid_types.h 28 #define __force __attribute__((force)) macro
31 #define __force macro
  /external/e2fsprogs/util/
android_types.h 28 #define __force __attribute__((force)) macro
31 #define __force macro
  /external/tinycompress/
utils.c 58 #define __force macro

Completed in 732 milliseconds

1 2