HomeSort by: relevance | last modified time | path
    Searched refs:tm1 (Results 1 - 5 of 5) sorted by relevancy

  /src/external/bsd/wpa/dist/src/utils/
os_win32.c 65 struct tm tm, *tm1; local
85 tm1 = localtime(&t_local);
86 if (tm1) {
87 t1 = mktime(tm1);
88 tm1 = gmtime(&t_local);
89 if (tm1) {
90 t2 = mktime(tm1);
os_unix.c 137 struct tm tm, *tm1; local
157 tm1 = localtime(&t_local);
158 if (tm1) {
159 t1 = mktime(tm1);
160 tm1 = gmtime(&t_local);
161 if (tm1) {
162 t2 = mktime(tm1);
  /src/external/gpl2/xcvs/dist/lib/
getdate.y 1122 /* If *TM0 is the old and *TM1 is the new value of a struct tm after
1127 mktime_ok (struct tm const *tm0, struct tm const *tm1, time_t t)
1134 tm1 = localtime (&t);
1135 if (!tm1)
1139 return ! ((tm0->tm_sec ^ tm1->tm_sec)
1140 | (tm0->tm_min ^ tm1->tm_min)
1141 | (tm0->tm_hour ^ tm1->tm_hour)
1142 | (tm0->tm_mday ^ tm1->tm_mday)
1143 | (tm0->tm_mon ^ tm1->tm_mon)
1144 | (tm0->tm_year ^ tm1->tm_year))
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
typecons.d 1885 auto tm1 = tuple(Equ1.init);
1887 static assert( is(typeof(tm1 == tm1)));
1888 static assert(!is(typeof(tm1 == tc1)));
1889 static assert(!is(typeof(tc1 == tm1)));
1920 auto tm1 = tuple(Cmp1.init);
1922 static assert( is(typeof(tm1 < tm1)));
1923 static assert(!is(typeof(tm1 < tc1)));
1924 static assert(!is(typeof(tc1 < tm1)));
    [all...]
  /src/usr.bin/diff/
diffreg.c 1608 struct tm tm1, tm2, *tm_ptr1, *tm_ptr2; local
1616 tm_ptr1 = localtime_r(&stb1.st_mtime, &tm1);

Completed in 55 milliseconds