Lines Matching refs:raw
94 static BOOL RtcCheckDate(const RTCDate *date, RTCRawDate *raw);
95 static BOOL RtcCheckTime(const RTCTime *time, RTCRawTime *raw);
1642 static BOOL RtcCheckDate(const RTCDate *date, RTCRawDate *raw) in RtcCheckDate() argument
1656 *(u32 *)raw = RtcHEX2BCD(date->year); in RtcCheckDate()
1657 raw->month = RtcHEX2BCD(date->month); in RtcCheckDate()
1658 raw->day = RtcHEX2BCD(date->day); in RtcCheckDate()
1659 …raw->week = (u32)RTC_GetDayOfWeek((RTCDate*)date); // Always recalculate the day of week, don't… in RtcCheckDate()
1674 static BOOL RtcCheckTime(const RTCTime *time, RTCRawTime *raw) in RtcCheckTime() argument
1687 raw->afternoon = 1; in RtcCheckTime()
1691 raw->afternoon = 0; in RtcCheckTime()
1693 raw->hour = RtcHEX2BCD(time->hour); in RtcCheckTime()
1694 raw->minute = RtcHEX2BCD(time->minute); in RtcCheckTime()
1695 raw->second = RtcHEX2BCD(time->second); in RtcCheckTime()