Home
last modified time | relevance | path

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

/external/icu4c/i18n/
Ddigitlst.cpp177 formatBase10(int64_t number, char *outputStr, int32_t outputLen) in formatBase10() argument
183 if (outputLen > MAX_DIGITS) { in formatBase10()
184 outputLen = MAX_DIGITS; // Ignore NULL in formatBase10()
186 else if (outputLen < 3) { in formatBase10()
190 bufferLen = outputLen; in formatBase10()
205 result = outputLen - bufferLen++; in formatBase10()
207 while (bufferLen <= outputLen) { // Copy the number to output in formatBase10()