Lines Matching refs:maxlen
331 * @maxlen: maximum length of string @s
334 * string @s up to a maximum of maxlen Unicode characters, not including
336 * and @s + @maxlen, @maxlen is returned.
338 * This function never looks beyond @s + @maxlen.
340 u32 ntfs_ucsnlen(const ntfschar *s, u32 maxlen)
344 for (i = 0; i < maxlen; i++) {
354 * @maxlen: maximum length of string @s
360 * A maximum of @maxlen Unicode characters are copied and a terminating
363 * This function never looks beyond @s + @maxlen.
368 ntfschar *ntfs_ucsndup(const ntfschar *s, u32 maxlen)
373 len = ntfs_ucsnlen(s, maxlen);