Searched refs:tm (Results 201 - 225 of 693) sorted by relevance

1234567891011>>

/macosx-10.10/bash-94.1.2/bash-3.2/lib/sh/
H A Dstrftime.c88 static int weeknumber(const struct tm *timeptr, int firstweekday);
89 static int iso8601wknum(const struct tm *timeptr);
138 strftime(char *s, size_t maxsize, const char *format, const struct tm *timeptr)
393 struct tm non_const_timeptr;
604 iso8601wknum(const struct tm *timeptr)
672 struct tm dec31ly; /* 12/31 last year */
715 weeknumber(const struct tm *timeptr, int firstweekday)
858 struct tm *tm; local
865 tm
[all...]
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dfile.c481 struct tm buffer;
482 const struct tm *tm = &buffer; local
490 Curl_wkday[tm->tm_wday?tm->tm_wday-1:6],
491 tm->tm_mday,
492 Curl_month[tm->tm_mon],
493 tm->tm_year + 1900,
494 tm->tm_hour,
495 tm
[all...]
/macosx-10.10/Libc-1044.1.2/locale/FreeBSD/
H A Dwcsftime.c53 const wchar_t * __restrict format, const struct tm * __restrict timeptr,
116 const wchar_t * __restrict format, const struct tm * __restrict timeptr)
/macosx-10.10/OpenSSL098-52/src/crypto/asn1/
H A Da_time.c103 struct tm *ts;
104 struct tm data;
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/threadTest/
H A DtimeThread.cpp44 static tm baseTm;
64 struct tm nowTm;
/macosx-10.10/mDNSResponder-561.1.1/mDNSWindows/
H A DPosixCompat.c123 extern struct tm*
124 localtime_r( const time_t * clock, struct tm * result )
/macosx-10.10/ntp-92/util/
H A Dtg.c259 struct tm *tm = NULL; /* structure returned by gmtime */ local
353 tm = gmtime(&tv.tv_sec);
354 minute = tm->tm_min;
355 hour = tm->tm_hour;
356 day = tm->tm_yday + 1;
357 year = tm->tm_year % 100;
358 second = tm->tm_sec;
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmail_date.c57 struct tm *lt;
58 struct tm gmt;
71 * POSIX does not require that struct tm has a tm_gmtoff field, so we
/macosx-10.10/xnu-2782.1.97/tools/tests/libMicro/
H A Dstrftime.c45 struct tm ts_tm1;
46 struct tm ts_tm2;
/macosx-10.10/emacs-93/emacs/lib-src/
H A Db2m.c49 /* Nonzero if TM_YEAR is a struct tm's tm_year value that causes
99 struct tm *tm; local
147 tm = localtime (&ltoday);
148 if (! (tm && TM_YEAR_IN_ASCTIME_RANGE (tm->tm_year)
149 && (today = asctime (tm))))
/macosx-10.10/file-46/file/src/
H A Dprint.c206 struct tm *tm; local
217 struct tm *tm1;
228 tm = gmtime(&t);
229 if (tm == NULL)
231 pp = asctime(tm);
/macosx-10.10/swig-12/Source/Modules/
H A Doverload.cxx299 String *tm = Getattr(pj, "tmap:typecheck");
300 if (tm) {
301 Replaceid(tm, Getattr(pj, "lname"), "_v");
304 Replaceall(tm, "$implicitconv", conv);
306 Replaceall(tm, "$implicitconv", "0");
308 Replaceall(tm, "$input", tmp);
309 Printv(f, tm, "\n", NIL);
423 String *tm = Getattr(pj, "tmap:typecheck");
424 if (tm) {
426 Replaceid(tm, Getatt
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_asn1/
H A Dsecport.c365 threadmark_mark *tm, **pw; local
379 PL_ARENA_ALLOCATE(tm, arena, sizeof(threadmark_mark));
380 if (!tm) {
386 tm->mark = result;
387 tm->next = (threadmark_mark *)NULL;
394 *pw = tm;
421 threadmark_mark **pw, *tm; local
443 tm = *pw;
469 threadmark_mark **pw, *tm; local
493 tm
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/Security/
H A Dsecport.c365 threadmark_mark *tm, **pw; local
379 PL_ARENA_ALLOCATE(tm, arena, sizeof(threadmark_mark));
380 if (!tm) {
386 tm->mark = result;
387 tm->next = (threadmark_mark *)NULL;
394 *pw = tm;
421 threadmark_mark **pw, *tm; local
443 tm = *pw;
469 threadmark_mark **pw, *tm; local
493 tm
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/lib/
H A Dsecport.c365 threadmark_mark *tm, **pw; local
379 PL_ARENA_ALLOCATE(tm, arena, sizeof(threadmark_mark));
380 if (!tm) {
386 tm->mark = result;
387 tm->next = (threadmark_mark *)NULL;
394 *pw = tm;
421 threadmark_mark **pw, *tm; local
443 tm = *pw;
469 threadmark_mark **pw, *tm; local
493 tm
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_asn1/security_asn1/
H A Dsecport.c365 threadmark_mark *tm, **pw; local
379 PL_ARENA_ALLOCATE(tm, arena, sizeof(threadmark_mark));
380 if (!tm) {
386 tm->mark = result;
387 tm->next = (threadmark_mark *)NULL;
394 *pw = tm;
421 threadmark_mark **pw, *tm; local
443 tm = *pw;
469 threadmark_mark **pw, *tm; local
493 tm
[all...]
/macosx-10.10/misc_cmds-33/calendar/
H A Dio.c151 struct tm tm; local
156 tm.tm_sec = 0; /* unused */
157 tm.tm_min = 0; /* unused */
158 tm.tm_hour = 0; /* unused */
159 tm.tm_wday = 0; /* unused */
160 tm.tm_mon = month - 1;
161 tm.tm_mday = day;
162 tm.tm_year = tp->tm_year; /* unused */
165 &tm);
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/win/
H A DtclWinTime.c41 struct tm tm; /* time information */ member in struct:ThreadSpecificData
130 static struct tm * ComputeGMT _ANSI_ARGS_((const time_t *tp));
568 * This function converts between seconds and struct tm. If
573 * Returns a static tm structure.
581 struct tm *
587 struct tm *tmPtr;
620 * Add the bias directly to the tm structure to avoid overflow.
666 * Returns a (per thread) statically allocated struct tm.
669 * Updates the values of the static struct tm
[all...]
/macosx-10.10/system_cmds-643.1.1/sadc.tproj/
H A Dsadc.c201 struct tm *tm;
202 tm = gmtime(&(timestamp_record.rec_data));
204 fprintf(stderr, "GMTIME offset from UTC in seconds = %ld\n", tm->tm_gmtoff);
205 fprintf(stderr, "GMTIME secnds=%d, min=%d, hour=%d\n", tm->tm_sec, tm->tm_min, tm->tm_hour);
206 fprintf(stderr, "asctime = %s\n", asctime(tm));
208 tm=localtime(&(timestamp_record.rec_data));
209 fprintf(stderr, "LOCTIME offset from UTC in seconds = %ld\n",tm
[all...]
/macosx-10.10/ntp-92/ntpd/
H A Drefclock_bancomm.c104 struct stfp_tm tm; member in struct:stfp_time
347 struct tm *tadr;
512 struct tm maj;
535 time_vme->day = stfp->tm.tm_yday+1;
536 time_vme->hr = stfp->tm.tm_hour;
537 time_vme->mn = stfp->tm.tm_min;
538 time_vme->sec = stfp->tm.tm_sec;
H A Drefclock_dumbclock.c71 struct tm ymd; /* struct tm for y/m/d only */
111 struct tm *tm_time_p;
238 struct tm *gmtp;
239 struct tm *lt_p;
241 struct tm asserted_tm; /* the struct tm of the same */
/macosx-10.10/libarchive-30/libarchive/tar/
H A Dgetdate.c748 struct tm *tm; local
752 tm = gmtime(&t);
754 now += DAY * ((DayNumber - tm->tm_wday + 7) % 7);
765 struct tm *tm; local
771 tm = localtime(&Start);
772 Month = 12 * (tm->tm_year + 1900) + tm->tm_mon + RelMonth;
776 Convert(Month, (time_t)tm
903 struct tm local, *tm; local
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Target/MBlaze/
H A DMBlazeDelaySlotFiller.cpp45 Filler(TargetMachine &tm) argument
46 : MachineFunctionPass(ID), TM(tm), TII(tm.getInstrInfo()) { }
251 FunctionPass *llvm::createMBlazeDelaySlotFillerPass(MBlazeTargetMachine &tm) { argument
252 return new Filler(tm);
/macosx-10.10/llvmCore-3425.0.34/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp57 Filler(TargetMachine &tm) argument
58 : MachineFunctionPass(ID), TM(tm), TII(tm.getInstrInfo()) { }
140 FunctionPass *llvm::createMipsDelaySlotFillerPass(MipsTargetMachine &tm) { argument
141 return new Filler(tm);
/macosx-10.10/llvmCore-3425.0.34/lib/Target/Sparc/
H A DDelaySlotFiller.cpp45 Filler(TargetMachine &tm) argument
46 : MachineFunctionPass(ID), TM(tm), TII(tm.getInstrInfo()) { }
91 FunctionPass *llvm::createSparcDelaySlotFillerPass(TargetMachine &tm) { argument
92 return new Filler(tm);

Completed in 139 milliseconds

1234567891011>>