Searched refs:__ptr (Results 1 – 7 of 7) sorted by relevance
/linux-4.19.296/include/linux/ |
D | compiler-intel.h | 20 ({ unsigned long __ptr; \ 21 __ptr = (unsigned long) (ptr); \ 22 (typeof(ptr)) (__ptr + (off)); })
|
D | compiler-gcc.h | 43 unsigned long __ptr; \ 44 __asm__ ("" : "=r"(__ptr) : "0"(ptr)); \ 45 (typeof(ptr)) (__ptr + (off)); \
|
D | rculist.h | 315 struct list_head *__ptr = (ptr); \ 316 struct list_head *__next = READ_ONCE(__ptr->next); \ 317 likely(__ptr != __next) ? list_entry_rcu(__next, type, member) : NULL; \ 335 struct list_head *__ptr = (ptr); \ 336 struct list_head *__next = READ_ONCE(__ptr->next); \
|
D | socket.h | 129 struct cmsghdr * __ptr; in __cmsg_nxthdr() local 131 __ptr = (struct cmsghdr*)(((unsigned char *) __cmsg) + CMSG_ALIGN(__cmsg->cmsg_len)); in __cmsg_nxthdr() 132 if ((unsigned long)((char*)(__ptr+1) - (char *) __ctl) > __size) in __cmsg_nxthdr() 135 return __ptr; in __cmsg_nxthdr()
|
D | compiler.h | 226 ({ unsigned long __ptr; \ 227 __ptr = (unsigned long) (ptr); \ 228 (typeof(ptr)) (__ptr + (off)); })
|
/linux-4.19.296/lib/raid6/ |
D | s390vx.uc | 61 register addrtype *__ptr asm("1") = (addrtype *) ptr; 64 : : "m" (*__ptr), "a" (__ptr), "i" (x), 71 register addrtype *__ptr asm("1") = (addrtype *) ptr; 74 : "=m" (*__ptr) : "a" (__ptr), "i" (x),
|
/linux-4.19.296/drivers/media/v4l2-core/ |
D | v4l2-compat-ioctl32.c | 57 #define get_user_cast(__x, __ptr) \ argument 59 get_user(__x, (typeof(*__ptr) __user *)(__ptr)); \ 74 #define put_user_force(__x, __ptr) \ argument 76 put_user((typeof(*__x) __force *)(__x), __ptr); \
|