Searched refs:lunarDateInfo (Results 1 – 2 of 2) sorted by relevance
52 std::vector<uint32_t> LunarCalendar::lunarDateInfo {176 leapMonth = lunarDateInfo[lunarYear - START_YEAR] & 0xf; in SolorDateToLunarDate()183 …daysInPerLunarMonth = ((lunarDateInfo[lunarYear - START_YEAR + 1] & 0xf) == 0xf) ? DAYS_IN_BIG_MON… in SolorDateToLunarDate()186 daysInPerLunarMonth = ((lunarDateInfo[lunarYear - START_YEAR] & in SolorDateToLunarDate()223 daysPerLunarYear += ((lunarDateInfo[lunarYear - START_YEAR] & i) == i) ? 1 : 0; in GetDaysPerLunarYear()225 if (((lunarDateInfo[lunarYear - START_YEAR] & 0xf) != 0) && in GetDaysPerLunarYear()226 ((lunarDateInfo[lunarYear - START_YEAR] & 0xf) != 0xf)) { in GetDaysPerLunarYear()227 …daysPerLunarYear += ((lunarDateInfo[lunarYear - START_YEAR + 1] & 0xf) == 0xf) ? DAYS_IN_BIG_MONTH… in GetDaysPerLunarYear()
49 static std::vector<uint32_t> lunarDateInfo; variable