Home
last modified time | relevance | path

Searched refs:tm2 (Results 1 – 9 of 9) sorted by relevance

/external/wpa_supplicant_8/src/utils/
Dos_win32.c104 struct tm *tm2; in os_gmtime() local
107 tm2 = gmtime(&t2); in os_gmtime()
108 if (tm2 == NULL) in os_gmtime()
110 tm->sec = tm2->tm_sec; in os_gmtime()
111 tm->min = tm2->tm_min; in os_gmtime()
112 tm->hour = tm2->tm_hour; in os_gmtime()
113 tm->day = tm2->tm_mday; in os_gmtime()
114 tm->month = tm2->tm_mon + 1; in os_gmtime()
115 tm->year = tm2->tm_year + 1900; in os_gmtime()
Dos_internal.c82 struct tm *tm2; in os_gmtime() local
85 tm2 = gmtime(&t2); in os_gmtime()
86 if (tm2 == NULL) in os_gmtime()
88 tm->sec = tm2->tm_sec; in os_gmtime()
89 tm->min = tm2->tm_min; in os_gmtime()
90 tm->hour = tm2->tm_hour; in os_gmtime()
91 tm->day = tm2->tm_mday; in os_gmtime()
92 tm->month = tm2->tm_mon + 1; in os_gmtime()
93 tm->year = tm2->tm_year + 1900; in os_gmtime()
Dos_unix.c172 struct tm *tm2; in os_gmtime() local
175 tm2 = gmtime(&t2); in os_gmtime()
176 if (tm2 == NULL) in os_gmtime()
178 tm->sec = tm2->tm_sec; in os_gmtime()
179 tm->min = tm2->tm_min; in os_gmtime()
180 tm->hour = tm2->tm_hour; in os_gmtime()
181 tm->day = tm2->tm_mday; in os_gmtime()
182 tm->month = tm2->tm_mon + 1; in os_gmtime()
183 tm->year = tm2->tm_year + 1900; in os_gmtime()
/external/u-boot/post/drivers/
Drtc.c34 struct rtc_time tm2; in rtc_post_skip() local
42 rtc_get (&tm2); in rtc_post_skip()
44 if (tm1.tm_sec != tm2.tm_sec) in rtc_post_skip()
50 if (tm1.tm_sec != tm2.tm_sec) { in rtc_post_skip()
/external/toolchain-utils/crosperf/test_cache/test_input/
Dmachine.txt1tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer xsave lahf_lm arat ep…
/external/toolchain-utils/crosperf/test_cache/test_puretelemetry_input/
Dmachine.txt1tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer xsave lahf_lm arat ep…
/external/eigen/test/
Dhouseholder.cpp118 TMatrixType tm2 = m2.transpose(); in householder() local
119 HouseholderSequence<TMatrixType, HCoeffsVectorType, OnTheRight> rhseq(tm2, hc); in householder()
/external/testng/src/main/java/org/testng/reporters/
DTestHTMLReporter.java342 ITestNGMethod tm2= o2.getMethod(); in compare() local
343 return annotationValue(tm2) - annotationValue(tm1); in compare()
/external/protobuf/ruby/tests/
Dbasic.rb791 tm2 = TestMessage2.new(:foo => 200)
794 m.repeated_msg.push tm2
795 assert m.repeated_msg[-1] == tm2