Lines Matching refs:ftmp
113 __u16 ftmp[3]; in smb_utf16_bytes() local
116 ftmp[0] = get_unaligned_le16(&from[i]); in smb_utf16_bytes()
117 if (ftmp[0] == 0) in smb_utf16_bytes()
121 ftmp[j] = get_unaligned_le16(&from[i + j]); in smb_utf16_bytes()
123 ftmp[j] = 0; in smb_utf16_bytes()
126 charlen = cifs_mapchar(tmp, ftmp, codepage, 0); in smb_utf16_bytes()
168 __u16 ftmp[3]; /* ftmp[3] = 3array x 2bytes = 6bytes UTF-16 */ in smb_from_utf16() local
179 ftmp[0] = get_unaligned_le16(&from[i]); in smb_from_utf16()
180 if (ftmp[0] == 0) in smb_from_utf16()
184 ftmp[j] = get_unaligned_le16(&from[i + j]); in smb_from_utf16()
186 ftmp[j] = 0; in smb_from_utf16()
194 charlen = cifs_mapchar(tmp, ftmp, codepage, mapchar); in smb_from_utf16()
200 charlen = cifs_mapchar(&to[outlen], ftmp, codepage, mapchar); in smb_from_utf16()