Searched defs:tm (Results 176 - 200 of 327) sorted by relevance

1234567891011>>

/external/v8/src/base/platform/
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);
H A Dplatform-solaris.cc41 struct tm tm; local
42 struct tm* t = localtime_r(&tv, &tm);
/external/webrtc/webrtc/base/
H A Dsslidentity.cc232 std::tm tm; local
233 tm.tm_year = year;
235 // Read out remaining ASN1 time data and store it in |tm| in documented
236 // std::tm format.
237 tm.tm_mon = ASN1ReadInt(&s, &bytes_left, 2) - 1;
238 tm.tm_mday = ASN1ReadInt(&s, &bytes_left, 2);
239 tm.tm_hour = ASN1ReadInt(&s, &bytes_left, 2);
240 tm.tm_min = ASN1ReadInt(&s, &bytes_left, 2);
241 tm
[all...]
H A Dtimeutils.cc116 static struct tm *gmtime_r(const time_t *timep, struct tm *result) {
118 struct tm *tm = gmtime(timep); // NOLINT local
119 if (tm == NULL) {
122 *result = *tm;
127 void CurrentTmTime(struct tm *tm, int *microseconds) { argument
134 gmtime_r(&secs, tm);
207 int64_t TmToSeconds(const std::tm argument
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_11_shared.c466 struct os_tm tm; local
472 if (os_get_time(&t) < 0 || os_gmtime(t.sec, &tm) < 0)
490 WPA_PUT_LE16(pos, tm.year); /* Year */
492 *pos++ = tm.month; /* Month */
493 *pos++ = tm.day; /* Day of month */
494 *pos++ = tm.hour; /* Hours */
495 *pos++ = tm.min; /* Minutes */
496 *pos++ = tm.sec; /* Seconds */
/external/wpa_supplicant_8/src/ap/
H A Dieee802_11_shared.c466 struct os_tm tm; local
472 if (os_get_time(&t) < 0 || os_gmtime(t.sec, &tm) < 0)
490 WPA_PUT_LE16(pos, tm.year); /* Year */
492 *pos++ = tm.month; /* Month */
493 *pos++ = tm.day; /* Day of month */
494 *pos++ = tm.hour; /* Hours */
495 *pos++ = tm.min; /* Minutes */
496 *pos++ = tm.sec; /* Seconds */
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dieee802_11_shared.c466 struct os_tm tm; local
472 if (os_get_time(&t) < 0 || os_gmtime(t.sec, &tm) < 0)
490 WPA_PUT_LE16(pos, tm.year); /* Year */
492 *pos++ = tm.month; /* Month */
493 *pos++ = tm.day; /* Day of month */
494 *pos++ = tm.hour; /* Hours */
495 *pos++ = tm.min; /* Minutes */
496 *pos++ = tm.sec; /* Seconds */
/external/xmlrpcpp/src/
H A DXmlRpcValue.h57 XmlRpcValue(struct tm* value) : _type(TypeDateTime)
58 { _value.asTime = new struct tm(*value); }
93 operator struct tm&() { assertTypeOrInvalid(TypeDateTime); return *_value.asTime; }
180 struct tm* asTime;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector2.cc213 ThreadMutex *tm = &lt->locked[lt->nlocked++]; local
214 tm->id = m->id;
216 tm->stk = cb->Unwind();
300 ThreadMutex *tm = &lt->locked[lt->nlocked++]; local
301 tm->id = m->id;
303 tm->stk = cb->Unwind();
/external/conscrypt/android/src/main/java/org/conscrypt/
H A DPlatform.java342 private static boolean checkTrusted(String methodName, X509TrustManager tm, argument
347 Method method = tm.getClass().getMethod(
349 method.invoke(tm, chain, authType, argumentInstance);
363 public static void checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, argument
365 if (!checkTrusted("checkClientTrusted", tm, chain, authType, Socket.class, socket)
366 && !checkTrusted("checkClientTrusted", tm, chain, authType, String.class,
368 tm.checkClientTrusted(chain, authType);
373 public static void checkServerTrusted(X509TrustManager tm, X509Certificate[] chain, argument
375 if (!checkTrusted("checkServerTrusted", tm, chain, authType, Socket.class, socket)
376 && !checkTrusted("checkServerTrusted", tm, chai
383 checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, OpenSSLEngineImpl engine) argument
393 checkServerTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, OpenSSLEngineImpl engine) argument
[all...]
/external/curl/lib/
H A Dparsedate.c273 /* this is a clone of 'struct tm' but with all fields we don't need or use
284 /* struct tm to time since epoch in GMT time zone.
289 static time_t my_timegm(struct my_tm *tm) argument
295 if(tm->tm_year < 70)
300 year = tm->tm_year + 1900;
301 month = tm->tm_mon;
311 leap_days = year - (tm->tm_mon <= 1);
316 + leap_days + month_days_cumulative [month] + tm->tm_mday - 1) * 24
317 + tm->tm_hour) * 60 + tm
342 struct my_tm tm; local
568 const struct tm *tm; local
[all...]
/external/iproute2/tc/
H A Dm_xt_old.c419 struct tcf_t *tm = RTA_DATA(tb[TCA_IPT_TM]); local
420 print_tm(f,tm);
/external/iptables/extensions/
H A Dlibxt_time.c96 struct tm tm; local
140 tm.tm_year = year - 1900;
141 tm.tm_mon = month - 1;
142 tm.tm_mday = day;
143 tm.tm_hour = hour;
144 tm.tm_min = minute;
145 tm.tm_sec = second;
146 tm.tm_isdst = 0;
153 ret = mktime(&tm);
[all...]
/external/libexif/libexif/
H A Dexif-entry.c1628 struct tm tms;
1630 struct tm *tm; local
1634 tm = localtime_r (&t, &tms);
1636 tm = localtime (&t);
1645 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
1646 tm->tm_hour, tm
[all...]
/external/llvm/lib/CodeGen/
H A DTargetPassConfig.cpp254 TargetPassConfig::TargetPassConfig(TargetMachine *tm, PassManagerBase &pm) argument
257 AddingMachinePasses(false), TM(tm), Impl(nullptr), Initialized(false),
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUAsmPrinter.cpp82 createAMDGPUAsmPrinterPass(TargetMachine &tm, argument
84 return new AMDGPUAsmPrinter(tm, std::move(Streamer));
/external/llvm/lib/Target/SystemZ/
H A DSystemZElimCompare.cpp58 SystemZElimCompare(const SystemZTargetMachine &tm) argument
/external/mesa3d/src/gallium/drivers/radeon/
H A DR600InstrInfo.cpp27 R600InstrInfo::R600InstrInfo(AMDGPUTargetMachine &tm) argument
28 : AMDGPUInstrInfo(tm),
29 RI(tm, *this),
30 TM(tm)
/external/skia/bench/
H A DGradientBench.cpp50 SkShader::TileMode tm, float scale, bool force4f) {
53 data.fCount, tm, flags, nullptr);
57 SkShader::TileMode tm, float scale, bool force4f) {
62 data.fPos, data.fCount, tm);
67 SkShader::TileMode tm, float scale, bool force4f) {
76 SkShader::TileMode tm, float scale, bool force4f) {
84 data.fColors, data.fPos, data.fCount, tm);
89 SkShader::TileMode tm, float scale, bool force4f) {
97 data.fColors, data.fPos, data.fCount, tm);
102 SkShader::TileMode tm, floa
49 MakeLinear(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm, float scale, bool force4f) argument
56 MakeRadial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm, float scale, bool force4f) argument
66 MakeSweep(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm, float scale, bool force4f) argument
75 MakeConical(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm, float scale, bool force4f) argument
88 MakeConicalZeroRad(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm, float scale, bool force4f) argument
101 MakeConicalOutside(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm, float scale, bool force4f) argument
115 MakeConicalOutsideZeroRad(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm, float scale, bool force4f) argument
159 tilemodename(SkShader::TileMode tm) argument
260 MakeShader(GradType gradType, GradData data, SkShader::TileMode tm, float scale, bool force4f) argument
[all...]
/external/skia/third_party/lua/src/
H A Dldebug.c433 TMS tm; local
448 case OP_GETTABLE: tm = TM_INDEX; break;
450 case OP_SETTABLE: tm = TM_NEWINDEX; break;
451 case OP_EQ: tm = TM_EQ; break;
452 case OP_ADD: tm = TM_ADD; break;
453 case OP_SUB: tm = TM_SUB; break;
454 case OP_MUL: tm = TM_MUL; break;
455 case OP_DIV: tm = TM_DIV; break;
456 case OP_MOD: tm = TM_MOD; break;
457 case OP_POW: tm
[all...]
/external/strace/tests/
H A Dioctl_dm.c78 } tm; member in union:s::__anon17935
555 s.u.tm.target_msg.sector = 0x1234;
/external/strace/tests-m32/
H A Dioctl_dm.c78 } tm; member in union:s::__anon18003
555 s.u.tm.target_msg.sector = 0x1234;
/external/strace/tests-mx32/
H A Dioctl_dm.c78 } tm; member in union:s::__anon18071
555 s.u.tm.target_msg.sector = 0x1234;
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86RegisterInfo.cpp53 X86RegisterInfo::X86RegisterInfo(X86TargetMachine &tm, argument
55 : X86GenRegisterInfo(tm.getSubtarget<X86Subtarget>().is64Bit()
57 X86_MC::getDwarfRegFlavour(tm.getTargetTriple(), false),
58 X86_MC::getDwarfRegFlavour(tm.getTargetTriple(), true)),
59 TM(tm), TII(tii) {
/external/syslinux/com32/gplinclude/dmi/
H A Ddmi_processor.h68 bool tm; member in struct:__anon19277

Completed in 3126 milliseconds

1234567891011>>