Home
last modified time | relevance | path

Searched refs:fun_t (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/tools/smatch/src/validation/linear/
H A Ddegen-function.c3 typedef int (*fun_t)(int); typedef
5 fun_t fa(void) { return &fun; } in fa()
6 fun_t f0(void) { return fun; } in f0()
7 fun_t f1(void) { return *fun; } in f1()
H A Dcall-casted-pointer.c1 typedef int (*fun_t)(void*); typedef
5 return ((fun_t)fun)(a); in foo()
15 return (*(fun_t)fun)(a); in qux()