Home | History | Annotate | Download | only in Support

Lines Matching refs:expbuf

3733     SmallVector<char, 6> expbuf;
3735 expbuf.push_back((char) ('0' + (exp % 10)));
3738 for (unsigned I = 0, E = expbuf.size(); I != E; ++I)
3739 Str.push_back(expbuf[E-1-I]);