Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/runtime/
H A Dedit-output.cpp69 int subTotal{leadingZeroes + significant}; in EditBOZOutput() local
70 int leadingSpaces{std::max(0, editWidth - subTotal)}; in EditBOZOutput()
71 if (editWidth > 0 && leadingSpaces + subTotal > editWidth) { in EditBOZOutput()
157 int subTotal{signChars + leadingZeroes + digits}; in EditIntegerOutput() local
158 int leadingSpaces{std::max(0, editWidth - subTotal)}; in EditIntegerOutput()
159 if (editWidth > 0 && leadingSpaces + subTotal > editWidth) { in EditIntegerOutput()
163 int total{std::max(leadingSpaces, 1) + subTotal}; in EditIntegerOutput()