Lines Matching refs:seconds
24 time_t seconds = in TEST() local
27 struct tm *tm_data = __llvm_libc::gmtime(&seconds); in TEST()
32 seconds = INT_MIN * static_cast<int64_t>( in TEST()
35 tm_data = __llvm_libc::gmtime(&seconds); in TEST()
41 time_t seconds = 0; in TEST() local
44 seconds = -1; in TEST()
45 tm_data = __llvm_libc::gmtime(&seconds); in TEST()
57 seconds = 60; in TEST()
58 tm_data = __llvm_libc::gmtime(&seconds); in TEST()
72 time_t seconds = 0; in TEST() local
75 seconds = -TimeConstants::SECONDS_PER_MIN; in TEST()
76 tm_data = __llvm_libc::gmtime(&seconds); in TEST()
88 seconds = 60 * TimeConstants::SECONDS_PER_MIN; in TEST()
89 tm_data = __llvm_libc::gmtime(&seconds); in TEST()
103 time_t seconds = 0; in TEST() local
106 seconds = -TimeConstants::SECONDS_PER_HOUR; in TEST()
107 tm_data = __llvm_libc::gmtime(&seconds); in TEST()
119 seconds = 24 * TimeConstants::SECONDS_PER_HOUR; in TEST()
120 tm_data = __llvm_libc::gmtime(&seconds); in TEST()
135 time_t seconds = in TEST() local
137 struct tm *tm_data = __llvm_libc::gmtime(&seconds); in TEST()
151 time_t seconds = 0; in TEST() local
154 seconds = -31 * TimeConstants::SECONDS_PER_DAY; in TEST()
155 tm_data = __llvm_libc::gmtime(&seconds); in TEST()
167 seconds = in TEST()
169 tm_data = __llvm_libc::gmtime(&seconds); in TEST()
183 time_t seconds = 0; in TEST() local
186 seconds = -1 * TimeConstants::SECONDS_PER_DAY; in TEST()
187 tm_data = __llvm_libc::gmtime(&seconds); in TEST()
200 seconds = 31 * TimeConstants::SECONDS_PER_DAY; in TEST()
201 tm_data = __llvm_libc::gmtime(&seconds); in TEST()
214 seconds = 59 * TimeConstants::SECONDS_PER_DAY; in TEST()
215 tm_data = __llvm_libc::gmtime(&seconds); in TEST()
228 seconds = ((2 * TimeConstants::DAYS_PER_NON_LEAP_YEAR) + 60) * in TEST()
230 tm_data = __llvm_libc::gmtime(&seconds); in TEST()
246 time_t seconds = 0x7FFFFFFF; in TEST() local
247 struct tm *tm_data = __llvm_libc::gmtime(&seconds); in TEST()
264 time_t seconds = 6311479850; in TEST() local
265 struct tm *tm_data = __llvm_libc::gmtime(&seconds); in TEST()
278 seconds = 67767976202043050; in TEST()
279 tm_data = __llvm_libc::gmtime(&seconds); in TEST()