Home
last modified time | relevance | path

Searched refs:__ptr (Results 1 – 7 of 7) sorted by relevance

/linux-4.19.296/include/linux/
Dcompiler-intel.h20 ({ unsigned long __ptr; \
21 __ptr = (unsigned long) (ptr); \
22 (typeof(ptr)) (__ptr + (off)); })
Dcompiler-gcc.h43 unsigned long __ptr; \
44 __asm__ ("" : "=r"(__ptr) : "0"(ptr)); \
45 (typeof(ptr)) (__ptr + (off)); \
Drculist.h315 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); \
Dsocket.h129 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()
Dcompiler.h226 ({ unsigned long __ptr; \
227 __ptr = (unsigned long) (ptr); \
228 (typeof(ptr)) (__ptr + (off)); })
/linux-4.19.296/lib/raid6/
Ds390vx.uc61 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/
Dv4l2-compat-ioctl32.c57 #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); \