Home
last modified time | relevance | path

Searched refs:__p (Results 1 – 14 of 14) sorted by relevance

/linux/arch/parisc/include/asm/
H A Dbarrier.h35 typeof(p) __p = (p); \
42 : : "r"(*(__u8 *)__u.__c), "r"(__p) \
47 : : "r"(*(__u16 *)__u.__c), "r"(__p) \
52 : : "r"(*(__u32 *)__u.__c), "r"(__p) \
58 : : "r"(*(__u64 *)__u.__c), "r"(__p) \
67 typeof(p) __p = (p); \
72 : "=r"(*(__u8 *)__u.__c) : "r"(__p) \
77 : "=r"(*(__u16 *)__u.__c) : "r"(__p) \
82 : "=r"(*(__u32 *)__u.__c) : "r"(__p) \
88 : "=r"(*(__u64 *)__u.__c) : "r"(__p) \
/linux/arch/x86/include/asm/
H A Dspecial_insns.h185 static __always_inline void clflush(volatile void *__p) in clflush() argument
187 asm volatile("clflush %0" : "+m" (*(volatile char __force *)__p)); in clflush()
190 static inline void clflushopt(volatile void *__p) in clflushopt() argument
194 "+m" (*(volatile char __force *)__p)); in clflushopt()
197 static inline void clwb(volatile void *__p) in clwb() argument
199 volatile struct { char x[64]; } *p = __p; in clwb()
/linux/include/asm-generic/
H A Dpercpu.h92 TYPEOF_UNQUAL(pcp) *__p = raw_cpu_ptr(&(pcp)); \
94 *__p += val; \
95 *__p; \
100 TYPEOF_UNQUAL(pcp) *__p = raw_cpu_ptr(&(pcp)); \
102 __ret = *__p; \
103 *__p = nval; \
118 TYPEOF_UNQUAL(pcp) *__p = raw_cpu_ptr(&(pcp)); \
119 TYPEOF_UNQUAL(pcp) __val = *__p, ___old = *(ovalp); \
122 *__p = nval; \
/linux/drivers/platform/surface/aggregator/
H A Dssh_packet_layer.h124 typeof(p) __p = (p); \
126 if (__p) \
127 func(__p, fmt, ##__VA_ARGS__); \
/linux/drivers/infiniband/hw/mthca/
H A Dmthca_dev.h389 void *__p = (char *) (source) + (offset); \
391 case 1: (dest) = *(u8 *) __p; break; \
392 case 2: (dest) = be16_to_cpup(__p); break; \
393 case 4: (dest) = be32_to_cpup(__p); break; \
394 case 8: (dest) = be64_to_cpup(__p); break; \
/linux/tools/perf/util/
H A Ddso.h844 #define kmod_path__parse(__m, __p) __kmod_path__parse(__m, __p, false)
845 #define kmod_path__parse_name(__m, __p) __kmod_path__parse(__m, __p, true)
809 kmod_path__parse(__m,__p) global() argument
810 kmod_path__parse_name(__m,__p) global() argument
H A Dunwind-libunwind-local.c
H A Dprobe-event.c2425 ({ char *__p = NULL; if (str && !(__p = strdup(str))) goto label; __p; })
/linux/include/linux/
H A Ddma-mapping.h796 ({ typeof(PTR) __p __maybe_unused = PTR; 0; })
798 do { typeof(PTR) __p __maybe_unused = PTR; } while (0)
800 ({ typeof(PTR) __p __maybe_unused = PTR; 0; })
802 do { typeof(PTR) __p __maybe_unused = PTR; } while (0)
/linux/drivers/net/wireless/realtek/rtw89/
H A Ddebug.c1355 #define DLE_DFI_FREE_PAGE_DUMP(__p, __end, __type) \ in rtw89_debug_mac_dump_dle_dbg() argument
1365 __p += scnprintf(__p, __end - __p, "[%s] freepg head: %d\n", \ in rtw89_debug_mac_dump_dle_dbg()
1367 __p += scnprintf(__p, __end - __p, "[%s] freepg tail: %d\n", \ in rtw89_debug_mac_dump_dle_dbg()
1369 __p += scnprintf(__p, __end - __p, "[%s] pubpg num : %d\n", \ in rtw89_debug_mac_dump_dle_dbg()
1373 #define case_QUOTA(__p, __end, __type, __id) \ in rtw89_debug_mac_dump_dle_dbg() argument
1378 __p += scnprintf(__p, __end - __p, "[%s][%s] rsv_pgnum: %d\n", \ in rtw89_debug_mac_dump_dle_dbg()
1380 __p += scnprintf(__p, __end - __p, "[%s][%s] use_pgnum: %d\n", \ in rtw89_debug_mac_dump_dle_dbg()
/linux/drivers/parport/
H A Dparport_ip32.c287 ({ const struct parport *__p = (p); \
288 __p ? __p->name : "parport_ip32"; }), \
/linux/drivers/net/ethernet/mellanox/mlx4/
H A Dfw.c60 void *__p = (char *) (source) + (offset); \
63 case 1: (dest) = *(u8 *) __p; break; \
64 case 2: (dest) = be16_to_cpup(__p); break; \
65 case 4: (dest) = be32_to_cpup(__p); break; \
66 case 8: val = get_unaligned((__be64 *)__p); \
/linux/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_main.c4325 #define be16(__p) (((__p)[0] << 8) | (__p)[1]) in phy_aq1202_version() argument
4326 #define le16(__p) ((__p)[0] | ((__p)[1] << 8)) in phy_aq1202_version() argument
4327 #define le24(__p) (le16(__p) | ((__p)[2] << 16)) in phy_aq1202_version() argument
/linux/mm/
H A Dslub.c601 #define for_each_object(__p, __s, __addr, __objects) \ argument
602 for (__p = fixup_red_left(__s, __addr); \
603 __p < (__addr) + (__objects) * (__s)->size; \
604 __p += (__s)->size)