Searched defs:tm (Results 76 - 100 of 269) sorted by relevance

1234567891011

/external/llvm/lib/CodeGen/
H A DCallingConvLower.cpp27 const TargetMachine &tm, SmallVectorImpl<CCValAssign> &locs,
29 : CallingConv(CC), IsVarArg(isVarArg), MF(mf), TM(tm),
26 CCState(CallingConv::ID CC, bool isVarArg, MachineFunction &mf, const TargetMachine &tm, SmallVectorImpl<CCValAssign> &locs, LLVMContext &C) argument
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp75 const TargetMachine &tm = mf.getTarget(); local
76 HazardRec = tm.getInstrInfo()->CreateTargetHazardRecognizer(
77 tm.getSubtargetImpl(), this);
/external/llvm/lib/Target/Hexagon/
H A DHexagonCallingConvLower.cpp27 const TargetMachine &tm,
30 : CallingConv(CC), IsVarArg(isVarArg), TM(tm), Locs(locs), Context(c) {
26 Hexagon_CCState(CallingConv::ID CC, bool isVarArg, const TargetMachine &tm, SmallVectorImpl<CCValAssign> &locs, LLVMContext &c) argument
/external/llvm/lib/Target/PowerPC/
H A DPPCCodeEmitter.cpp47 PPCCodeEmitter(TargetMachine &tm, JITCodeEmitter &mce) argument
48 : MachineFunctionPass(ID), TM(tm), MCE(mce) {}
/external/llvm/lib/Target/R600/
H A DR600ClauseMergePass.cpp64 R600ClauseMergePass(TargetMachine &tm) : MachineFunctionPass(ID) { } argument
H A DSIFixSGPRCopies.cpp99 SIFixSGPRCopies(TargetMachine &tm) : MachineFunctionPass(ID) { } argument
113 FunctionPass *llvm::createSIFixSGPRCopiesPass(TargetMachine &tm) { argument
114 return new SIFixSGPRCopies(tm);
/external/llvm/lib/Target/Sparc/
H A DSparcISelDAGToDAG.cpp38 explicit SparcDAGToDAGISel(SparcTargetMachine &tm) argument
39 : SelectionDAGISel(tm),
40 Subtarget(tm.getSubtarget<SparcSubtarget>()),
41 TM(tm) {
/external/openssl/crypto/bn/
H A Dbnspeed.c186 double tm; local
200 tm=Time_F(STOP);
201 printf("mul %4d x %4d -> %8.3fms\n",sizes[i],sizes[j],tm*1000.0/num);
213 tm=Time_F(STOP);
214 printf("sqr %4d x %4d -> %8.3fms\n",sizes[i],sizes[i],tm*1000.0/num);
228 tm=Time_F(STOP);
229 printf("div %4d / %4d -> %8.3fms\n",sizes[j],sizes[i]-1,tm*1000.0/num);
/external/qemu/android/
H A Diolooper-select.c173 struct timeval tm0, *tm = NULL; local
181 tm = NULL;
183 tm = &tm0;
184 tm->tv_sec = duration / 1000;
185 tm->tv_usec = (duration - 1000*tm->tv_sec) * 1000;
194 ret = select( count, iol->reads_result, iol->writes_result, &errs, tm);
H A Duser-config.c141 struct timeval tm; local
143 gettimeofday( &tm, NULL );
144 uc->uuid = (uint64_t)tm.tv_sec*1000 + tm.tv_usec/1000;
/external/skia/include/gpu/
H A DGrTextureAccess.h80 void setTileModeX(const SkShader::TileMode tm) { fTileModes[0] = tm; } argument
81 void setTileModeY(const SkShader::TileMode tm) { fTileModes[1] = tm; } argument
82 void setTileModeXAndY(const SkShader::TileMode tm) { fTileModes[0] = fTileModes[1] = tm; } argument
/external/skia/samplecode/
H A DSampleGradients.cpp66 static SkShader* MakeLinear(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
67 return SkGradientShader::CreateLinear(pts, data.fColors, data.fPos, data.fCount, tm);
70 static SkShader* MakeRadial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
75 data.fPos, data.fCount, tm);
78 static SkShader* MakeSweep(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
85 static SkShader* Make2Radial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
94 data.fColors, data.fPos, data.fCount, tm);
98 SkShader::TileMode tm) {
105 data.fColors, data.fPos, data.fCount, tm);
108 typedef SkShader* (*GradMaker)(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm);
97 Make2RadialConcentric(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) argument
[all...]
/external/tcpdump/
H A Dprint-ntp.c243 struct tm *tm; local
246 tm = localtime(&seconds);
247 strftime(time_buf, sizeof (time_buf), "%Y/%m/%d %H:%M:%S", tm);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_11_shared.c432 struct os_tm tm; local
438 if (os_get_time(&t) < 0 || os_gmtime(t.sec, &tm) < 0)
456 WPA_PUT_LE16(pos, tm.year); /* Year */
458 *pos++ = tm.month; /* Month */
459 *pos++ = tm.day; /* Day of month */
460 *pos++ = tm.hour; /* Hours */
461 *pos++ = tm.min; /* Minutes */
462 *pos++ = tm.sec; /* Seconds */
/external/wpa_supplicant_8/src/ap/
H A Dieee802_11_shared.c432 struct os_tm tm; local
438 if (os_get_time(&t) < 0 || os_gmtime(t.sec, &tm) < 0)
456 WPA_PUT_LE16(pos, tm.year); /* Year */
458 *pos++ = tm.month; /* Month */
459 *pos++ = tm.day; /* Day of month */
460 *pos++ = tm.hour; /* Hours */
461 *pos++ = tm.min; /* Minutes */
462 *pos++ = tm.sec; /* Seconds */
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dieee802_11_shared.c432 struct os_tm tm; local
438 if (os_get_time(&t) < 0 || os_gmtime(t.sec, &tm) < 0)
456 WPA_PUT_LE16(pos, tm.year); /* Year */
458 *pos++ = tm.month; /* Month */
459 *pos++ = tm.day; /* Day of month */
460 *pos++ = tm.hour; /* Hours */
461 *pos++ = tm.min; /* Minutes */
462 *pos++ = tm.sec; /* Seconds */
/external/apache-harmony/x-net/src/test/java/javax/net/ssl/
H A DMySSLContextSpi.java37 protected void engineInit(KeyManager[] km, TrustManager[] tm, argument
/external/blktrace/
H A Dblkparse_fmt.c87 struct tm *tm; local
98 tm = localtime(&sec);
101 tm->tm_hour,
102 tm->tm_min,
103 tm->tm_sec,
/external/bluetooth/bluedroid/main/
H A Dbte_logmsg.c231 struct tm *tm; local
236 tm = localtime(&t);
238 sprintf(buffer, "%02d:%02d:%02d.%03d ", tm->tm_hour, tm->tm_min, tm->tm_sec,
283 struct tm *tm; local
290 tm = localtime(&t);
292 sprintf(buffer, "%02d:%02d:%02d.%03ld ", tm
[all...]
/external/chromium_org/content/common/
H A Dfont_cache_dispatcher_win.cc40 TEXTMETRIC tm; local
41 BOOL ret = GetTextMetrics(hdc, &tm);
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Ddemo.cc524 time_t tm = time(NULL); local
525 printf("Sandbox has been started at %s", ctime(&tm));
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dtimeutils.cc129 static struct tm *gmtime_r(const time_t *timep, struct tm *result) {
131 struct tm *tm = gmtime(timep); // NOLINT local
132 if (tm == NULL) {
135 *result = *tm;
140 void CurrentTmTime(struct tm *tm, int *microseconds) { argument
147 gmtime_r(&secs, tm);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDGPUInstrInfo.cpp29 AMDGPUInstrInfo::AMDGPUInstrInfo(TargetMachine &tm) argument
30 : AMDGPUGenInstrInfo(0,0), RI(tm, *this), TM(tm) { }
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmatrix.c513 GLfloat tm[16]; local
515 _math_transposef(tm, m);
516 _mesa_LoadMatrixf(tm);
523 GLfloat tm[16]; local
525 _math_transposefd(tm, m);
526 _mesa_LoadMatrixf(tm);
533 GLfloat tm[16]; local
535 _math_transposef(tm, m);
536 _mesa_MultMatrixf(tm);
543 GLfloat tm[1 local
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Dt_x509.c371 int ASN1_TIME_print(BIO *bp, const ASN1_TIME *tm) argument
373 if(tm->type == V_ASN1_UTCTIME) return ASN1_UTCTIME_print(bp, tm);
374 if(tm->type == V_ASN1_GENERALIZEDTIME)
375 return ASN1_GENERALIZEDTIME_print(bp, tm);
386 int ASN1_GENERALIZEDTIME_print(BIO *bp, const ASN1_GENERALIZEDTIME *tm) argument
395 i=tm->length;
396 v=(char *)tm->data;
408 if (tm->length >= 14 &&
414 if (tm
434 ASN1_UTCTIME_print(BIO *bp, const ASN1_UTCTIME *tm) argument
[all...]

Completed in 706 milliseconds

1234567891011