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