Lines Matching refs:dt
705 dng_date_time dt; in CurrentDateTimeAndZone() local
707 dt.fYear = t.tm_year + 1900; in CurrentDateTimeAndZone()
708 dt.fMonth = t.tm_mon + 1; in CurrentDateTimeAndZone()
709 dt.fDay = t.tm_mday; in CurrentDateTimeAndZone()
710 dt.fHour = t.tm_hour; in CurrentDateTimeAndZone()
711 dt.fMinute = t.tm_min; in CurrentDateTimeAndZone()
712 dt.fSecond = t.tm_sec; in CurrentDateTimeAndZone()
714 info.SetDateTime (dt); in CurrentDateTimeAndZone()
752 void DecodeUnixTime (uint32 unixTime, dng_date_time &dt) in DecodeUnixTime() argument
779 dt.Clear (); in DecodeUnixTime()
787 dt.fYear = t.tm_year + 1900; in DecodeUnixTime()
788 dt.fMonth = t.tm_mon + 1; in DecodeUnixTime()
789 dt.fDay = t.tm_mday; in DecodeUnixTime()
790 dt.fHour = t.tm_hour; in DecodeUnixTime()
791 dt.fMinute = t.tm_min; in DecodeUnixTime()
792 dt.fSecond = t.tm_sec; in DecodeUnixTime()
798 dng_time_zone LocalTimeZone (const dng_date_time &dt) in LocalTimeZone() argument
803 if (dt.IsValid ()) in LocalTimeZone()
815 gregDate.year = dt.fYear; in LocalTimeZone()
816 gregDate.month = (SInt8) dt.fMonth; in LocalTimeZone()
817 gregDate.day = (SInt8) dt.fDay; in LocalTimeZone()
818 gregDate.hour = (SInt8) dt.fHour; in LocalTimeZone()
819 gregDate.minute = (SInt8) dt.fMinute; in LocalTimeZone()
820 gregDate.second = (SInt8) dt.fSecond; in LocalTimeZone()
854 localST.wYear = (WORD) dt.fYear; in LocalTimeZone()
855 localST.wMonth = (WORD) dt.fMonth; in LocalTimeZone()
856 localST.wDay = (WORD) dt.fDay; in LocalTimeZone()
857 localST.wHour = (WORD) dt.fHour; in LocalTimeZone()
858 localST.wMinute = (WORD) dt.fMinute; in LocalTimeZone()
859 localST.wSecond = (WORD) dt.fSecond; in LocalTimeZone()