Searched defs:tm (Results 201 - 225 of 327) sorted by relevance

1234567891011>>

/external/tcpdump/
H A Dprint-ntp.c365 struct tm *tm; local
368 tm = localtime(&seconds);
369 strftime(time_buf, sizeof (time_buf), "%Y/%m/%d %H:%M:%S", tm);
/external/toybox/toys/pending/
H A Dtelnetd.c209 static int handle_iacs(struct term_session *tm, int c, int fd) argument
214 curr = start = tm->buff2+tm->buff2_avail;
215 end = tm->buff2 + c -1;
216 tm->rem = 0;
233 tm->rem = 1;
250 tm->rem = end - curr;
259 curr++, tm->rem++;
262 tm->rem++;
265 tm
308 struct term_session *tm = NULL; local
[all...]
/external/toybox/toys/posix/
H A Dfind.c401 struct timespec tm; member in union:__anon21016::__anon21017
416 udl->u.tm = st.st_mtim;
425 test = new->st.st_mtim.tv_sec > udl->u.tm.tv_sec;
426 if (new->st.st_mtim.tv_sec == udl->u.tm.tv_sec)
427 test = new->st.st_mtim.tv_nsec > udl->u.tm.tv_nsec;
H A Dls.c429 struct tm *tm; local
466 tm = localtime(&(st->st_mtime));
467 strftime(tmp, sizeof(tmp), "%F %H:%M", tm);
/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);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_none.c41 int os_gmtime(os_time_t t, struct os_tm *tm) argument
H A Dos_win32.c65 struct tm tm, *tm1; local
74 memset(&tm, 0, sizeof(tm));
75 tm.tm_year = year - 1900;
76 tm.tm_mon = month - 1;
77 tm.tm_mday = day;
78 tm.tm_hour = hour;
79 tm.tm_min = min;
80 tm
102 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dos_none.c41 int os_gmtime(os_time_t t, struct os_tm *tm) argument
H A Dos_win32.c65 struct tm tm, *tm1; local
74 memset(&tm, 0, sizeof(tm));
75 tm.tm_year = year - 1900;
76 tm.tm_mon = month - 1;
77 tm.tm_mday = day;
78 tm.tm_hour = hour;
79 tm.tm_min = min;
80 tm
102 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_none.c41 int os_gmtime(os_time_t t, struct os_tm *tm) argument
H A Dos_win32.c65 struct tm tm, *tm1; local
74 memset(&tm, 0, sizeof(tm));
75 tm.tm_year = year - 1900;
76 tm.tm_mon = month - 1;
77 tm.tm_mday = day;
78 tm.tm_hour = hour;
79 tm.tm_min = min;
80 tm
102 os_gmtime(os_time_t t, struct os_tm *tm) argument
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Ducm.c918 UCMapping *tm; local
1005 tm=table->mappings+table->mappingsLength++;
1006 uprv_memcpy(tm, m, sizeof(UCMapping));
/external/iproute2/tc/
H A Dm_ipt.c604 struct tcf_t *tm = RTA_DATA(tb[TCA_IPT_TM]); local
605 print_tm(f,tm);
H A Dtc_util.c504 void print_tm(FILE * f, const struct tcf_t *tm) argument
507 if (tm->install != 0)
508 fprintf(f, " installed %u sec", (unsigned)(tm->install/hz));
509 if (tm->lastuse != 0)
510 fprintf(f, " used %u sec", (unsigned)(tm->lastuse/hz));
511 if (tm->expires != 0)
512 fprintf(f, " expires %u sec", (unsigned)(tm->expires/hz));
/external/libchrome/base/third_party/nspr/
H A Dprtime.cc98 static void localtime_r(const time_t* secs, struct tm* time) {
131 * Cf. time_t mktime(struct tm *tp)
461 PRExplodedTime tm; local
462 PRExplodedTime *result = &tm;
1102 struct tm localTime;
1112 * To obtain time_t from a tm structure representing the local
/external/libnl/lib/route/
H A Dtc.c67 struct tcmsg *tm; local
72 err = nlmsg_parse(n, sizeof(*tm), tb, TCA_MAX, tc_policy);
82 tm = nlmsg_data(n);
83 tc->tc_family = tm->tcm_family;
84 tc->tc_ifindex = tm->tcm_ifindex;
85 tc->tc_handle = tm->tcm_handle;
86 tc->tc_parent = tm->tcm_parent;
87 tc->tc_info = tm->tcm_info;
/external/llvm/lib/Target/AMDGPU/
H A DR600ControlFlowFinalizer.cpp491 R600ControlFlowFinalizer(TargetMachine &tm) argument
/external/llvm/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp192 Filler(TargetMachine &tm) argument
193 : MachineFunctionPass(ID), TM(tm) { }
641 FunctionPass *llvm::createMipsDelaySlotFillerPass(MipsTargetMachine &tm) { argument
642 return new Filler(tm);
/external/skia/third_party/lua/src/
H A Dldo.c274 const TValue *tm = luaT_gettmbyobj(L, func, TM_CALL); local
277 if (!ttisfunction(tm))
283 setobj2s(L, func, tm); /* tag method is the new function to be called */
H A Dlvm.c113 const TValue *tm; local
118 (tm = fasttm(L, h->metatable, TM_INDEX)) == NULL) { /* or no TM? */
124 else if (ttisnil(tm = luaT_gettmbyobj(L, t, TM_INDEX)))
126 if (ttisfunction(tm)) {
127 callTM(L, tm, t, key, val, 1);
130 t = tm; /* else repeat with 'tm' */
139 const TValue *tm; local
147 ((tm = fasttm(L, h->metatable, TM_NEWINDEX)) == NULL &&
162 if (ttisnil(tm
177 const TValue *tm = luaT_gettmbyobj(L, p1, event); /* try first operand */ local
261 const TValue *tm; local
336 const TValue *tm; local
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DDwarfEHPrepare.cpp104 DwarfEHPrepare(const TargetMachine *tm) : argument
105 FunctionPass(ID), TM(tm), TLI(TM->getTargetLowering()),
128 FunctionPass *llvm::createDwarfEHPass(const TargetMachine *tm) { argument
129 return new DwarfEHPrepare(tm);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
H A DJIT.cpp270 JIT::JIT(Module *M, TargetMachine &tm, TargetJITInfo &tji, argument
272 : ExecutionEngine(M), TM(tm), TJI(tji), AllocateGVsWithCode(GVsWithCode),
/external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp42 SystemZTargetLowering::SystemZTargetLowering(SystemZTargetMachine &tm) : argument
43 TargetLowering(tm, new TargetLoweringObjectFileELF()),
44 Subtarget(*tm.getSubtargetImpl()), TM(tm) {
/external/syslinux/com32/lua/src/
H A Dldebug.c446 TMS tm; local
461 case OP_GETTABLE: tm = TM_INDEX; break;
463 case OP_SETTABLE: tm = TM_NEWINDEX; break;
464 case OP_EQ: tm = TM_EQ; break;
465 case OP_ADD: tm = TM_ADD; break;
466 case OP_SUB: tm = TM_SUB; break;
467 case OP_MUL: tm = TM_MUL; break;
468 case OP_DIV: tm = TM_DIV; break;
469 case OP_MOD: tm = TM_MOD; break;
470 case OP_POW: tm
[all...]
H A Dldo.c275 const TValue *tm = luaT_gettmbyobj(L, func, TM_CALL); local
278 if (!ttisfunction(tm))
284 setobj2s(L, func, tm); /* tag method is the new function to be called */

Completed in 1310 milliseconds

1234567891011>>