Lines Matching refs:__force
19 *(u8 *)to = *(u8 __force *)from; in raw_copy_from_user()
22 *(u16 *)to = *(u16 __force *)from; in raw_copy_from_user()
25 *(u32 *)to = *(u32 __force *)from; in raw_copy_from_user()
29 *(u64 *)to = *(u64 __force *)from; in raw_copy_from_user()
35 memcpy(to, (const void __force *)from, n); in raw_copy_from_user()
45 *(u8 __force *)to = *(u8 *)from; in raw_copy_to_user()
48 *(u16 __force *)to = *(u16 *)from; in raw_copy_to_user()
51 *(u32 __force *)to = *(u32 *)from; in raw_copy_to_user()
55 *(u64 __force *)to = *(u64 *)from; in raw_copy_to_user()
63 memcpy((void __force *)to, from, n); in raw_copy_to_user()
163 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
170 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
177 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
184 (x) = *(__force __typeof__(*(ptr)) *) &__x; \
223 strncpy(dst, (const char __force *)src, count); in __strncpy_from_user()
266 memset((void __force *)to, 0, n); in __clear_user()