Home
last modified time | relevance | path

Searched refs:i_pow (Results 1 – 10 of 10) sorted by relevance

/dports/science/cp2k/cp2k-2e995eec7fd208c8a72d9544807bd8b8ba8cd1cc/src/eri_mme/
H A Deri_mme_lattice_summation.F387 S_G(:) = REAL(S_G_c(0:l_max)*i_pow((/(l, l=0, l_max)/)))*inv_lgth
481 exp_tot*(-1.0_dp)**l*i_pow(l)
1511 S_G_l(lco) = G1_pow_l(1, lx)*G1_pow_l(2, ly)*G1_pow_l(3, lz)*(-1.0_dp)**l*i_pow(l)
1516 S_G_m(mco) = G2_pow_m(1, mx)*G2_pow_m(2, my)*G2_pow_m(3, mz)*(-1.0_dp)**m*i_pow(m)
1521 S_G_n(nco) = G3_pow_n(1, nx)*G3_pow_n(2, ny)*G3_pow_n(3, nz)*i_pow(n)
1646 exp_tot*i_pow(l + m + n)*(-1.0_dp)**m*S_R(mco, nco)
1724 (-1.0_dp)**t*i_pow(t)*exp_tot
2003 PURE ELEMENTAL FUNCTION i_pow(i) function
2005 COMPLEX(KIND=dp) :: i_pow local
2010 i_pow = ip(MOD(i, 4))
/dports/science/cp2k-data/cp2k-7.1.0/src/eri_mme/
H A Deri_mme_lattice_summation.F388 S_G(:) = REAL(S_G_c(0:l_max)*i_pow((/(l, l=0, l_max)/)))*inv_lgth
483 exp_tot*(-1.0_dp)**l*i_pow(l)
1501 S_G_l(lco) = G1_pow_l(1, lx)*G1_pow_l(2, ly)*G1_pow_l(3, lz)*(-1.0_dp)**l*i_pow(l)
1506 S_G_m(mco) = G2_pow_m(1, mx)*G2_pow_m(2, my)*G2_pow_m(3, mz)*(-1.0_dp)**m*i_pow(m)
1511 S_G_n(nco) = G3_pow_n(1, nx)*G3_pow_n(2, ny)*G3_pow_n(3, nz)*i_pow(n)
1636 exp_tot*i_pow(l+m+n)*(-1.0_dp)**m*S_R(mco, nco)
1714 (-1.0_dp)**t*i_pow(t)*exp_tot
1993 PURE ELEMENTAL FUNCTION i_pow(i) function
1995 COMPLEX(KIND=dp) :: i_pow local
2000 i_pow = ip(MOD(i, 4))
/dports/games/omega/omega/
H A Ditem.c627 case I_POW: i_pow(o); break;
H A Ditemf1.c412 void i_pow(o) in i_pow() function
H A Dextern.h502 void i_pow ARGS((pob));
/dports/math/libqalculate/libqalculate-3.17.0/libqalculate/
H A DNumber.cc3807 long int i_pow = mpz_get_si(mpq_numref(o.internalRational())); local
3817 bool b_neg = i_pow < 0;
3820 i_pow = -i_pow;
3825 if(i_pow != 1) mpz_pow_ui(mpq_numref(r_test), mpq_numref(r_test), (unsigned long int) i_pow);
3837 if(i_pow != 1) {
3838 mpz_pow_ui(mpq_numref(r_test), mpq_numref(r_test), (unsigned long int) i_pow);
3857 if(i_pow % 4 == 3) i_value->negate();
3864 } else if(i_pow != 1) {
3865 if(i_pow < 0) {
3867 i_pow = -i_pow;
[all …]
H A DMathStructure-calculate.cc3514 long int i_pow = m.lintValue(&b); in merge_power() local
3515 if(b || i_pow > 300) { in merge_power()
3519 if(num_terms.binomial(i_pow + (long int) SIZE - 1, (long int) SIZE - 1)) { in merge_power()
/dports/lang/parrot/parrot-8.1.0/src/pmc/
H A Dcomplex.pmc1901 and i_pow, and pow_(float|int), etc
/dports/lang/parrot/parrot-8.1.0/docs/pdds/
H A Dpdd17_pmc.pod1150 void i_pow(INTERP, PMC *self, PMC *value)
/dports/math/qalculate/qalculate-gtk-3.17.0/src/
H A Dcallbacks.cc6943 size_t i_pow = str.find("^"); in update_completion() local
6944 while(i_pow != string::npos) { in update_completion()
6950 str.erase(i_pow, 1); in update_completion()
6953 str.insert(i_pow, "<span size=\"small\"><sup>"); in update_completion()
6955 i_pow = str.find("^", i_pow + 1); in update_completion()