HomeSort by: relevance | last modified time | path
    Searched defs:tm0 (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl2/rcs/dist/src/
maketime.c 264 struct tm *tm0 = 0; local
267 tm0 = 0; /* Keep gcc -Wall happy. */
274 tm0 = time2tm(default_time, localzone);
276 adjzone(tm0, pt->zone);
281 (tm0->tm_year + TM_YEAR_ORIGIN)/pt->ymodulus * pt->ymodulus;
284 tm.tm_year = tm0->tm_year + TM_YEAR_ORIGIN;
286 tm.tm_mon = tm0->tm_mon;
288 tm.tm_mday = tm0->tm_mday;
  /src/external/gpl2/xcvs/dist/lib/
getdate.c 3033 /* If *TM0 is the old and *TM1 is the new value of a struct tm after
3035 It's not OK if *TM0 has out-of-range members. */
3038 mktime_ok (struct tm const *tm0, struct tm const *tm1, time_t t)
3050 return ! ((tm0->tm_sec ^ tm1->tm_sec)
3051 | (tm0->tm_min ^ tm1->tm_min)
3052 | (tm0->tm_hour ^ tm1->tm_hour)
3053 | (tm0->tm_mday ^ tm1->tm_mday)
3054 | (tm0->tm_mon ^ tm1->tm_mon)
3055 | (tm0->tm_year ^ tm1->tm_year));
3089 struct tm tm0;
3086 struct tm tm0; local
    [all...]

Completed in 19 milliseconds