Lines Matching refs:fun

265 struct fun  struct
284 } fun; argument
304 static const struct fun fun[] = { variable
365 call_f1 (const struct fun *f, struct args_f1 a, const struct conf *conf) in call_f1()
369 return f->fun.f1_pred (*conf->pg, a.x); in call_f1()
371 return f->fun.f1 (a.x); in call_f1()
374 call_f2 (const struct fun *f, struct args_f2 a, const struct conf *conf) in call_f2()
378 return f->fun.f2_pred (*conf->pg, a.x, a.x2); in call_f2()
380 return f->fun.f2 (a.x, a.x2); in call_f2()
384 call_d1 (const struct fun *f, struct args_d1 a, const struct conf *conf) in call_d1()
388 return f->fun.d1_pred (*conf->pg, a.x); in call_d1()
390 return f->fun.d1 (a.x); in call_d1()
393 call_d2 (const struct fun *f, struct args_d2 a, const struct conf *conf) in call_d2()
397 return f->fun.d2_pred (*conf->pg, a.x, a.x2); in call_d2()
399 return f->fun.d2 (a.x, a.x2); in call_d2()
402 call_long_f1 (const struct fun *f, struct args_f1 a) in call_long_f1()
407 call_long_f2 (const struct fun *f, struct args_f2 a) in call_long_f2()
412 call_long_d1 (const struct fun *f, struct args_d1 a) in call_long_d1()
417 call_long_d2 (const struct fun *f, struct args_d2 a) in call_long_d2()
422 printcall_f1 (const struct fun *f, struct args_f1 a) in printcall_f1()
427 printcall_f2 (const struct fun *f, struct args_f2 a) in printcall_f2()
432 printcall_d1 (const struct fun *f, struct args_d1 a) in printcall_d1()
437 printcall_d2 (const struct fun *f, struct args_d2 a) in printcall_d2()
442 printgen_f1 (const struct fun *f, struct gen *gen) in printgen_f1()
448 printgen_f2 (const struct fun *f, struct gen *gen) in printgen_f2()
455 printgen_d1 (const struct fun *f, struct gen *gen) in printgen_d1()
461 printgen_d2 (const struct fun *f, struct gen *gen) in printgen_d2()
520 call_mpfr_f1 (mpfr_t y, const struct fun *f, struct args_f1 a, mpfr_rnd_t r) in call_mpfr_f1()
527 call_mpfr_f2 (mpfr_t y, const struct fun *f, struct args_f2 a, mpfr_rnd_t r) in call_mpfr_f2()
536 call_mpfr_d1 (mpfr_t y, const struct fun *f, struct args_d1 a, mpfr_rnd_t r) in call_mpfr_d1()
543 call_mpfr_d2 (mpfr_t y, const struct fun *f, struct args_d2 a, mpfr_rnd_t r) in call_mpfr_d2()
618 for (const struct fun *f = fun; f->name; f++) in usage()
624 cmp (const struct fun *f, struct gen *gen, const struct conf *conf) in cmp()
693 parsegen (struct gen *g, int argc, char *argv[], const struct fun *f) in parsegen()
751 const struct fun *f; in main()
847 for (f = fun; f->name; f++) in main()