Home
last modified time | relevance | path

Searched refs:NegativeZero (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DNativeFormatting.cpp198 char NegativeZero[] = "-0.000000e+00"; in write_double() local
200 NegativeZero[strlen(NegativeZero) - 4] = 'E'; in write_double()
201 S << NegativeZero; in write_double()
209 char NegativeZero[] = "-0.000000e+00"; in write_double()
211 NegativeZero[strlen(NegativeZero) - 4] = 'E'; in write_double()
212 S << NegativeZero; in write_double()
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dreal.cpp101 result.value = NegativeZero(); in Add()
224 result.value = NegativeZero(); in Divide()
275 result.value = NegativeZero(); in SQRT()
/llvm-project-15.0.7/flang/include/flang/Evaluate/
H A Dreal.h213 static constexpr Real NegativeZero() { return {Word{}.MASKL(1)}; } in NegativeZero() function