Lines Matching refs:cval

383 	M_APM cval(void) const 
393 int maxd=m_apm_significant_digits(cval());
404 int his=m_apm_significant_digits(otherVal.cval());
413 {myVal=(M_APM)m.cval();ref(myVal);}
429 {m_apm_to_string(dest,decimalPlaces,cval());}
431 {m_apm_to_fixpt_string(dest,decimalPlaces,cval());}
433 {m_apm_to_fixpt_stringex(dest,dp,cval(),a,b,c);}
435 {return(m_apm_to_fixpt_stringexp(dp,cval(),a,b,c));}
437 {m_apm_to_integer_string(dest,cval());}
441 {copyFrom((M_APM)m.cval());return *this;}
469 {return m_apm_compare(cval(),m.cval())==0;}
471 {return m_apm_compare(cval(),m.cval())!=0;}
473 {return m_apm_compare(cval(),m.cval())<0;}
475 {return m_apm_compare(cval(),m.cval())<=0;}
477 {return m_apm_compare(cval(),m.cval())>0;}
479 {return m_apm_compare(cval(),m.cval())>=0;}
483 {MAPM ret;m_apm_add(ret.val(),a.cval(),b.cval());return ret;}
485 {MAPM ret;m_apm_subtract(ret.val(),a.cval(),b.cval());return ret;}
487 {MAPM ret;m_apm_multiply(ret.val(),a.cval(),b.cval());return ret;}
490 a.cval(),b.cval());return ret;}
498 {MAPM ret;m_apm_divide(ret.val(),toDigits,cval(),
499 m.cval());return ret;}
511 {return m_apm_sign(cval());}
513 {return m_apm_exponent(cval());}
515 {return m_apm_significant_digits(cval());}
517 {return m_apm_is_integer(cval());}
519 {return m_apm_is_even(cval());}
521 {return m_apm_is_odd(cval());}
525 {MAPM ret;m_apm_absolute_value(ret.val(),cval());return ret;}
527 {MAPM ret;m_apm_negate(ret.val(),cval());return ret;}
529 {MAPM ret;m_apm_round(ret.val(),toDigits,cval());return ret;}
540 {MAPM ret;m_apm_##func(ret.val(),toDigits,cval());return ret;}\
563 {m_apm_sin_cos(sinR.val(),cosR.val(),toDigits,cval());}
567 {MAPM ret;m_apm_pow(ret.val(),toDigits,cval(),
568 m.cval());return ret;}
571 {MAPM ret;m_apm_arctan2(ret.val(),toDigits,cval(),
572 x.cval());return ret;}
577 {MAPM ret;m_apm_gcd(ret.val(),cval(),m.cval());return ret;}
580 {MAPM ret;m_apm_lcm(ret.val(),cval(),m.cval());return ret;}
586 {MAPM ret;m_apm_floor(ret.val(),cval());return ret;}
588 {MAPM ret;m_apm_ceil(ret.val(),cval());return ret;}
592 {MAPM ret;m_apm_factorial(ret.val(),cval());return ret;}
595 cval(),p);return ret;}
598 toDigits,cval(),p);return ret;}
602 {MAPM ret;m_apm_integer_divide(ret.val(),cval(),
603 denom.cval());return ret;}
605 {m_apm_integer_div_rem(quot.val(),rem.val(),cval(),
606 denom.cval());}