Searched defs:tm (Results 1 - 25 of 263) sorted by relevance

1234567891011

/external/chromium_org/base/
H A Dos_compat_nacl.cc14 time_t timegm(struct tm* tm) { argument
20 ret = mktime(tm);
/external/compiler-rt/test/asan/TestCases/
H A Dtime_interceptor.cc13 time_t *tm = (time_t*)malloc(sizeof(time_t)); local
14 free(tm);
15 time_t t = time(tm);
/external/compiler-rt/test/msan/
H A Dmktime.cc10 struct tm tm; local
11 tm.tm_year = 2014;
12 tm.tm_mon = 3;
13 tm.tm_mday = 28;
15 tm.tm_hour = 13;
17 tm.tm_min = 4;
18 tm.tm_sec = 42;
19 tm.tm_isdst = -1;
20 time_t t = mktime(&tm);
[all...]
/external/ltrace/
H A Dsummary.h27 struct timeval tm; member in struct:timedelta
/external/libcxx/test/language.support/support.runtime/
H A Dctime.pass.cpp28 std::tm tm = {0}; local
31 static_assert((std::is_same<decltype(std::mktime(&tm)), std::time_t>::value), "");
33 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
35 static_assert((std::is_same<decltype(std::gmtime(&t)), std::tm*>::value), "");
36 static_assert((std::is_same<decltype(std::localtime(&t)), std::tm*>::value), "");
39 static_assert((std::is_same<decltype(std::strftime(c1,s,c2,&tm)), std::size_t>::value), "");
/external/libcxx/test/utilities/date.time/
H A Dtested_elsewhere.pass.cpp26 std::tm tm = {0}; local
30 static_assert((std::is_same<decltype(std::mktime(&tm)), std::time_t>::value), "");
32 static_assert((std::is_same<decltype(std::asctime(&tm)), char*>::value), "");
34 static_assert((std::is_same<decltype(std::gmtime(&t)), std::tm*>::value), "");
35 static_assert((std::is_same<decltype(std::localtime(&t)), std::tm*>::value), "");
36 static_assert((std::is_same<decltype(std::strftime(str,s,"",&tm)), std::size_t>::value), "");
/external/valgrind/main/none/tests/s390x/
H A Dtm.c44 void tm(void) function
50 asm volatile( "tm %[v],15\n\t" : : [v] "R"(v) : "cc");
55 asm volatile( "tm %[v],0\n\t" : : [v] "R"(v) : "cc");
60 asm volatile( "tm %[v],0xf0\n\t" : : [v] "R"(v) : "cc");
65 asm volatile( "tm %[v],0x70\n\t" : : [v] "R"(v) : "cc");
70 asm volatile( "tm %[v],0x81\n\t" : : [v] "R"(v) : "cc");
76 tm();
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DSIRegisterInfo.cpp20 SIRegisterInfo::SIRegisterInfo(AMDGPUTargetMachine &tm, argument
22 : AMDGPURegisterInfo(tm, tii),
23 TM(tm),
H A DAMDGPUConvertToISA.cpp30 AMDGPUConvertToISAPass(TargetMachine &tm) : argument
31 MachineFunctionPass(ID), TM(tm) { }
43 FunctionPass *llvm::createAMDGPUConvertToISAPass(TargetMachine &tm) { argument
44 return new AMDGPUConvertToISAPass(tm);
H A DAMDGPURegisterInfo.cpp19 AMDGPURegisterInfo::AMDGPURegisterInfo(TargetMachine &tm, argument
22 TM(tm),
H A DAMDILIntrinsicInfo.cpp27 AMDGPUIntrinsicInfo::AMDGPUIntrinsicInfo(TargetMachine *tm) argument
H A DR600RegisterInfo.cpp20 R600RegisterInfo::R600RegisterInfo(AMDGPUTargetMachine &tm, argument
22 : AMDGPURegisterInfo(tm, tii),
23 TM(tm),
H A DSIInstrInfo.cpp25 SIInstrInfo::SIInstrInfo(AMDGPUTargetMachine &tm) argument
26 : AMDGPUInstrInfo(tm),
27 RI(tm, *this),
28 TM(tm)
/external/chromium_org/third_party/skia/src/animator/
H A DSkTime.cpp46 tm syst;
47 time_t tm; local
49 time(&tm);
50 localtime_r(&tm, &syst);
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dspinlock_posix-inl.h50 struct timespec tm; local
51 tm.tv_sec = 0;
52 tm.tv_nsec = base::internal::SuggestedDelayNS(loop);
53 nanosleep(&tm, NULL);
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dspinlock_posix-inl.h50 struct timespec tm; local
51 tm.tv_sec = 0;
52 tm.tv_nsec = base::internal::SuggestedDelayNS(loop);
53 nanosleep(&tm, NULL);
/external/libcxx/test/depr/depr.c.headers/
H A Dwchar_h.pass.cpp35 tm *tm = 0; local
95 static_assert((std::is_same<decltype(wcsftime(ws, s, L"", tm)), size_t>::value), "");
/external/libcxx/test/strings/c.strings/
H A Dcwchar.pass.cpp35 std::tm *tm = 0; local
100 static_assert((std::is_same<decltype(std::wcsftime(ws, s, L"", tm)), std::size_t>::value), "");
/external/mesa3d/src/gallium/drivers/radeon/
H A DSIRegisterInfo.cpp20 SIRegisterInfo::SIRegisterInfo(AMDGPUTargetMachine &tm, argument
22 : AMDGPURegisterInfo(tm, tii),
23 TM(tm),
/external/skia/src/animator/
H A DSkTime.cpp46 tm syst;
47 time_t tm; local
49 time(&tm);
50 localtime_r(&tm, &syst);
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DTrustManagerImplTest.java77 TrustManagerImpl tm = new TrustManagerImpl(ks);
78 assertEquals(0, tm.getAcceptedIssuers().length);
79 checkTrustManager(tm);
85 TrustManagerImpl tm = new TrustManagerImpl(ks);
86 assertEquals(1, tm.getAcceptedIssuers().length);
87 checkTrustManager(tm);
90 private void checkTrustManager(TrustManagerImpl tm) throws Exception { argument
92 tm.checkClientTrusted(null, "RSA");
98 tm.checkClientTrusted(new X509Certificate[0], "RSA");
104 tm
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx509_set.c105 int X509_set_notBefore(X509 *x, const ASN1_TIME *tm) argument
111 if (in != tm)
113 in=M_ASN1_TIME_dup(tm);
123 int X509_set_notAfter(X509 *x, const ASN1_TIME *tm) argument
129 if (in != tm)
131 in=M_ASN1_TIME_dup(tm);
H A Dx509cset.c79 int X509_CRL_set_lastUpdate(X509_CRL *x, const ASN1_TIME *tm) argument
85 if (in != tm)
87 in=M_ASN1_TIME_dup(tm);
97 int X509_CRL_set_nextUpdate(X509_CRL *x, const ASN1_TIME *tm) argument
103 if (in != tm)
105 in=M_ASN1_TIME_dup(tm);
131 int X509_REVOKED_set_revocationDate(X509_REVOKED *x, ASN1_TIME *tm) argument
137 if (in != tm)
139 in=M_ASN1_TIME_dup(tm);
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dltm.c53 const TValue *tm = luaH_getstr(events, ename); local
55 if (ttisnil(tm)) { /* no tag method? */
59 else return tm;
/external/chromium_org/third_party/webrtc/base/
H A Dtimeutils_unittest.cc130 struct tm tm; local
134 CurrentTmTime(&tm, &microseconds);
137 // Assert that 'tm' represents a time between 'before' and 'after'.
140 time_t t = ::mktime(&tm) + local_delta;

Completed in 2098 milliseconds

1234567891011