Lines Matching refs:_ptr
251 __typeof(base) _ptr = (void *)((char *)(base) + zpcpu_offset()); \
252 _ptr; \
256 __typeof(base) _ptr = (void *)((char *)(base) + zpcpu_offset_cpu(cpu)); \
257 _ptr; \
267 __typeof(val) *_ptr = zpcpu_get(base); \
270 _old = *_ptr; \
271 *_ptr = val; \
276 __typeof(val) *_ptr = zpcpu_get_cpu(base, cpu); \
279 _old = *_ptr; \
280 *_ptr = val; \
287 __typeof(val) *_ptr = zpcpu_get(base); \
289 *_ptr = (val); \
296 __typeof(val) *_ptr = zpcpu_get(base); \
298 *_ptr += (val); \
305 __typeof(val) *_ptr = zpcpu_get(base); \
307 *_ptr -= (val); \