Home | History | Annotate | Download | only in intl

Lines Matching defs:maxlength

183       size_t maxlength = length;
187 if (maxlength > 0)
189 if (length < maxlength)
191 memcpy (resultbuf, result, maxlength - 1);
192 resultbuf[maxlength - 1] = '\0';
337 size_t maxlength = length;
341 if (maxlength > 0)
343 if (length < maxlength)
345 memcpy (resultbuf, result, (maxlength - 1) * sizeof (wchar_t));
346 resultbuf[maxlength - 1] = 0;