Lines Matching refs:variable
316 #define __pcpu_size_call_return(stem, variable) \ argument
318 typeof(variable) pscr_ret__; \
319 __verify_pcpu_ptr(&(variable)); \
320 switch(sizeof(variable)) { \
321 case 1: pscr_ret__ = stem##1(variable); break; \
322 case 2: pscr_ret__ = stem##2(variable); break; \
323 case 4: pscr_ret__ = stem##4(variable); break; \
324 case 8: pscr_ret__ = stem##8(variable); break; \
331 #define __pcpu_size_call_return2(stem, variable, ...) \ argument
333 typeof(variable) pscr2_ret__; \
334 __verify_pcpu_ptr(&(variable)); \
335 switch(sizeof(variable)) { \
336 case 1: pscr2_ret__ = stem##1(variable, __VA_ARGS__); break; \
337 case 2: pscr2_ret__ = stem##2(variable, __VA_ARGS__); break; \
338 case 4: pscr2_ret__ = stem##4(variable, __VA_ARGS__); break; \
339 case 8: pscr2_ret__ = stem##8(variable, __VA_ARGS__); break; \
346 #define __pcpu_size_call_return2bool(stem, variable, ...) \ argument
349 __verify_pcpu_ptr(&(variable)); \
350 switch(sizeof(variable)) { \
351 case 1: pscr2_ret__ = stem##1(variable, __VA_ARGS__); break; \
352 case 2: pscr2_ret__ = stem##2(variable, __VA_ARGS__); break; \
353 case 4: pscr2_ret__ = stem##4(variable, __VA_ARGS__); break; \
354 case 8: pscr2_ret__ = stem##8(variable, __VA_ARGS__); break; \
361 #define __pcpu_size_call(stem, variable, ...) \ argument
363 __verify_pcpu_ptr(&(variable)); \
364 switch(sizeof(variable)) { \
365 case 1: stem##1(variable, __VA_ARGS__);break; \
366 case 2: stem##2(variable, __VA_ARGS__);break; \
367 case 4: stem##4(variable, __VA_ARGS__);break; \
368 case 8: stem##8(variable, __VA_ARGS__);break; \