Lines Matching refs:tptr

99 	const struct lc_time_T *tptr = __get_current_time_locale(locale);  in _strptime()  local
134 buf = _strptime(buf, tptr->date_fmt, tm, GMTp, locale); in _strptime()
159 buf = _strptime(buf, tptr->c_fmt, tm, GMTp, locale); in _strptime()
198 buf = _strptime(buf, tptr->ampm_fmt, tm, GMTp, locale); in _strptime()
210 buf = _strptime(buf, tptr->X_fmt, tm, GMTp, locale); in _strptime()
216 buf = _strptime(buf, tptr->x_fmt, tm, GMTp, locale); in _strptime()
310 len = strlen(tptr->am); in _strptime()
311 if (strncasecmp_l(buf, tptr->am, len, locale) == 0) { in _strptime()
318 len = strlen(tptr->pm); in _strptime()
319 if (strncasecmp_l(buf, tptr->pm, len, locale) == 0) { in _strptime()
330 for (i = 0; i < asizeof(tptr->weekday); i++) { in _strptime()
331 len = strlen(tptr->weekday[i]); in _strptime()
332 if (strncasecmp_l(buf, tptr->weekday[i], in _strptime()
335 len = strlen(tptr->wday[i]); in _strptime()
336 if (strncasecmp_l(buf, tptr->wday[i], in _strptime()
340 if (i == asizeof(tptr->weekday)) in _strptime()
434 for (i = 0; i < asizeof(tptr->month); i++) { in _strptime()
437 len = strlen(tptr->alt_month[i]); in _strptime()
439 tptr->alt_month[i], in _strptime()
444 len = strlen(tptr->month[i]); in _strptime()
445 if (strncasecmp_l(buf, tptr->month[i], in _strptime()
454 if (i == asizeof(tptr->month) && !Oalternative) { in _strptime()
455 for (i = 0; i < asizeof(tptr->month); i++) { in _strptime()
456 len = strlen(tptr->mon[i]); in _strptime()
457 if (strncasecmp_l(buf, tptr->mon[i], in _strptime()
462 if (i == asizeof(tptr->month)) in _strptime()