Lines Matching defs:seconds
24 time_t seconds =
29 struct tm *tm_data = LIBC_NAMESPACE::gmtime(&seconds);
34 seconds =
39 tm_data = LIBC_NAMESPACE::gmtime(&seconds);
45 time_t seconds = 0;
48 seconds = -1;
49 tm_data = LIBC_NAMESPACE::gmtime(&seconds);
61 // 60 seconds from 1970-01-01 00:00:00 returns 1970-01-01 00:01:00.
62 seconds = 60;
63 tm_data = LIBC_NAMESPACE::gmtime(&seconds);
78 time_t seconds = 0;
81 seconds = -LIBC_NAMESPACE::time_constants::SECONDS_PER_MIN;
82 tm_data = LIBC_NAMESPACE::gmtime(&seconds);
95 seconds = 60 * LIBC_NAMESPACE::time_constants::SECONDS_PER_MIN;
96 tm_data = LIBC_NAMESPACE::gmtime(&seconds);
111 time_t seconds = 0;
114 seconds = -LIBC_NAMESPACE::time_constants::SECONDS_PER_HOUR;
115 tm_data = LIBC_NAMESPACE::gmtime(&seconds);
128 seconds = 24 * LIBC_NAMESPACE::time_constants::SECONDS_PER_HOUR;
129 tm_data = LIBC_NAMESPACE::gmtime(&seconds);
145 time_t seconds = -LIBC_NAMESPACE::time_constants::DAYS_PER_NON_LEAP_YEAR *
147 struct tm *tm_data = LIBC_NAMESPACE::gmtime(&seconds);
162 time_t seconds = 0;
165 seconds = -31 * LIBC_NAMESPACE::time_constants::SECONDS_PER_DAY;
166 tm_data = LIBC_NAMESPACE::gmtime(&seconds);
179 seconds = LIBC_NAMESPACE::time_constants::DAYS_PER_NON_LEAP_YEAR *
181 tm_data = LIBC_NAMESPACE::gmtime(&seconds);
196 time_t seconds = 0;
199 seconds = -1 * LIBC_NAMESPACE::time_constants::SECONDS_PER_DAY;
200 tm_data = LIBC_NAMESPACE::gmtime(&seconds);
214 seconds = 31 * LIBC_NAMESPACE::time_constants::SECONDS_PER_DAY;
215 tm_data = LIBC_NAMESPACE::gmtime(&seconds);
229 seconds = 59 * LIBC_NAMESPACE::time_constants::SECONDS_PER_DAY;
230 tm_data = LIBC_NAMESPACE::gmtime(&seconds);
244 seconds =
247 tm_data = LIBC_NAMESPACE::gmtime(&seconds);
264 time_t seconds = 0x7FFFFFFF;
265 struct tm *tm_data = LIBC_NAMESPACE::gmtime(&seconds);
283 time_t seconds = 6311479850;
284 struct tm *tm_data = LIBC_NAMESPACE::gmtime(&seconds);
298 seconds = 67767976202043050;
299 tm_data = LIBC_NAMESPACE::gmtime(&seconds);