Lines Matching refs:variable
317 #define __pcpu_size_call_return(stem, variable) \ argument
319 typeof(variable) pscr_ret__; \
320 __verify_pcpu_ptr(&(variable)); \
321 switch(sizeof(variable)) { \
322 case 1: pscr_ret__ = stem##1(variable); break; \
323 case 2: pscr_ret__ = stem##2(variable); break; \
324 case 4: pscr_ret__ = stem##4(variable); break; \
325 case 8: pscr_ret__ = stem##8(variable); break; \
332 #define __pcpu_size_call_return2(stem, variable, ...) \ argument
334 typeof(variable) pscr2_ret__; \
335 __verify_pcpu_ptr(&(variable)); \
336 switch(sizeof(variable)) { \
337 case 1: pscr2_ret__ = stem##1(variable, __VA_ARGS__); break; \
338 case 2: pscr2_ret__ = stem##2(variable, __VA_ARGS__); break; \
339 case 4: pscr2_ret__ = stem##4(variable, __VA_ARGS__); break; \
340 case 8: pscr2_ret__ = stem##8(variable, __VA_ARGS__); break; \
374 #define __pcpu_size_call(stem, variable, ...) \ argument
376 __verify_pcpu_ptr(&(variable)); \
377 switch(sizeof(variable)) { \
378 case 1: stem##1(variable, __VA_ARGS__);break; \
379 case 2: stem##2(variable, __VA_ARGS__);break; \
380 case 4: stem##4(variable, __VA_ARGS__);break; \
381 case 8: stem##8(variable, __VA_ARGS__);break; \