Lines Matching refs:tptr

98 	const struct lc_time_T *tptr = __get_current_time_locale(locale);  in _strptime()  local
133 buf = _strptime(buf, tptr->date_fmt, tm, GMTp, locale); in _strptime()
158 buf = _strptime(buf, tptr->c_fmt, tm, GMTp, locale); in _strptime()
197 buf = _strptime(buf, tptr->ampm_fmt, tm, GMTp, locale); in _strptime()
209 buf = _strptime(buf, tptr->X_fmt, tm, GMTp, locale); in _strptime()
215 buf = _strptime(buf, tptr->x_fmt, tm, GMTp, locale); in _strptime()
316 len = strlen(tptr->am); in _strptime()
317 if (strncasecmp_l(buf, tptr->am, len, locale) == 0) { in _strptime()
324 len = strlen(tptr->pm); in _strptime()
325 if (strncasecmp_l(buf, tptr->pm, len, locale) == 0) { in _strptime()
336 for (i = 0; i < asizeof(tptr->weekday); i++) { in _strptime()
337 len = strlen(tptr->weekday[i]); in _strptime()
338 if (strncasecmp_l(buf, tptr->weekday[i], in _strptime()
341 len = strlen(tptr->wday[i]); in _strptime()
342 if (strncasecmp_l(buf, tptr->wday[i], in _strptime()
346 if (i == asizeof(tptr->weekday)) in _strptime()
440 for (i = 0; i < asizeof(tptr->month); i++) { in _strptime()
443 len = strlen(tptr->alt_month[i]); in _strptime()
445 tptr->alt_month[i], in _strptime()
450 len = strlen(tptr->month[i]); in _strptime()
451 if (strncasecmp_l(buf, tptr->month[i], in _strptime()
460 if (i == asizeof(tptr->month) && !Oalternative) { in _strptime()
461 for (i = 0; i < asizeof(tptr->month); i++) { in _strptime()
462 len = strlen(tptr->mon[i]); in _strptime()
463 if (strncasecmp_l(buf, tptr->mon[i], in _strptime()
468 if (i == asizeof(tptr->month)) in _strptime()