Home
last modified time | relevance | path

Searched refs:decimalPoint (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/flang/runtime/
H A Dedit-input.cpp201 std::optional<int> decimalPoint; in ScanRealInput() local
265 if (ch == '0' && got == start && !decimalPoint) { in ScanRealInput()
269 } else if (ch == decimal && !decimalPoint) { in ScanRealInput()
271 decimalPoint = got - start; // # of digits before the decimal point in ScanRealInput()
317 if (decimalPoint) { in ScanRealInput()
318 exponent += *decimalPoint; in ScanRealInput()
/llvm-project-15.0.7/libc/src/__support/
H A Dstr_to_float.h702 const char decimalPoint) { in is_float_hex_start() argument
706 if (*(src + 2) == decimalPoint) { in is_float_hex_start()