Searched refs:tm (Results 251 - 275 of 492) sorted by relevance

<<11121314151617181920

/freebsd-9.3-release/contrib/ntp/include/
H A Dntp_machine.h293 extern time_t timegm (struct tm *);
/freebsd-9.3-release/bin/date/
H A Ddate.c87 struct tm lt;
201 struct tm *lt;
/freebsd-9.3-release/contrib/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
/freebsd-9.3-release/contrib/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
/freebsd-9.3-release/contrib/llvm/lib/Target/MSP430/
H A DMSP430RegisterInfo.cpp35 MSP430RegisterInfo::MSP430RegisterInfo(MSP430TargetMachine &tm) argument
36 : MSP430GenRegisterInfo(MSP430::PCW), TM(tm) {
/freebsd-9.3-release/contrib/llvm/lib/Target/Mips/
H A DMipsInstrInfo.cpp33 MipsInstrInfo::MipsInstrInfo(MipsTargetMachine &tm, unsigned UncondBr) argument
35 TM(tm), UncondBrOpc(UncondBr) {}
/freebsd-9.3-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXInstrInfo.cpp31 NVPTXInstrInfo::NVPTXInstrInfo(NVPTXTargetMachine &tm) argument
32 : NVPTXGenInstrInfo(), TM(tm), RegInfo(*TM.getSubtargetImpl()) {}
/freebsd-9.3-release/contrib/llvm/lib/Target/R600/
H A DAMDGPUAsmPrinter.cpp39 static AsmPrinter *createAMDGPUAsmPrinterPass(TargetMachine &tm, argument
41 return new AMDGPUAsmPrinter(tm, Streamer);
H A DR600OptimizeVectorRegisters.cpp109 R600VectorRegMerger(TargetMachine &tm) : MachineFunctionPass(ID), argument
378 llvm::FunctionPass *llvm::createR600VectorRegMerger(TargetMachine &tm) { argument
379 return new R600VectorRegMerger(tm);
/freebsd-9.3-release/contrib/llvm/lib/Target/Sparc/
H A DSparcCodeEmitter.cpp50 SparcCodeEmitter(TargetMachine &tm, JITCodeEmitter &mce) argument
52 TM(tm), MCE(mce), MCPEs(0),
/freebsd-9.3-release/contrib/sendmail/src/
H A Denvelope.c832 register struct tm *tm; local
837 tm = gmtime(&now);
839 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
840 tm->tm_hour, tm->tm_min);
/freebsd-9.3-release/include/
H A Dwchar.h104 struct tm;
143 const struct tm * __restrict);
/freebsd-9.3-release/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_scalars.c148 struct tm tloc_tm;
311 struct tm tm_to_set;
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Drefclock_chronolog.c231 struct tm local;
232 struct tm *gmtp;
H A Dntp_leapsec.c1161 struct calendar tm; local
1165 if ( ! (ts->d_s.hi >= 0 && ntpcal_ntp64_to_date(&tm, ts) >= 0))
1169 tm.year, tm.month, tm.monthday,
1170 tm.hour, tm.minute, tm.second);
/freebsd-9.3-release/contrib/ntp/util/
H A Dntp-keygen.c2092 struct tm tm; /* time decode structure time */
2104 tm.tm_year = (v[0] - '0') * 10 + v[1] - '0';
2105 if (tm.tm_year < 50)
2106 tm.tm_year += 100;
2107 tm.tm_mon = (v[2] - '0') * 10 + v[3] - '0' - 1;
2108 tm.tm_mday = (v[4] - '0') * 10 + v[5] - '0';
2109 tm.tm_hour = (v[6] - '0') * 10 + v[7] - '0';
2110 tm.tm_min = (v[8] - '0') * 10 + v[9] - '0';
2111 tm
[all...]
/freebsd-9.3-release/sys/netsmb/
H A Dsmb_trantcp.c321 struct mbuf *m, *tm, *im; local
369 tm = NULL;
383 &auio, &tm, (struct mbuf **)NULL, &rcvflg);
397 m = tm;
405 im->m_next = tm;
/freebsd-9.3-release/usr.bin/kdump/
H A Dkdump.c1518 struct tm *tm; local
1542 tm = localtime(&statp->st_atim.tv_sec);
1543 strftime(timestr, sizeof(timestr), TIME_FORMAT, tm);
1554 tm = localtime(&statp->st_mtim.tv_sec);
1555 strftime(timestr, sizeof(timestr), TIME_FORMAT, tm);
1566 tm = localtime(&statp->st_ctim.tv_sec);
1567 strftime(timestr, sizeof(timestr), TIME_FORMAT, tm);
1578 tm = localtime(&statp->st_birthtim.tv_sec);
1579 strftime(timestr, sizeof(timestr), TIME_FORMAT, tm);
[all...]
/freebsd-9.3-release/crypto/openssl/apps/
H A Dca.c1598 ASN1_UTCTIME *tm, *tmptm; local
2074 tm = X509_get_notAfter(ret);
2075 row[DB_exp_date] = (char *)OPENSSL_malloc(tm->length + 1);
2076 memcpy(row[DB_exp_date], tm->data, tm->length);
2077 row[DB_exp_date][tm->length] = '\0';
2302 ASN1_TIME tm; local
2304 tm.data = (unsigned char *)str;
2305 tm.length = strlen(str);
2306 tm
2315 ASN1_UTCTIME *tm = NULL; local
[all...]
/freebsd-9.3-release/contrib/gcclibs/libmudflap/
H A Dmf-hooks2.c477 WRAPPER2(char *, asctime, struct tm *tm) argument
482 MF_VALIDATE_EXTENT(tm, sizeof (struct tm), __MF_CHECK_READ, "asctime tm");
483 result = asctime (tm);
510 WRAPPER2(struct tm*, localtime, const time_t *timep) argument
512 static struct tm *reg_result = NULL;
513 struct tm *result;
519 __mf_register (result, sizeof (struct tm), __MF_TYPE_STATI
526 WRAPPER2(struct tm*, gmtime, const time_t *timep) argument
[all...]
/freebsd-9.3-release/gnu/usr.bin/cc/cc_tools/
H A DMakefile22 # The list of headers to go into tm.h
229 -v header_name="config.h system.h coretypes.h tm.h" \
234 tm.h:
243 GENSRCS+= tm.h
244 CLEANFILES+= cs-tm.h
249 HEADERS="${GCC_CPU}/${GCC_CPU}-protos.h tm-preds.h" \
438 tm-preds.h: genpreds
440 GENSRCS+= tm-preds.h
442 tm-constrs.h: genpreds
444 GENSRCS+= tm
[all...]
/freebsd-9.3-release/contrib/bmake/
H A Dtarg.c547 Targ_FmtTime(time_t tm) argument
549 struct tm *parts;
552 parts = localtime(&tm);
/freebsd-9.3-release/lib/libfetch/
H A Dhttp.c874 struct tm tm; local
878 r = strptime(p, "%a, %d %b %Y %H:%M:%S GMT", &tm);
884 r = strptime(p, "%a, %d %b %Y %H:%M:%S UTC", &tm);
891 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
892 tm.tm_hour, tm.tm_min, tm
[all...]
/freebsd-9.3-release/usr.bin/calendar/
H A Ddates.c103 struct tm td;
170 generatedates(struct tm *tp1, struct tm *tp2)
/freebsd-9.3-release/contrib/libstdc++/include/bits/
H A Dlocale_facets.h45 #include <ctime> // For struct tm
2910 const tm* __tm) const;
3024 __timepunct<char>::_M_put(char*, size_t, const char*, const tm*) const;
3034 const tm*) const;
3103 * results into a user-supplied struct tm. The result is returned by
3106 * If there is a valid time string according to format "x", @a tm will
3116 * @param tm Pointer to struct tm to fill in.
3121 ios_base::iostate& __err, tm* __tm) const
3128 * results into a user-supplied struct tm
[all...]

Completed in 185 milliseconds

<<11121314151617181920