Lines Matching refs:outlen
110 int charlen, outlen = 0; in smb_utf16_bytes() local
128 outlen += charlen; in smb_utf16_bytes()
130 outlen++; in smb_utf16_bytes()
133 return outlen; in smb_utf16_bytes()
164 int outlen = 0; in smb_from_utf16() local
193 if (outlen >= safelen) { in smb_from_utf16()
195 if ((outlen + charlen) > (tolen - nullsize)) in smb_from_utf16()
200 charlen = cifs_mapchar(&to[outlen], ftmp, codepage, mapchar); in smb_from_utf16()
201 outlen += charlen; in smb_from_utf16()
219 to[outlen++] = 0; in smb_from_utf16()
221 return outlen; in smb_from_utf16()