Searched refs:ft_as_integer (Results 1 – 2 of 2) sorted by relevance
56 …uint64_t ft_as_integer = (static_cast< uint64_t >(ft.dwHighDateTime) << 32) | static_cast< uint64_… in time_from_ftime() local57 uint64_t sec = ft_as_integer / 10000000UL; in time_from_ftime()58 …uint32_t sub_sec = static_cast< uint32_t >(ft_as_integer % 10000000UL) // 100-nanoseconds since th… in time_from_ftime()
143 …boost::uint64_t ft_as_integer = (static_cast< boost::uint64_t >(ft.dwHighDateTime) << 32) | static… in file_time_to_microseconds() local145 ft_as_integer -= shift; // filetime is now 100-nanos since 1970-Jan-01 in file_time_to_microseconds()146 return (ft_as_integer / 10U); // truncate to microseconds in file_time_to_microseconds()