MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / log10

Method log10

src/common/DecFloat.cpp:988–999  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

986}
987
988Decimal128 Decimal128::log10(DecimalStatus decSt) const
989{
990 decNumber dn;
991 decQuadToNumber(&dec, &dn);
992
993 DecimalContext context(this, decSt);
994 decNumberLog10(&dn, &dn, &context);
995
996 Decimal128 rc;
997 decQuadFromNumber(&rc.dec, &dn, &context);
998 return rc;
999}
1000
1001void Decimal128::makeKey(ULONG* key) const
1002{

Callers 1

evlLnLog10Function · 0.80

Calls 1

decNumberLog10Function · 0.85

Tested by

no test coverage detected