Searched refs:argd (Results 1 – 3 of 3) sorted by relevance
30 static double Z_sin(double x) { return _ZGVnN2v_sin(argd(x))[0]; } in Z_sin()31 static double Z_cos(double x) { return _ZGVnN2v_cos(argd(x))[0]; } in Z_cos()32 static double Z_exp(double x) { return _ZGVnN2v_exp(argd(x))[0]; } in Z_exp()33 static double Z_log(double x) { return _ZGVnN2v_log(argd(x))[0]; } in Z_log()34 static double Z_pow(double x, double y) { return _ZGVnN2vv_pow(argd(x),argd(y))[0]; } in Z_pow()
227 static inline v_double argd(double x) { return (v_double){x,dv[secondcall]}; } in argd() function
67 #define ZVD1_WRAP(func) static double Z_##func(double x) { return _ZGVnN2v_##func(argd(x))[0]; }68 …(func) static double Z_##func(double x, double y) { return _ZGVnN2vv_##func(argd(x), argd(y))[0]; }