Lines Matching refs:match
564 static inline void CTIMER_EnableResetMatchChannel(CTIMER_Type *base, ctimer_match_t match, bool ena… in CTIMER_EnableResetMatchChannel() argument
568 base->MCR |= (1UL << (CTIMER_MCR_MR0R_SHIFT + ((uint32_t)match * 3U))); in CTIMER_EnableResetMatchChannel()
572 base->MCR &= ~(1UL << (CTIMER_MCR_MR0R_SHIFT + ((uint32_t)match * 3U))); in CTIMER_EnableResetMatchChannel()
585 static inline void CTIMER_EnableStopMatchChannel(CTIMER_Type *base, ctimer_match_t match, bool enab… in CTIMER_EnableStopMatchChannel() argument
589 base->MCR |= (1UL << (CTIMER_MCR_MR0S_SHIFT + ((uint32_t)match * 3U))); in CTIMER_EnableStopMatchChannel()
593 base->MCR &= ~(1UL << (CTIMER_MCR_MR0S_SHIFT + ((uint32_t)match * 3U))); in CTIMER_EnableStopMatchChannel()
607 static inline void CTIMER_EnableMatchChannelReload(CTIMER_Type *base, ctimer_match_t match, bool en… in CTIMER_EnableMatchChannelReload() argument
611 base->MCR |= (1UL << (CTIMER_MCR_MR0RL_SHIFT + (uint32_t)match)); in CTIMER_EnableMatchChannelReload()
615 base->MCR &= ~(1UL << (CTIMER_MCR_MR0RL_SHIFT + (uint32_t)match)); in CTIMER_EnableMatchChannelReload()
670 static inline void CTIMER_SetShadowValue(CTIMER_Type *base, ctimer_match_t match, uint32_t matchval… in CTIMER_SetShadowValue() argument
672 base->MSR[match] = matchvalue; in CTIMER_SetShadowValue()