Home
last modified time | relevance | path

Searched refs:decimalExponent (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/flang/runtime/
H A Dedit-output.cpp313 converted.decimalExponent -= scale; in EditEorDOutput()
318 if (int modulus{converted.decimalExponent % 3}; modulus != 0) { in EditEorDOutput()
326 converted.decimalExponent -= modulus; in EditEorDOutput()
331 converted.decimalExponent += adjust; in EditEorDOutput()
335 converted.decimalExponent -= adjust; in EditEorDOutput()
342 FormatExponent(converted.decimalExponent, edit, expoLength)}; in EditEorDOutput()
406 int expo{converted.decimalExponent + edit.modes.scale /*kP*/}; in EditFOutput()
504 int expo{IsZero() ? 1 : converted.decimalExponent}; // 's' in EditForGOutput()
533 int expo{converted.decimalExponent}; in EditListDirectedOutput()
/llvm-project-15.0.7/flang/unittests/Decimal/
H A Dquick-sanity-test.cpp33 result.decimalExponent != expectExpo) { in testDirect()
35 << "', got '." << result.str << 'e' << result.decimalExponent in testDirect()
50 int expo{result.decimalExponent}; in testReadback()
H A Dthorough-test.cpp49 int expo{result.decimalExponent}; in testReadback()
/llvm-project-15.0.7/flang/include/flang/Decimal/
H A Ddecimal.h42 int decimalExponent; /* assuming decimal point to the left of first digit */ member
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dreal.cpp716 int expo{result.decimalExponent}; in AsFortran()