Searched refs:tm (Results 176 - 200 of 683) sorted by relevance

1234567891011>>

/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86FrameLowering.h29 explicit X86FrameLowering(const X86TargetMachine &tm, const X86Subtarget &sti) argument
33 TM(tm), STI(sti) {
/external/testng/src/main/java/org/testng/internal/
H A DRunInfo.java33 * true for the method "tm".
35 public boolean includeMethod(ITestNGMethod tm, boolean isTestMethod) { argument
53 result = md.includeMethod(context, tm, isTestMethod);
/external/v8/src/base/platform/
H A Dplatform-aix.cc49 struct tm tm; local
50 struct tm* t = localtime_r(&tv, &tm);
57 // On AIX, struct tm does not contain a tm_gmtoff field.
60 struct tm tm; local
61 struct tm* loc = localtime_r(&utc, &tm);
H A Dplatform-cygwin.cc32 struct tm tm; local
33 struct tm* t = localtime_r(&tv, &tm);
40 // On Cygwin, struct tm does not contain a tm_gmtoff field.
43 struct tm tm; local
44 struct tm* loc = localtime_r(&utc, &tm);
H A Dplatform-freebsd.cc42 struct tm tm; local
43 struct tm* t = localtime_r(&tv, &tm);
51 struct tm tm; local
52 struct tm* t = localtime_r(&tv, &tm);
H A Dplatform-macos.cc105 struct tm tm; local
106 struct tm* t = localtime_r(&tv, &tm);
114 struct tm tm; local
115 struct tm* t = localtime_r(&tv, &tm);
H A Dplatform-openbsd.cc40 struct tm tm; local
41 struct tm* t = localtime_r(&tv, &tm);
49 struct tm tm; local
50 struct tm* t = localtime_r(&tv, &tm);
H A Dplatform-qnx.cc91 struct tm tm; local
92 struct tm* t = localtime_r(&tv, &tm);
100 struct tm tm; local
101 struct tm* t = localtime_r(&tv, &tm);
/external/webrtc/webrtc/system_wrappers/source/
H A Dtrace_posix.cc38 struct tm buffer;
39 const struct tm* system_time =
/external/boringssl/src/crypto/x509/
H A Dt_x509.c353 int ASN1_TIME_print(BIO *bp, const ASN1_TIME *tm) argument
355 if (tm->type == V_ASN1_UTCTIME)
356 return ASN1_UTCTIME_print(bp, tm);
357 if (tm->type == V_ASN1_GENERALIZEDTIME)
358 return ASN1_GENERALIZEDTIME_print(bp, tm);
368 int ASN1_GENERALIZEDTIME_print(BIO *bp, const ASN1_GENERALIZEDTIME *tm) argument
377 i = tm->length;
378 v = (char *)tm->data;
395 if (tm->length >= 14 &&
400 if (tm
447 ASN1_UTCTIME_print(BIO *bp, const ASN1_UTCTIME *tm) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/clover/llvm/codegen/
H A Dnative.cpp115 std::unique_ptr<TargetMachine> tm {
120 if (!tm)
131 mod.setDataLayout(compat::get_data_layout(*tm));
132 tm->Options.MCOptions.AsmVerbose =
135 if (tm->addPassesToEmitFile(pm, fos, ft))
/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/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/
H A DTrustManagerFactoryTest.java157 private void test_X509TrustManager(X509TrustManager tm) throws Exception { argument
159 X509Certificate[] issuers = tm.getAcceptedIssuers();
162 assertNotSame(issuers, tm.getAcceptedIssuers());
173 tm.checkClientTrusted(chain, keyType);
179 tm.checkServerTrusted(chain, keyType);
185 tm.checkClientTrusted(chain, keyType);
186 tm.checkServerTrusted(chain, keyType);
255 X509TrustManager tm = (X509TrustManager) trustManager;
256 tm.checkClientTrusted(chain, "RSA");
257 tm
[all...]
/external/testng/src/main/java/org/testng/reporters/
H A DVerboseReporter.java197 ITestNGMethod tm = itr.getMethod();
199 sb.append(getMethodDeclaration(tm));
201 Class[] paramTypes = tm.getMethod().getParameterTypes();
226 if (!Utils.isStringEmpty(tm.getDescription())) {
231 sb.append(tm.getDescription());
233 if (tm.getInvocationCount() > 1) {
235 sb.append(tm.getCurrentInvocationCount());
237 sb.append(tm.getInvocationCount());
244 if (!isConfMethod && tm.getInvocationCount() > 1) {
246 sb.append(tm
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_unix.c133 struct tm tm, *tm1; local
142 memset(&tm, 0, sizeof(tm));
143 tm.tm_year = year - 1900;
144 tm.tm_mon = month - 1;
145 tm.tm_mday = day;
146 tm.tm_hour = hour;
147 tm.tm_min = min;
148 tm
170 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dos_unix.c133 struct tm tm, *tm1; local
142 memset(&tm, 0, sizeof(tm));
143 tm.tm_year = year - 1900;
144 tm.tm_mon = month - 1;
145 tm.tm_mday = day;
146 tm.tm_hour = hour;
147 tm.tm_min = min;
148 tm
170 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_unix.c133 struct tm tm, *tm1; local
142 memset(&tm, 0, sizeof(tm));
143 tm.tm_year = year - 1900;
144 tm.tm_mon = month - 1;
145 tm.tm_mday = day;
146 tm.tm_hour = hour;
147 tm.tm_min = min;
148 tm
170 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
/external/e2fsprogs/lib/e2p/
H A Dls.c228 time_t tm; local
315 tm = sb->s_mkfs_time;
316 fprintf(f, "Filesystem created: %s", ctime(&tm));
318 tm = sb->s_mtime;
320 sb->s_mtime ? ctime(&tm) : "n/a\n");
321 tm = sb->s_wtime;
322 fprintf(f, "Last write time: %s", ctime(&tm));
325 tm = sb->s_lastcheck;
326 fprintf(f, "Last checked: %s", ctime(&tm));
420 tm
[all...]
/external/skia/gm/
H A Dshadertext.cpp50 static sk_sp<SkShader> MakeLinear(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
51 return SkGradientShader::MakeLinear(pts, data.fColors, data.fPos, data.fCount, tm);
54 static sk_sp<SkShader> MakeRadial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
59 tm);
69 static sk_sp<SkShader> Make2Conical(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
78 data.fColors, data.fPos, data.fCount, tm);
81 typedef sk_sp<SkShader> (*GradMaker)(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm);
/external/skqp/gm/
H A Dshadertext.cpp50 static sk_sp<SkShader> MakeLinear(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
51 return SkGradientShader::MakeLinear(pts, data.fColors, data.fPos, data.fCount, tm);
54 static sk_sp<SkShader> MakeRadial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
59 tm);
69 static sk_sp<SkShader> Make2Conical(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) { argument
78 data.fColors, data.fPos, data.fCount, tm);
81 typedef sk_sp<SkShader> (*GradMaker)(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm);
/external/libnl/src/
H A Dnl-class-add.c61 struct nl_cli_tc_module *tm; local
141 if (!(tm = nl_cli_tc_lookup(ops)))
144 tm->tm_parse_argv(tc, argc, argv);
H A Dnl-cls-add.c61 struct nl_cli_tc_module *tm; local
149 if (!(tm = nl_cli_tc_lookup(ops)))
152 tm->tm_parse_argv(tc, argc, argv);
/external/mesa3d/src/mesa/main/
H A Dmatrix.c519 GLfloat tm[16]; local
521 _math_transposef(tm, m);
522 _mesa_LoadMatrixf(tm);
529 GLfloat tm[16]; local
531 _math_transposefd(tm, m);
532 _mesa_LoadMatrixf(tm);
539 GLfloat tm[16]; local
541 _math_transposef(tm, m);
542 _mesa_MultMatrixf(tm);
549 GLfloat tm[1 local
[all...]
/external/python/cpython2/Lib/email/
H A D_parseaddr.py74 [dd, mm, yy, tm, tz] = data
87 yy, tm = tm, yy
92 if tm[-1] == ',':
93 tm = tm[:-1]
94 tm = tm.split(':')
95 if len(tm) == 2:
96 [thh, tmm] = tm
[all...]
/external/skia/experimental/svg/model/
H A DSkSVGRadialGradient.cpp69 int count, SkShader::TileMode tm,
83 ? SkGradientShader::MakeRadial(center, r, colors, pos, count, tm, 0, &m)
84 : SkGradientShader::MakeTwoPointConical(focal, 0, center, r, colors, pos, count, tm, 0, &m);
67 onMakeShader(const SkSVGRenderContext& ctx, const SkColor* colors, const SkScalar* pos, int count, SkShader::TileMode tm, const SkMatrix& m) const argument

Completed in 1317 milliseconds

1234567891011>>