Lines Matching refs:FUNC
31 # define __libc_maybe_call(FUNC, ARGS, ELSE) \ argument
32 (__extension__ ({ __typeof (FUNC) *_fn = (FUNC); \
35 # define __libc_maybe_call(FUNC, ARGS, ELSE) \ argument
36 (FUNC != NULL ? FUNC ARGS : ELSE)
42 # define __libc_ptf_call(FUNC, ARGS, ELSE) \ argument
43 (__libc_pthread_functions_init ? PTHFCT_CALL (ptr_##FUNC, ARGS) : ELSE)
44 # define __libc_ptf_call_always(FUNC, ARGS) \ argument
45 PTHFCT_CALL (ptr_##FUNC, ARGS)
48 # define __libc_ptf_call(FUNC, ARGS, ELSE) \ argument
49 FUNC ARGS
50 # define __libc_ptf_call_always(FUNC, ARGS) \ argument
51 FUNC ARGS
54 # define __libc_ptf_call(FUNC, ARGS, ELSE) \ argument
55 __libc_maybe_call (FUNC, ARGS, ELSE)
56 # define __libc_ptf_call_always(FUNC, ARGS) \ argument
57 FUNC ARGS