Lines Matching defs:p
28 * @param p
31 static inline void rte_prefetch0(const volatile void *p);
35 * @param p
38 static inline void rte_prefetch1(const volatile void *p);
43 * @param p
46 static inline void rte_prefetch2(const volatile void *p);
55 * @param p
58 static inline void rte_prefetch_non_temporal(const volatile void *p);
68 * @param p Address to prefetch
72 rte_prefetch0_write(const void *p)
79 rte_prefetch0(p);
81 __builtin_prefetch(p, 1, 3);
93 * @param p Address to prefetch
97 rte_prefetch1_write(const void *p)
104 rte_prefetch1(p);
106 __builtin_prefetch(p, 1, 2);
118 * @param p Address to prefetch
122 rte_prefetch2_write(const void *p)
129 rte_prefetch2(p);
131 __builtin_prefetch(p, 1, 1);
146 * @param p
151 rte_cldemote(const volatile void *p);