Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/
H A DAPFloat.cpp3949 SmallVector<char, 6> expbuf; in toString() local
3951 expbuf.push_back((char) ('0' + (exp % 10))); in toString()
3955 if (!TruncateZero && expbuf.size() < 2) in toString()
3956 expbuf.push_back('0'); in toString()
3957 for (unsigned I = 0, E = expbuf.size(); I != E; ++I) in toString()
3958 Str.push_back(expbuf[E-1-I]); in toString()