Searched defs:unixtime (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/pcfs/
H A Dpc_subr.c122 int64_t unixtime; local
124 unixtime = (int64_t)tvp->tv_sec;
125 unixtime -= YZ_SECS;
126 unixtime -= pc_tz.secondswest;
127 if (unixtime <= 0) {
133 for (year = YEAR_ZERO; unixtime >= days_in_year(year) * 86400;
135 unixtime -= 86400 * days_in_year(year);
145 for (month = 1; unixtime >= 86400 * days_in_month(month, year);
147 unixtime -= 86400 * days_in_month(month, year);
151 day = (int)(unixtime / 8640
188 pc_pcttotv( struct pctime *pctp, int64_t *unixtime) argument
[all...]
H A Dpc_vnops.c578 int64_t unixtime; local
648 pc_pcttotv(&pcp->pc_entry.pcd_mtime, &unixtime);
650 if (unixtime > INT32_MAX)
651 DTRACE_PROBE1(pcfs__mtimeclamped, int64_t, unixtime);
652 unixtime = MIN(unixtime, INT32_MAX);
653 } else if (unixtime > INT32_MAX &&
656 DTRACE_PROBE1(pcfs__mtimeoverflowed, int64_t, unixtime);
660 vap->va_mtime.tv_sec = (time_t)unixtime;
679 pc_pcttotv(&atime, &unixtime);
[all...]

Completed in 97 milliseconds