Lines Matching defs:xt
36 apr_time_exp_t xt;
55 static apr_status_t cached_explode(apr_time_exp_t *xt, apr_time_t t,
114 return apr_time_exp_gmt(xt, t);
117 return apr_time_exp_lt(xt, t);
122 memcpy(xt, &(cache_element_snapshot.xt),
129 r = apr_time_exp_gmt(xt, t);
132 r = apr_time_exp_lt(xt, t);
138 memcpy(&(cache_element->xt), xt, sizeof(apr_time_exp_t));
141 xt->tm_usec = (int)apr_time_usec(t);
170 apr_time_exp_t xt;
202 ap_explode_recent_localtime(&xt, t);
203 real_year = 1900 + xt.tm_year;
205 int real_month = xt.tm_mon + 1;
216 s = &apr_day_snames[xt.tm_wday][0];
221 s = &apr_month_snames[xt.tm_mon][0];
227 *date_str++ = xt.tm_mday / 10 + '0';
228 *date_str++ = xt.tm_mday % 10 + '0';
230 *date_str++ = xt.tm_hour / 10 + '0';
231 *date_str++ = xt.tm_hour % 10 + '0';
233 *date_str++ = xt.tm_min / 10 + '0';
234 *date_str++ = xt.tm_min % 10 + '0';
236 *date_str++ = xt.tm_sec / 10 + '0';
237 *date_str++ = xt.tm_sec % 10 + '0';
240 int usec = (int)xt.tm_usec;
264 apr_time_exp_t xt;
268 ap_explode_recent_gmt(&xt, t);
273 s = &apr_day_snames[xt.tm_wday][0];
279 *date_str++ = xt.tm_mday / 10 + '0';
280 *date_str++ = xt.tm_mday % 10 + '0';
282 s = &apr_month_snames[xt.tm_mon][0];
287 real_year = 1900 + xt.tm_year;
294 *date_str++ = xt.tm_hour / 10 + '0';
295 *date_str++ = xt.tm_hour % 10 + '0';
297 *date_str++ = xt.tm_min / 10 + '0';
298 *date_str++ = xt.tm_min % 10 + '0';
300 *date_str++ = xt.tm_sec / 10 + '0';
301 *date_str++ = xt.tm_sec % 10 + '0';