Searched defs:tm (Results 251 - 275 of 327) sorted by relevance

<<11121314

/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DELFWriter.cpp66 ELFWriter::ELFWriter(raw_ostream &o, TargetMachine &tm) argument
67 : MachineFunctionPass(ID), O(o), TM(tm),
H A DRegAllocPBQP.cpp128 const TargetMachine *tm; member in class:__anon18558::RegAllocPBQP
346 const TargetMachine &tm = mf->getTarget(); local
347 CoalescerPair cp(*tm.getInstrInfo(), *tm.getRegisterInfo());
642 tm = &mf->getTarget();
643 tri = tm->getRegisterInfo();
644 tii = tm->getInstrInfo();
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMCodeEmitter.cpp67 ARMCodeEmitter(TargetMachine &tm, JITCodeEmitter &mce) argument
69 II((const ARMInstrInfo *)tm.getInstrInfo()),
70 TD(tm.getTargetData()), TM(tm),
/external/swiftshader/third_party/LLVM/lib/Target/CellSPU/
H A DSPUISelDAGToDAG.cpp155 explicit SPUDAGToDAGISel(SPUTargetMachine &tm) : argument
156 SelectionDAGISel(tm),
157 TM(tm),
158 SPUtli(*tm.getTargetLowering())
/external/swiftshader/third_party/LLVM/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp62 MSP430TargetLowering::MSP430TargetLowering(MSP430TargetMachine &tm) : argument
63 TargetLowering(tm, new TargetLoweringObjectFileELF()),
64 Subtarget(*tm.getSubtargetImpl()), TM(tm) {
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp47 explicit PPCDAGToDAGISel(PPCTargetMachine &tm) argument
48 : SelectionDAGISel(tm), TM(tm),
/external/syslinux/com32/lua/src/
H A Dlgc.c811 const TValue *tm; local
814 tm = luaT_gettmbyobj(L, &v, TM_GC);
815 if (tm != NULL && ttisfunction(tm)) { /* is there a finalizer? */
821 setobj2s(L, L->top, tm); /* push finalizer... */
/external/syslinux/com32/modules/
H A Dpxechn.c75 # define dpressanykey(tm) ((void)0)
215 int pressanykey(clock_t tm) { argument
219 inc = get_key(stdin, tm);
/external/testng/src/main/java/org/testng/internal/
H A DInvoker.java163 for(ITestNGMethod tm : methods) {
165 testClass= tm.getTestClass();
170 tm,
178 Object inst = tm.getInstance();
183 Method method= tm.getMethod();
194 if (!confInvocationPassed(tm, currentTestMethod, testClass, instance) && !alwaysRun) {
195 handleConfigurationSkip(tm, testResult, configurationAnnotation, currentTestMethod, instance, suite);
199 log(3, "Invoking " + Utils.detailedMethodName(tm, true));
201 Object[] parameters = Parameters.createConfigurationParameters(tm.getMethod(),
215 invokeConfigurationMethod(newInstance, tm,
249 handleConfigurationSkip(ITestNGMethod tm, ITestResult testResult, IConfigurationAnnotation annotation, ITestNGMethod currentTestMethod, Object instance, XmlSuite suite) argument
285 handleConfigurationFailure(Throwable ite, ITestNGMethod tm, ITestResult testResult, IConfigurationAnnotation annotation, ITestNGMethod currentTestMethod, Object instance, XmlSuite suite) argument
343 recordConfigurationInvocationFailed(ITestNGMethod tm, IClass testClass, IConfigurationAnnotation annotation, ITestNGMethod currentTestMethod, Object instance, XmlSuite suite) argument
477 invokeConfigurationMethod(Object targetInstance, ITestNGMethod tm, Object[] params, ITestResult testResult) argument
565 invokeMethod(Object instance, final ITestNGMethod tm, Object[] parameterValues, int parametersIndex, XmlSuite suite, Map<String, String> params, ITestClass testClass, ITestNGMethod[] beforeMethods, ITestNGMethod[] afterMethods, ConfigurationGroupMethods groupMethods, FailureContext failureContext) argument
755 filterConfigurationMethods(ITestNGMethod tm, ITestNGMethod[] methods, boolean isBefore) argument
805 invokeTestMethod(Object instance, final ITestNGMethod tm, Object[] parameterValues, int parametersIndex, XmlSuite suite, Map<String, String> params, ITestClass testClass, ITestNGMethod[] beforeMethods, ITestNGMethod[] afterMethods, ConfigurationGroupMethods groupMethods, FailureContext failureContext) argument
940 retryFailed(Object instance, final ITestNGMethod tm, XmlSuite suite, ITestClass testClass, ITestNGMethod[] beforeMethods, ITestNGMethod[] afterMethods, ConfigurationGroupMethods groupMethods, List<ITestResult> result, int failureCount, ExpectedExceptionsHolder expectedExceptionHolder, ITestContext testContext, Map<String, String> parameters, int parametersIndex) argument
1645 dependsOnMethods(ITestNGMethod tm) argument
[all...]
/external/v8/src/base/platform/
H A Dplatform-posix.cc382 struct tm tm; local
383 struct tm* t = localtime_r(&tv, &tm);
/external/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc513 __sanitizer_tm *tm) {
514 INTERCEPTOR_STRFTIME_BODY(char, SIZE_T, strftime, s, max, format, tm);
518 __sanitizer_tm *tm, void *loc) {
519 INTERCEPTOR_STRFTIME_BODY(char, SIZE_T, strftime_l, s, max, format, tm, loc);
524 __sanitizer_tm *tm, void *loc) {
525 INTERCEPTOR_STRFTIME_BODY(char, SIZE_T, __strftime_l, s, max, format, tm,
534 __sanitizer_tm *tm) {
535 INTERCEPTOR_STRFTIME_BODY(wchar_t, SIZE_T, wcsftime, s, max, format, tm);
539 __sanitizer_tm *tm, void *loc) {
540 INTERCEPTOR_STRFTIME_BODY(wchar_t, SIZE_T, wcsftime_l, s, max, format, tm,
512 INTERCEPTOR(SIZE_T, strftime, char *s, SIZE_T max, const char *format, __sanitizer_tm *tm) argument
517 INTERCEPTOR(SIZE_T, strftime_l, char *s, SIZE_T max, const char *format, __sanitizer_tm *tm, void *loc) argument
523 INTERCEPTOR(SIZE_T, __strftime_l, char *s, SIZE_T max, const char *format, __sanitizer_tm *tm, void *loc) argument
533 INTERCEPTOR(SIZE_T, wcsftime, wchar_t *s, SIZE_T max, const wchar_t *format, __sanitizer_tm *tm) argument
538 INTERCEPTOR(SIZE_T, wcsftime_l, wchar_t *s, SIZE_T max, const wchar_t *format, __sanitizer_tm *tm, void *loc) argument
545 INTERCEPTOR(SIZE_T, __wcsftime_l, wchar_t *s, SIZE_T max, const wchar_t *format, __sanitizer_tm *tm, void *loc) argument
[all...]
/external/curl/lib/
H A Dftp.c2197 struct tm buffer;
2198 const struct tm *tm = &buffer; local
2207 Curl_wkday[tm->tm_wday?tm->tm_wday-1:6],
2208 tm->tm_mday,
2209 Curl_month[tm->tm_mon],
2210 tm->tm_year + 1900,
2211 tm->tm_hour,
2212 tm
[all...]
H A Dhttp.c1706 const struct tm *tm; local
1708 struct tm keeptime;
1720 tm = &keeptime;
1732 Curl_wkday[tm->tm_wday?tm->tm_wday-1:6],
1733 tm->tm_mday,
1734 Curl_month[tm->tm_mon],
1735 tm->tm_year + 1900,
1736 tm
[all...]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorContractionThreadPool.h304 RhsMapper& rhs, Scalar* buffer, Index tm, Index tn, Index tk, Index bm,
312 output_(buffer, tm),
316 m_(tm),
303 Context(const Device& device, int num_threads, LhsMapper& lhs, RhsMapper& rhs, Scalar* buffer, Index tm, Index tn, Index tk, Index bm, Index bn, Index bk, Index nm, Index nn, Index nk, Index gm, Index gn, Index nm0, Index nn0, bool shard_by_col, bool parallel_pack) argument
/external/fio/
H A Dgclient.c121 struct tm *tm; local
126 tm = localtime(&sec);
127 strftime(tmp, sizeof(tmp), "%Y-%m-%d %H:%M:%S", tm);
H A Dgraph.c317 struct tickmark *tm; local
322 nticks = calc_tickmarks(minx, maxx, nticks, &tm, &power_of_ten,
328 tx = (((tm[i].value) - minx) / (maxx - minx)) * (x2 - x1) + x1;
335 g->xtick_zero_val = tm[0].value;
337 g->xtick_delta = (tm[1].value - tm[0].value) / (tx - g->xtick_zero);
338 g->xtick_one_val = tm[1].value;
364 draw_centered_text(cr, g->font, tx, y2 * 1.04, 12.0, tm[i].string);
373 struct tickmark *tm; local
378 nticks = calc_tickmarks(miny, maxy, nticks, &tm,
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dlocaltime.c52 ** 5. They might reference tm.TM_ZONE after calling offtime.
145 static struct tm * gmtsub(const time_t * timep, int_fast32_t offset,
146 struct tm * tmp);
147 static struct tm * localsub(const time_t * timep, int_fast32_t offset,
148 struct tm * tmp);
158 static time_t time1(struct tm * tmp,
159 struct tm * (*funcp)(const time_t *,
160 int_fast32_t, struct tm *),
162 static time_t time2(struct tm *tmp,
163 struct tm * (*func
216 static struct tm tm; variable in typeref:struct:tm
[all...]
/external/libpng/contrib/gregbook/
H A Drpng2-win.c793 TEXTMETRIC tm; local
795 GetTextMetrics(hdc, &tm);
796 x = (rpng2_info.width - len*tm.tmAveCharWidth)/2;
797 y = (rpng2_info.height - tm.tmHeight)/2;
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp50 explicit HexagonDAGToDAGISel(HexagonTargetMachine &tm, argument
52 : SelectionDAGISel(tm, OptLevel), HTM(tm), HST(nullptr), HII(nullptr),
/external/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp164 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel) argument
165 : SelectionDAGISel(tm, OptLevel), OptForSize(false),
/external/mdnsresponder/Clients/
H A Ddns-sd.c318 struct tm tm; local
323 tm = *localtime(&uct);
329 localtime_r((time_t*)&tv.tv_sec, &tm);
332 printf("%2d:%02d:%02d.%03d ", tm.tm_hour, tm.tm_min, tm.tm_sec, ms);
/external/mdnsresponder/mDNSPosix/
H A DNetMonitor.c46 #include <time.h> // For "struct tm" etc.
480 struct tm tm; local
485 localtime_r((time_t*)&tv.tv_sec, &tm);
486 mprintf("\n%d:%02d:%02d.%06d Interface %d/%s\n", tm.tm_hour, tm.tm_min, tm.tm_sec, tv.tv_usec, index, if_name);
824 struct tm tm; local
885 localtime_r((time_t*)&tv_start.tv_sec, &tm);
[all...]
/external/openssh/
H A Dssh-keygen.c1450 struct tm *tm; local
1459 tm = localtime(&tt);
1460 strftime(from, sizeof(from), "%Y-%m-%dT%H:%M:%S", tm);
1465 tm = localtime(&tt);
1466 strftime(to, sizeof(to), "%Y-%m-%dT%H:%M:%S", tm);
1685 struct tm tm; local
1708 memset(&tm, 0, sizeof(tm));
[all...]
/external/pdfium/core/fxge/win32/
H A Dfx_win32_device.cpp679 TEXTMETRIC tm; local
681 ::GetTextMetrics(m_hDC, &tm);
683 charset = tm.tmCharSet;
/external/skia/src/pipe/
H A DSkPipeCanvas.cpp263 SkMatrix::TypeMask tm = matrix.getType(); local
265 if (tm & SkMatrix::kPerspective_Mask) {
268 } else if (tm & SkMatrix::kAffine_Mask) {
276 } else if (tm & SkMatrix::kScale_Mask) {
282 } else if (tm & SkMatrix::kTranslate_Mask) {
645 SkMatrix::TypeMask tm = matrix ? matrix->getType() : SkMatrix::kIdentity_Mask; local
646 extra |= (unsigned)tm << kMatrixType_DrawTextOnPathShift;

Completed in 628 milliseconds

<<11121314