Searched defs:gmt (Results 1 - 6 of 6) sorted by relevance

/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/
H A Drctime.h99 PRTime gmt; local
110 inline void RCTime::Now() { gmt = PR_Now(); }
111 inline RCTime::operator PRTime() const { return gmt; }
113 inline void RCTime::operator=(PRTime his) { gmt = his; }
114 inline void RCTime::operator=(const RCTime& his) { gmt = his.gmt; }
117 { return (gmt < his.gmt) ? PR_TRUE : PR_FALSE; }
119 { return (gmt > his.gmt)
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmactime.c174 PRTimeParameters PR_LocalTimeParameters(const PRExplodedTime *gmt) argument
176 #pragma unused (gmt)
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprtime.h153 * given the current time in GMT. The input argument gmt should
171 typedef PRTimeParameters (PR_CALLBACK *PRTimeParamFn)(const PRExplodedTime *gmt);
238 NSPR_API(PRTimeParameters) PR_LocalTimeParameters(const PRExplodedTime *gmt); variable
241 NSPR_API(PRTimeParameters) PR_GMTParameters(const PRExplodedTime *gmt); variable
247 NSPR_API(PRTimeParameters) PR_USPacificTimeParameters(const PRExplodedTime *gmt); variable
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dy2k.c189 static PRExplodedTime gmt[] = { variable
271 if (!ExplodedTimeIsEqual(&et_tmp, &gmt[idx])) {
274 PrintExplodedTime(&gmt[idx]);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/
H A DZoneProc.c57 const char gmt[4] = "GMT"; variable
115 tzname[0] = tzname[1] = (char *)__UNCONST(gmt);
766 if (tzload(gmt, sp) != 0)
767 (void) tzparse(gmt, sp, TRUE);
823 (void)strncpyX(lclptr->chars, gmt, sizeof(lclptr->chars));
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprtime.c88 static void ComputeGMT(PRTime time, PRExplodedTime *gmt);
105 ComputeGMT(PRTime time, PRExplodedTime *gmt) argument
124 LL_L2I(gmt->tm_usec, usec);
126 if (gmt->tm_usec < 0) {
131 gmt->tm_usec += 1000000L;
147 gmt->tm_wday = (numDays + 4) % 7;
148 if (gmt->tm_wday < 0) {
149 gmt->tm_wday += 7;
154 gmt->tm_hour = rem / 3600;
156 gmt
[all...]

Completed in 41 milliseconds