• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/unzip60/

Lines Matching defs:m_time

1699     time_t m_time;
1720 m_time = mktime(tm);
1721 NATIVE_TO_TIMET(m_time) /* NOP unless MSC 7.0 or Macintosh */
1722 TTrace((stderr, " final m_time = %lu\n", (ulg)m_time));
1769 m_time = time_make(tmx);
1789 m_time = (time_t)((unsigned long)(days + dy) * 86400L +
1794 TTrace((stderr, " m_time before timezone = %lu\n", (ulg)m_time));
1806 m_time += 60*(tzinfo.Bias);
1811 (m_time < (time_t)0x70000000L) )
1812 m_time = U_TIME_T_MAX; /* saturate in case of (unsigned) overflow */
1813 if (m_time < (time_t)0L) /* a converted DOS time cannot be negative */
1814 m_time = S_TIME_T_MAX; /* -> saturate at max signed time_t value */
1815 if ((tm = localtime(&m_time)) != (struct tm *)NULL)
1816 m_time -= tm->tm_gmtoff; /* sec. EAST of GMT: subtr. */
1819 m_time += tbp.timezone * 60L; /* seconds WEST of GMT: add */
1825 m_time += timezone; /* seconds WEST of GMT: add */
1829 TTrace((stderr, " m_time after timezone = %lu\n", (ulg)m_time));
1837 (m_time < (time_t)0x70000000L) )
1838 m_time = U_TIME_T_MAX; /* saturate in case of (unsigned) overflow */
1839 if (m_time < (time_t)0L) /* a converted DOS time cannot be negative */
1840 m_time = S_TIME_T_MAX; /* -> saturate at max signed time_t value */
1841 TIMET_TO_NATIVE(m_time) /* NOP unless MSC 7.0 or Macintosh */
1842 if (((tm = localtime((time_t *)&m_time)) != NULL) && tm->tm_isdst)
1844 m_time += 60L * tzinfo.DaylightBias; /* adjust with DST bias */
1846 m_time += 60L * tzinfo.StandardBias; /* add StdBias (normally 0) */
1848 m_time -= 60L * 60L; /* adjust for daylight savings time */
1850 NATIVE_TO_TIMET(m_time) /* NOP unless MSC 7.0 or Macintosh */
1851 TTrace((stderr, " m_time after DST = %lu\n", (ulg)m_time));
1862 (m_time < (time_t)0x70000000L) )
1863 m_time = U_TIME_T_MAX; /* saturate in case of (unsigned) overflow */
1864 if (m_time < (time_t)0L) /* a converted DOS time cannot be negative */
1865 m_time = S_TIME_T_MAX; /* -> saturate at max signed time_t value */
1867 return m_time;