Home | History | Annotate | Download | only in bits

Lines Matching refs:ARGS

143 # define __libc_maybe_call(FUNC, ARGS, ELSE) \
145 _fn != NULL ? (*_fn) ARGS : ELSE; }))
147 # define __libc_maybe_call(FUNC, ARGS, ELSE) \
148 (FUNC != NULL ? FUNC ARGS : ELSE)
154 # define __libc_ptf_call(FUNC, ARGS, ELSE) \
155 (__libc_pthread_functions_init ? PTHFCT_CALL (ptr_##FUNC, ARGS) : ELSE)
156 # define __libc_ptf_call_always(FUNC, ARGS) \
157 PTHFCT_CALL (ptr_##FUNC, ARGS)
160 # define __libc_ptf_call(FUNC, ARGS, ELSE) \
161 __libc_maybe_call (FUNC, ARGS, ELSE)
162 # define __libc_ptf_call_always(FUNC, ARGS) \
163 FUNC ARGS