Home
last modified time | relevance | path

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

/external/llvm-project/flang/runtime/
Dcharacter.cpp35 auto minChars{std::min(xChars, yChars)}; in Compare() local
38 int cmp{std::memcmp(x, y, minChars)}; in Compare()
48 x += minChars; in Compare()
49 y += minChars; in Compare()
51 for (std::size_t n{minChars}; n-- > 0; ++x, ++y) { in Compare()
60 if (int cmp{CompareToBlankPadding(x, xChars - minChars)}) { in Compare()
63 return -CompareToBlankPadding(y, yChars - minChars); in Compare()