Home
last modified time | relevance | path

Searched refs:category_mask (Results 1 – 3 of 3) sorted by relevance

/glibc-2.36/locale/
Dnewlocale.c42 __newlocale (int category_mask, const char *locale, locale_t base)
55 if (category_mask == 1 << LC_ALL)
56 category_mask = (1 << __LC_LAST) - 1 - (1 << LC_ALL);
59 if ((category_mask & ~((1 << __LC_LAST) - 1 - (1 << LC_ALL))) != 0)
72 if ((base == NULL || category_mask == (1 << __LC_LAST) - 1 - (1 << LC_ALL))
73 && (category_mask == 0 || !strcmp (locale, "C")))
86 if (category_mask == 0)
155 if (category_mask &~ specified_mask)
167 if ((category_mask & 1 << cnt) != 0)
176 if (((category_mask & 1 << cnt) != 0)
[all …]
/glibc-2.36/support/
Dxnewlocale.c24 xnewlocale (int category_mask, const char *locale, locale_t base) in xnewlocale() argument
26 locale_t r = newlocale (category_mask, locale, base); in xnewlocale()
28 FAIL_EXIT1 ("error: newlocale (%d, \"%s\", %p)\n", category_mask, in xnewlocale()
Dsupport.h121 locale_t xnewlocale (int category_mask, const char *locale, locale_t base);