Lines Matching refs:tptr
89 const struct lc_time_T *tptr = __get_current_time_locale(locale);
124 buf = _strptime(buf, tptr->date_fmt, tm, GMTp, locale);
149 buf = _strptime(buf, tptr->c_fmt, tm, GMTp, locale);
188 buf = _strptime(buf, tptr->ampm_fmt, tm, GMTp, locale);
200 buf = _strptime(buf, tptr->X_fmt, tm, GMTp, locale);
206 buf = _strptime(buf, tptr->x_fmt, tm, GMTp, locale);
307 len = strlen(tptr->am);
308 if (strncasecmp_l(buf, tptr->am, len, locale) == 0) {
315 len = strlen(tptr->pm);
316 if (strncasecmp_l(buf, tptr->pm, len, locale) == 0) {
327 for (i = 0; i < asizeof(tptr->weekday); i++) {
328 len = strlen(tptr->weekday[i]);
329 if (strncasecmp_l(buf, tptr->weekday[i],
332 len = strlen(tptr->wday[i]);
333 if (strncasecmp_l(buf, tptr->wday[i],
337 if (i == asizeof(tptr->weekday))
431 for (i = 0; i < asizeof(tptr->month); i++) {
434 len = strlen(tptr->alt_month[i]);
436 tptr->alt_month[i],
441 len = strlen(tptr->month[i]);
442 if (strncasecmp_l(buf, tptr->month[i],
451 if (i == asizeof(tptr->month) && !Oalternative) {
452 for (i = 0; i < asizeof(tptr->month); i++) {
453 len = strlen(tptr->mon[i]);
454 if (strncasecmp_l(buf, tptr->mon[i],
459 if (i == asizeof(tptr->month))