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

12345678

/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/std/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/std/utilities/date.time/
H A Dtested_elsewhere.pass.cpp27 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), "");
37 static_assert((std::is_same<decltype(std::strftime(str,s,"",&tm)), std::size_t>::value), "");
/external/valgrind/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/libcxx/test/std/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/std/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),
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/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/boringssl/src/crypto/x509/
H A Dx509_set.c111 int X509_set_notBefore(X509 *x, const ASN1_TIME *tm) argument
117 if (in != tm)
119 in=M_ASN1_TIME_dup(tm);
129 int X509_set_notAfter(X509 *x, const ASN1_TIME *tm) argument
135 if (in != tm)
137 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/llvm/lib/CodeGen/
H A DMachineFunctionAnalysis.cpp22 MachineFunctionAnalysis::MachineFunctionAnalysis(const TargetMachine &tm) : argument
23 FunctionPass(ID), TM(tm), MF(nullptr) {
/external/ppp/pppd/plugins/radius/
H A Dutil.c23 * Purpose: Turns printable string into correct tm struct entries.
33 void rc_str2tm (char *valstr, struct tm *tm) argument
42 tm->tm_mon = i;
48 tm->tm_mday = atoi (&valstr[4]);
51 tm->tm_year = atoi (&valstr[7]) - 1900;
/external/skia/samplecode/
H A DSampleRepeatTile.cpp36 static void make_paint(SkPaint* paint, SkShader::TileMode tm) { argument
40 SkShader* shader = SkShader::CreateBitmapShader(bm, tm, tm);
/external/toybox/toys/pending/
H A Dhwclock.c61 struct tm tm; local
91 xioctl(fd, RTC_RD_TIME, &tm);
93 if ((time = mktime(&tm)) < 0) goto bad;
103 || (TT.utc ? gmtime_r : localtime_r)(&timeval.tv_sec, &tm)) goto bad;
109 tm.tm_isdst = 0;
119 if (tm.tm_isdst) tzone.tz_minuteswest -= 60;
/external/toybox/toys/posix/
H A Dtouch.c45 struct tm tm; local
48 localtime_r(&(ts->tv_sec), &tm);
60 localtime_r(&(ts->tv_sec), &tm);
62 s = strptime(date, "%Y-%m-%dT%T", &tm);
76 s = strptime(date, toybuf+(i&2), &tm);
80 if (s && *s=='.' && sscanf(s, ".%2u%n", &(tm.tm_sec), &len) == 1) {
92 ts->tv_sec = mktime(&tm);
/external/blktrace/btt/
H A Dtrace_complete.c23 static inline void __out(FILE *ofp, __u64 tm, enum iop_type type, argument
26 if (tm != (__u64)-1) {
30 (int)SECONDS(tm), (unsigned long)NANO_SECONDS(tm),
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp8.cpp12 template<typename T> constexpr T tm(); // expected-warning {{C++14}}
24 int (S::*tm)() const = &S::tm;
34 template<typename T> constexpr T S::tm() { return T(); } // expected-warning {{C++14}} function in class:S

Completed in 913 milliseconds

12345678