Lines Matching refs:unicode
342 smb_codepage_t *unicode; in smb_unicode_init() local
346 unicode = MEM_ZALLOC("unicode", sizeof (smb_codepage_t) << 16); in smb_unicode_init()
347 if (unicode == NULL) in smb_unicode_init()
356 unicode[b].ctype = CODEPAGE_ISNONE; in smb_unicode_init()
357 unicode[b].upper = (smb_wchar_t)b; in smb_unicode_init()
358 unicode[b].lower = (smb_wchar_t)b; in smb_unicode_init()
371 unicode[b].ctype = CODEPAGE_ISNONE; in smb_unicode_init()
372 unicode[b].upper = (smb_wchar_t)b; in smb_unicode_init()
373 unicode[b].lower = (smb_wchar_t)b; in smb_unicode_init()
381 unicode[b].ctype = CODEPAGE_ISNONE; in smb_unicode_init()
382 unicode[b].upper = (smb_wchar_t)b; in smb_unicode_init()
383 unicode[b].lower = (smb_wchar_t)b; in smb_unicode_init()
385 unicode[b].ctype = CODEPAGE_ISUPPER; in smb_unicode_init()
386 unicode[b].upper = (smb_wchar_t)b; in smb_unicode_init()
387 unicode[b].lower = a_unicode[a].lower; in smb_unicode_init()
396 unicode[b].ctype = CODEPAGE_ISNONE; in smb_unicode_init()
397 unicode[b].upper = (smb_wchar_t)b; in smb_unicode_init()
398 unicode[b].lower = (smb_wchar_t)b; in smb_unicode_init()
400 unicode[b].ctype = CODEPAGE_ISLOWER; in smb_unicode_init()
401 unicode[b].upper = a_unicode[a].upper; in smb_unicode_init()
402 unicode[b].lower = (smb_wchar_t)b; in smb_unicode_init()
406 MEM_FREE("unicode", unicode); in smb_unicode_init()
414 return (unicode); in smb_unicode_init()