Searched defs:tm (Results 26 - 50 of 263) sorted by relevance

1234567891011

/external/chromium_org/third_party/webrtc/voice_engine/
H A Dtransmit_mixer_unittest.cc31 TransmitMixer* tm = NULL; local
32 ASSERT_EQ(0, TransmitMixer::Create(tm, 0));
33 ASSERT_TRUE(tm != NULL);
35 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(NULL,
37 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(&callback,
39 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(&callback,
41 EXPECT_EQ(-1, tm->RegisterExternalMediaProcessing(&callback,
43 EXPECT_EQ(0, tm->RegisterExternalMediaProcessing(&callback,
45 EXPECT_EQ(0, tm->RegisterExternalMediaProcessing(&callback,
47 EXPECT_EQ(-1, tm
[all...]
/external/llvm/lib/CodeGen/
H A DMachineFunctionAnalysis.cpp22 MachineFunctionAnalysis::MachineFunctionAnalysis(const TargetMachine &tm) : argument
23 FunctionPass(ID), TM(tm), MF(nullptr) {
/external/llvm/lib/Target/R600/
H A DAMDGPUIntrinsicInfo.cpp27 AMDGPUIntrinsicInfo::AMDGPUIntrinsicInfo(TargetMachine *tm) argument
/external/mesa3d/src/gallium/drivers/radeon/
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/openssl/crypto/x509/
H A Dx509_set.c107 int X509_set_notBefore(X509 *x, const ASN1_TIME *tm) argument
113 if (in != tm)
115 in=M_ASN1_TIME_dup(tm);
125 int X509_set_notAfter(X509 *x, const ASN1_TIME *tm) argument
131 if (in != tm)
133 in=M_ASN1_TIME_dup(tm);
H A Dx509cset.c84 int X509_CRL_set_lastUpdate(X509_CRL *x, const ASN1_TIME *tm) argument
90 if (in != tm)
92 in=M_ASN1_TIME_dup(tm);
102 int X509_CRL_set_nextUpdate(X509_CRL *x, const ASN1_TIME *tm) argument
108 if (in != tm)
110 in=M_ASN1_TIME_dup(tm);
136 int X509_REVOKED_set_revocationDate(X509_REVOKED *x, ASN1_TIME *tm) argument
142 if (in != tm)
144 in=M_ASN1_TIME_dup(tm);
/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/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/chromium_org/third_party/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/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dspinlock_linux-inl.h87 struct timespec tm; local
88 tm.tv_sec = 0;
91 tm.tv_nsec = base::internal::SuggestedDelayNS(loop);
97 value, reinterpret_cast<struct kernel_timespec *>(&tm));
99 tm.tv_nsec = 2000001; // above 2ms so linux 2.4 doesn't spin
100 nanosleep(&tm, NULL);
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dspinlock_linux-inl.h76 struct timespec tm; local
77 tm.tv_sec = 0;
79 tm.tv_nsec = base::internal::SuggestedDelayNS(loop);
81 tm.tv_nsec = 2000001; // above 2ms so linux 2.4 doesn't spin
84 tm.tv_nsec *= 16; // increase the delay; we expect explicit wakeups
87 value, reinterpret_cast<struct kernel_timespec *>(&tm));
89 nanosleep(&tm, NULL);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp8.cpp12 template<typename T> constexpr T tm(); // expected-warning {{C++1y}}
24 int (S::*tm)() const = &S::tm;
34 template<typename T> constexpr T S::tm() { return T(); } // expected-warning {{C++1y}} function in class:S
/external/ipsec-tools/src/racoon/
H A Dlogger.c186 struct tm *tm; local
197 tm = localtime(&p->tbuf[j]);
198 strftime(ts, sizeof(ts), "%B %d %T", tm);
/external/llvm/lib/Target/SystemZ/
H A DSystemZShortenInst.cpp27 SystemZShortenInst(const SystemZTargetMachine &tm);
55 SystemZShortenInst::SystemZShortenInst(const SystemZTargetMachine &tm) argument
/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/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderThemeChromiumFontProviderWin.cpp98 TEXTMETRIC tm; local
99 GetTextMetrics(hdc, &tm);
101 size = tm.tmAscent;
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Da_gentm.c64 int asn1_generalizedtime_to_tm(struct tm *tm, const ASN1_GENERALIZEDTIME *d) argument
86 if (tm)
87 tm->tm_sec = 0;
99 if (tm)
104 tm->tm_year = n * 100 - 1900;
107 tm->tm_year += n;
110 tm->tm_mon = n - 1;
113 tm->tm_mday = n;
116 tm
[all...]
H A Da_time.c99 struct tm *ts;
100 struct tm data;
190 static int asn1_time_to_tm(struct tm *tm, const ASN1_TIME *t) argument
196 if (OPENSSL_gmtime(&now_t, tm))
202 return asn1_utctime_to_tm(tm, t);
204 return asn1_generalizedtime_to_tm(tm, t);
212 struct tm tm_from, tm_to;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDGPUAsmPrinter.cpp29 static AsmPrinter *createAMDGPUAsmPrinterPass(TargetMachine &tm, argument
31 return new AMDGPUAsmPrinter(tm, Streamer);
H A DR600ExpandSpecialInstrs.cpp33 R600ExpandSpecialInstrsPass(TargetMachine &tm) : MachineFunctionPass(ID), argument
34 TII (static_cast<const R600InstrInfo *>(tm.getInstrInfo())) { }
H A DSIAssignInterpRegs.cpp42 SIAssignInterpRegsPass(TargetMachine &tm) : argument
43 MachineFunctionPass(ID), TM(tm) { }
63 FunctionPass *llvm::createSIAssignInterpRegsPass(TargetMachine &tm) { argument
64 return new SIAssignInterpRegsPass(tm);

Completed in 449 milliseconds

1234567891011