Home
last modified time | relevance | path

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

/include/linux/
Dcompiler-intel.h20 ({ unsigned long __ptr; \
21 __ptr = (unsigned long) (ptr); \
22 (typeof(ptr)) (__ptr + (off)); })
Dcompiler-gcc.h44 unsigned long __ptr; \
45 __asm__ ("" : "=r"(__ptr) : "0"(ptr)); \
46 (typeof(ptr)) (__ptr + (off)); \
Dcompiler.h178 ({ unsigned long __ptr; \
179 __ptr = (unsigned long) (ptr); \
180 (typeof(ptr)) (__ptr + (off)); })
Drculist.h353 struct list_head *__ptr = (ptr); \
354 struct list_head *__next = READ_ONCE(__ptr->next); \
355 likely(__ptr != __next) ? list_entry_rcu(__next, type, member) : NULL; \
373 struct list_head *__ptr = (ptr); \
374 struct list_head *__next = READ_ONCE(__ptr->next); \
Dsocket.h144 struct cmsghdr * __ptr; in __cmsg_nxthdr() local
146 __ptr = (struct cmsghdr*)(((unsigned char *) __cmsg) + CMSG_ALIGN(__cmsg->cmsg_len)); in __cmsg_nxthdr()
147 if ((unsigned long)((char*)(__ptr+1) - (char *) __ctl) > __size) in __cmsg_nxthdr()
150 return __ptr; in __cmsg_nxthdr()
/include/kunit/
Dtest.h1163 typeof(ptr) __ptr = (ptr); \
1166 !IS_ERR_OR_NULL(__ptr), \
1171 __ptr), \