/titanic_41/usr/src/lib/libc/port/locale/ |
H A D | towlower.c | 90 change_case_ext(uselocale(NULL), wc, 1) : in towlower() 91 uselocale(NULL)->runelocale->__maplower[wc]); in towlower() 109 change_case_ext(uselocale(NULL), wc, 0) : in towupper() 110 uselocale(NULL)->runelocale->__mapupper[wc]); in towupper()
|
H A D | fgetwc.c | 100 return (_fgetwc_unlocked_l(fp, uselocale(NULL))); in _fgetwc_unlocked() 114 locale_t loc = uselocale(NULL); in fgetwc() 133 locale_t loc = uselocale(NULL); in __fgetwc_xpg5()
|
H A D | tolower.c | 41 return (isascii(c) ? __trans_lower[c] : tolower_l(c, uselocale(NULL))); in tolower() 48 return (isascii(c) ? __trans_upper[c] : toupper_l(c, uselocale(NULL))); in toupper()
|
H A D | wctrans.c | 64 return (towctrans_l(wc, desc, uselocale(NULL))); in towctrans() 97 return (wctrans_l(charclass, uselocale(NULL))); in wctrans()
|
H A D | wcscasecmp.c | 61 return (wcscasecmp_l(s1, s2, uselocale(NULL))); in wcscasecmp() 82 return (wcsncasecmp_l(s1, s2, n, uselocale(NULL))); in wcsncasecmp()
|
H A D | mbsinit.c | 30 return (mbsinit_l(s, uselocale(NULL))); in mbsinit()
|
H A D | wctob.c | 52 return (wctob_l(c, uselocale(NULL))); in wctob()
|
H A D | wctomb.c | 54 return (wctomb_l(s, wchar, uselocale(NULL))); in wctomb()
|
H A D | btowc.c | 60 return (btowc_l(c, uselocale(NULL))); in btowc()
|
H A D | wcswidth.c | 63 return (wcswidth_l(pwcs, n, uselocale(NULL))); in wcswidth()
|
H A D | mblen.c | 56 return (mblen_l(s, n, uselocale(NULL))); in mblen()
|
H A D | wcrtomb.c | 51 return (wcrtomb_l(s, wc, ps, uselocale(NULL))); in wcrtomb()
|
H A D | mbrlen.c | 49 return (mbrlen_l(s, n, ps, uselocale(NULL))); in mbrlen()
|
H A D | mbstowcs.c | 52 return (mbstowcs_l(pwcs, s, n, uselocale(NULL))); in mbstowcs()
|
H A D | mbtowc.c | 56 return (mbtowc_l(pwc, s, n, uselocale(NULL))); in mbtowc()
|
H A D | wcstombs.c | 53 return (wcstombs_l(s, pwcs, n, uselocale(NULL))); in wcstombs()
|
H A D | wcsrtombs.c | 53 return (wcsrtombs_l(dst, src, len, ps, uselocale(NULL))); in wcsrtombs()
|
H A D | mbrtowc.c | 50 return (mbrtowc_l(pwc, s, n, ps, uselocale(NULL))); in mbrtowc()
|
H A D | mbsrtowcs.c | 54 return (mbsrtowcs_l(dst, src, len, ps, uselocale(NULL))); in mbsrtowcs()
|
H A D | strcasecmp.c | 73 return (strcasecmp_l(s1, s2, uselocale(NULL))); in strcasecmp()
|
H A D | wctype.c | 80 return (wctype_l(property, uselocale(NULL))); in wctype()
|
H A D | wcwidth.c | 72 return (wcwidth_l(wc, uselocale(NULL))); in wcwidth()
|
H A D | strcasestr.c | 78 return (strcasestr_l(s1, s2, uselocale(NULL))); in strcasestr()
|
H A D | strncasecmp.c | 74 return (strncasecmp_l(s1, s2, n, uselocale(NULL))); in strncasecmp()
|
/titanic_41/usr/src/test/libc-tests/tests/newlocale/ |
H A D | newlocale_test.c | 68 cloc = uselocale(NULL); in testlocale_thr_one() 96 (void) uselocale(loc); in testlocale_thr_one() 114 if (uselocale(cloc) != loc) { in testlocale_thr_one() 118 if (uselocale(LC_GLOBAL_LOCALE) != cloc) { in testlocale_thr_one()
|