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()
317 len = strlen(tptr->am); in _strptime()
318 if (strncasecmp_l(buf, tptr->am, len, locale) == 0) { in _strptime()
325 len = strlen(tptr->pm); in _strptime()
326 if (strncasecmp_l(buf, tptr->pm, len, locale) == 0) { in _strptime()
337 for (i = 0; i < asizeof(tptr->weekday); i++) { in _strptime()
338 len = strlen(tptr->weekday[i]); in _strptime()
339 if (strncasecmp_l(buf, tptr->weekday[i], in _strptime()
342 len = strlen(tptr->wday[i]); in _strptime()
343 if (strncasecmp_l(buf, tptr->wday[i], in _strptime()
347 if (i == asizeof(tptr->weekday)) in _strptime()
441 for (i = 0; i < asizeof(tptr->month); i++) { in _strptime()
444 len = strlen(tptr->alt_month[i]); in _strptime()
446 tptr->alt_month[i], in _strptime()
451 len = strlen(tptr->month[i]); in _strptime()
452 if (strncasecmp_l(buf, tptr->month[i], in _strptime()
461 if (i == asizeof(tptr->month) && !Oalternative) { in _strptime()
462 for (i = 0; i < asizeof(tptr->month); i++) { in _strptime()
463 len = strlen(tptr->mon[i]); in _strptime()
464 if (strncasecmp_l(buf, tptr->mon[i], in _strptime()
469 if (i == asizeof(tptr->month)) in _strptime()