Home
last modified time | relevance | path

Searched refs:TM_YEAR_BITS (Results 1 – 2 of 2) sorted by relevance

/base/update/updater/services/package/pkg_manager/
Dpkg_utils.cpp38 constexpr uint32_t TM_YEAR_BITS = 9; variable
174 date = static_cast<uint16_t>(static_cast<uint16_t>(year - MIN_YEAR) << TM_YEAR_BITS); in GetFileSize()
/base/update/updater/services/package/pkg_package/
Dpkg_zipfile.cpp25 constexpr uint32_t TM_YEAR_BITS = 9; variable
587 …newTime.tm_year = ((modifiedDate >> TM_YEAR_BITS) & 0x7f) + START_YEAR; // 年,tm_year为int临时变量减去1900。 in CombineTimeAndDate()