Lines Matching refs:loc
51 nl_langinfo_l(nl_item item, locale_t loc) in nl_langinfo_l() argument
55 FIX_LOCALE(loc); in nl_langinfo_l()
59 s = XLOCALE_CTYPE(loc)->runes->__encoding; in nl_langinfo_l()
80 ret = (char *) __get_current_time_locale(loc)->c_fmt; in nl_langinfo_l()
83 ret = (char *) __get_current_time_locale(loc)->x_fmt; in nl_langinfo_l()
86 ret = (char *) __get_current_time_locale(loc)->X_fmt; in nl_langinfo_l()
89 ret = (char *) __get_current_time_locale(loc)->ampm_fmt; in nl_langinfo_l()
92 ret = (char *) __get_current_time_locale(loc)->am; in nl_langinfo_l()
95 ret = (char *) __get_current_time_locale(loc)->pm; in nl_langinfo_l()
99 ret = (char*) __get_current_time_locale(loc)->weekday[_REL(DAY_1)]; in nl_langinfo_l()
103 ret = (char*) __get_current_time_locale(loc)->wday[_REL(ABDAY_1)]; in nl_langinfo_l()
108 ret = (char*) __get_current_time_locale(loc)->month[_REL(MON_1)]; in nl_langinfo_l()
113 ret = (char*) __get_current_time_locale(loc)->mon[_REL(ABMON_1)]; in nl_langinfo_l()
119 __get_current_time_locale(loc)->alt_month[_REL(ALTMON_1)]; in nl_langinfo_l()
142 ret = (char*) __get_current_numeric_locale(loc)->decimal_point; in nl_langinfo_l()
145 ret = (char*) __get_current_numeric_locale(loc)->thousands_sep; in nl_langinfo_l()
148 ret = (char*) __get_current_messages_locale(loc)->yesexpr; in nl_langinfo_l()
151 ret = (char*) __get_current_messages_locale(loc)->noexpr; in nl_langinfo_l()
159 ret = (char*) __get_current_messages_locale(loc)->yesstr; in nl_langinfo_l()
162 ret = (char*) __get_current_messages_locale(loc)->nostr; in nl_langinfo_l()
169 cs = (char*) __get_current_monetary_locale(loc)->currency_symbol; in nl_langinfo_l()
171 char pos = localeconv_l(loc)->p_cs_precedes; in nl_langinfo_l()
173 if (pos == localeconv_l(loc)->n_cs_precedes) { in nl_langinfo_l()
177 if (strcmp(cs, __get_current_monetary_locale(loc)->mon_decimal_point) == 0) in nl_langinfo_l()
184 if ((loc->csym = reallocf(loc->csym, clen + 2)) != NULL) { in nl_langinfo_l()
185 *loc->csym = psn; in nl_langinfo_l()
186 strcpy(loc->csym + 1, cs); in nl_langinfo_l()
187 ret = loc->csym; in nl_langinfo_l()
194 ret = (char *) __get_current_time_locale(loc)->md_order; in nl_langinfo_l()