Home
last modified time | relevance | path

Searched refs:GSL_IS_ODD (Results 1 – 25 of 72) sorted by relevance

123

/dports/audio/praat/praat-6.2.03/external/gsl/
H A Dgsl_specfunc__bessel_In.c61 if(x < 0.0 && GSL_IS_ODD(n)) result->val = -result->val;
81 if(x < 0.0 && GSL_IS_ODD(n)) result->val = -result->val;
86 if(x < 0.0 && GSL_IS_ODD(n)) result->val = -result->val;
106 if(x < 0.0 && GSL_IS_ODD(n)) result->val = -result->val;
158 if(GSL_IS_ODD(n)) result_array[n-nmin] = -result_array[n-nmin];
186 if(x < 0.0 && GSL_IS_ODD(n)) result->val = -result->val;
H A Dgsl_specfunc__coupling.c96 || GSL_IS_ODD(two_ja + two_ma) in m_selection_fails()
97 || GSL_IS_ODD(two_jb + two_mb) in m_selection_fails()
98 || GSL_IS_ODD(two_jc + two_mc) in m_selection_fails()
137 k, sign = GSL_IS_ODD (kmin - jpma + jmmb) ? -1 : 1, in gsl_sf_coupling_3j_e()
243 phase = GSL_IS_ODD((two_ja + two_jb + two_je + two_jd + tkmin)/2) in gsl_sf_coupling_6j_e()
313 result->val *= ( GSL_IS_ODD(phase_sum) ? -1.0 : 1.0 ); in gsl_sf_coupling_RacahW_e()
379 phase = GSL_IS_ODD(tkmin) ? -1.0 : 1.0; in gsl_sf_coupling_9j_e()
H A Dgsl_math.h112 #define GSL_IS_ODD(n) ((n) & 1) macro
113 #define GSL_IS_EVEN(n) (!(GSL_IS_ODD(n)))
H A Dgsl_specfunc__bessel_Jn.c43 if(GSL_IS_ODD(n)) sign = -sign; in gsl_sf_bessel_Jn_e()
49 if(GSL_IS_ODD(n)) sign = -sign; in gsl_sf_bessel_Jn_e()
H A Dgsl_specfunc__legendre_poly.c134 result->val = ( GSL_IS_ODD(l) ? -1.0 : 1.0 ); in gsl_sf_legendre_Pl_e()
270 … const double sgn = ( GSL_IS_ODD(ell) ? 1.0 : -1.0 ); /* derivative is odd in x for even ell */ in gsl_sf_legendre_Pl_deriv_array()
466 const double sgn = ( GSL_IS_ODD(ell) ? 1.0 : -1.0 ); in gsl_sf_legendre_Plm_deriv_array()
537 const double sgn = ( GSL_IS_ODD(m) ? -1.0 : 1.0); in gsl_sf_legendre_sphPlm_e()
623 const double sgn = ( GSL_IS_ODD(m) ? -1.0 : 1.0); in gsl_sf_legendre_sphPlm_array()
H A Dgsl_specfunc__pow_int.c55 if(GSL_IS_ODD(n)) value *= x; in gsl_sf_pow_int_e()
H A Dgsl_specfunc__zeta.c858 if(!GSL_IS_ODD(n)) {
910 if(!GSL_IS_ODD(n)) {
955 if(!GSL_IS_ODD(n)) {
/dports/math/gsl/gsl-2.7/specfunc/
H A Dbessel_In.c61 if(x < 0.0 && GSL_IS_ODD(n)) result->val = -result->val; in gsl_sf_bessel_In_scaled_e()
81 if(x < 0.0 && GSL_IS_ODD(n)) result->val = -result->val; in gsl_sf_bessel_In_scaled_e()
86 if(x < 0.0 && GSL_IS_ODD(n)) result->val = -result->val; in gsl_sf_bessel_In_scaled_e()
106 if(x < 0.0 && GSL_IS_ODD(n)) result->val = -result->val; in gsl_sf_bessel_In_scaled_e()
158 if(GSL_IS_ODD(n)) result_array[n-nmin] = -result_array[n-nmin]; in gsl_sf_bessel_In_scaled_array()
186 if(x < 0.0 && GSL_IS_ODD(n)) result->val = -result->val; in gsl_sf_bessel_In_e()
H A Dhermite.c69 if (GSL_IS_ODD(n)) in gsl_sf_hermite_prob_e()
90 if (GSL_IS_ODD(n / 2)) in gsl_sf_hermite_prob_e()
211 if (GSL_IS_ODD(n)) in gsl_sf_hermite_e()
246 if (GSL_IS_ODD(m)) in gsl_sf_hermite_e()
358 if (GSL_IS_ODD(n)) in gsl_sf_hermite_func_e()
366 double f = (GSL_IS_ODD(n / 2) ? -1.0 : 1.0); in gsl_sf_hermite_func_e()
493 cs = (GSL_IS_ODD(n) ? -1 : 1); in gsl_sf_hermite_func_fast_e()
1242 f = (GSL_IS_ODD(m-n)?-f:f); in gsl_sf_hermite_func_der_e()
1316 x = (GSL_IS_ODD(n)?1./sqrt((n-1)/6.):1./sqrt(0.5*n)); in H_zero_init()
1475 if (GSL_IS_ODD(n) == 1) in gsl_sf_hermite_prob_zero_e()
[all …]
H A Dcoupling.c88 GSL_IS_ODD(two_ja + two_jb + two_jc) ); in triangle_selection_fails()
101 || GSL_IS_ODD(two_ja + two_ma) in m_selection_fails()
102 || GSL_IS_ODD(two_jb + two_mb) in m_selection_fails()
103 || GSL_IS_ODD(two_jc + two_mc) in m_selection_fails()
149 k, sign = GSL_IS_ODD (kmin - jpma + jmmb) ? -1 : 1, in gsl_sf_coupling_3j_e()
261 phase = GSL_IS_ODD((two_ja + two_jb + two_je + two_jd + tkmin)/2) in gsl_sf_coupling_6j_e()
331 result->val *= ( GSL_IS_ODD(phase_sum) ? -1.0 : 1.0 ); in gsl_sf_coupling_RacahW_e()
397 phase = GSL_IS_ODD(tkmin) ? -1.0 : 1.0; in gsl_sf_coupling_9j_e()
H A Dbessel_Jn.c43 if(GSL_IS_ODD(n)) sign = -sign; in gsl_sf_bessel_Jn_e()
49 if(GSL_IS_ODD(n)) sign = -sign; in gsl_sf_bessel_Jn_e()
H A Dlegendre_poly.c134 result->val = ( GSL_IS_ODD(l) ? -1.0 : 1.0 ); in gsl_sf_legendre_Pl_e()
270 … const double sgn = ( GSL_IS_ODD(ell) ? 1.0 : -1.0 ); /* derivative is odd in x for even ell */ in gsl_sf_legendre_Pl_deriv_array()
394 const double sgn = ( GSL_IS_ODD(m) ? -1.0 : 1.0); in gsl_sf_legendre_sphPlm_e()
558 const double sgn = ( GSL_IS_ODD(ell) ? 1.0 : -1.0 ); in gsl_sf_legendre_Plm_deriv_array()
620 const double sgn = ( GSL_IS_ODD(m) ? -1.0 : 1.0); in gsl_sf_legendre_sphPlm_array()
H A Dpow_int.c55 if(GSL_IS_ODD(n)) value *= x; in gsl_sf_pow_int_e()
H A Dzeta.c858 if(!GSL_IS_ODD(n)) { in gsl_sf_zeta_int_e()
910 if(!GSL_IS_ODD(n)) { in gsl_sf_zetam1_int_e()
955 if(!GSL_IS_ODD(n)) { in gsl_sf_eta_int_e()
/dports/astro/astrometry/astrometry.net-0.85/gsl-an/gsl/
H A Dgsl_math.h114 #define GSL_IS_ODD(n) ((n) & 1) macro
115 #define GSL_IS_EVEN(n) (!(GSL_IS_ODD(n)))
/dports/astro/astrometry/astrometry.net-0.85/gsl-an/
H A Dgsl_math.h114 #define GSL_IS_ODD(n) ((n) & 1) macro
115 #define GSL_IS_EVEN(n) (!(GSL_IS_ODD(n)))
/dports/graphics/xaos/XaoS-release-4.2.1/src/include/gsl/
H A Dgsl_math.h115 #define GSL_IS_ODD(n) ((n)&1) macro
116 #define GSL_IS_EVEN(n) (!(GSL_IS_ODD(n)))
/dports/math/gsl/gsl-2.7/
H A Dgsl_math.h114 #define GSL_IS_ODD(n) ((n) & 1) macro
115 #define GSL_IS_EVEN(n) (!(GSL_IS_ODD(n)))
/dports/mail/bogofilter-sqlite/bogofilter-1.2.5/gsl/
H A Dgsl_math.h112 #define GSL_IS_ODD(n) ((n) & 1) macro
113 #define GSL_IS_EVEN(n) (!(GSL_IS_ODD(n)))
/dports/mail/bogofilter/bogofilter-1.2.5/gsl/
H A Dgsl_math.h112 #define GSL_IS_ODD(n) ((n) & 1) macro
113 #define GSL_IS_EVEN(n) (!(GSL_IS_ODD(n)))
/dports/mail/bogofilter-kc/bogofilter-1.2.5/gsl/
H A Dgsl_math.h112 #define GSL_IS_ODD(n) ((n) & 1) macro
113 #define GSL_IS_EVEN(n) (!(GSL_IS_ODD(n)))
/dports/mail/bogofilter-lmdb/bogofilter-1.2.5/gsl/
H A Dgsl_math.h112 #define GSL_IS_ODD(n) ((n) & 1) macro
113 #define GSL_IS_EVEN(n) (!(GSL_IS_ODD(n)))
/dports/mail/bogofilter-sqlite/bogofilter-1.2.5/gsl/specfunc/
H A Dzeta.c657 if(!GSL_IS_ODD(n)) { in gsl_sf_zeta_int_e()
702 if(!GSL_IS_ODD(n)) { in gsl_sf_eta_int_e()
/dports/mail/bogofilter-lmdb/bogofilter-1.2.5/gsl/specfunc/
H A Dzeta.c657 if(!GSL_IS_ODD(n)) { in gsl_sf_zeta_int_e()
702 if(!GSL_IS_ODD(n)) { in gsl_sf_eta_int_e()
/dports/mail/bogofilter/bogofilter-1.2.5/gsl/specfunc/
H A Dzeta.c657 if(!GSL_IS_ODD(n)) { in gsl_sf_zeta_int_e()
702 if(!GSL_IS_ODD(n)) { in gsl_sf_eta_int_e()

123