Lines Matching refs:variable
305 #define __pcpu_size_call_return(stem, variable) \ argument
307 typeof(variable) pscr_ret__; \
308 __verify_pcpu_ptr(&(variable)); \
309 switch(sizeof(variable)) { \
310 case 1: pscr_ret__ = stem##1(variable); break; \
311 case 2: pscr_ret__ = stem##2(variable); break; \
312 case 4: pscr_ret__ = stem##4(variable); break; \
313 case 8: pscr_ret__ = stem##8(variable); break; \
320 #define __pcpu_size_call_return2(stem, variable, ...) \ argument
322 typeof(variable) pscr2_ret__; \
323 __verify_pcpu_ptr(&(variable)); \
324 switch(sizeof(variable)) { \
325 case 1: pscr2_ret__ = stem##1(variable, __VA_ARGS__); break; \
326 case 2: pscr2_ret__ = stem##2(variable, __VA_ARGS__); break; \
327 case 4: pscr2_ret__ = stem##4(variable, __VA_ARGS__); break; \
328 case 8: pscr2_ret__ = stem##8(variable, __VA_ARGS__); break; \
362 #define __pcpu_size_call(stem, variable, ...) \ argument
364 __verify_pcpu_ptr(&(variable)); \
365 switch(sizeof(variable)) { \
366 case 1: stem##1(variable, __VA_ARGS__);break; \
367 case 2: stem##2(variable, __VA_ARGS__);break; \
368 case 4: stem##4(variable, __VA_ARGS__);break; \
369 case 8: stem##8(variable, __VA_ARGS__);break; \