HomeSort by relevance Sort by last modified time
    Searched refs:outputlen (Results 1 - 2 of 2) sorted by null

  /external/curl/lib/
escape.c 219 size_t outputlen; local
220 CURLcode res = Curl_urldecode(data, string, inputlen, &str, &outputlen,
226 if(outputlen <= (size_t) INT_MAX)
227 *olen = curlx_uztosi(outputlen);
  /external/pdfium/core/fxcrt/
cfx_decimal.cpp 341 uint8_t outputlen = (uint8_t)tmpbuf.GetLength(); local
343 while (scale >= outputlen) {
345 outputlen++;
350 for (uint8_t idx = 0; idx < outputlen; idx++) {
351 if (idx == (outputlen - scale) && scale != 0)
353 retString += tmpbuf[outputlen - 1 - idx];

Completed in 72 milliseconds