Lines Matching refs:matchCount
837 uint8_t matchCount; in I3C_Init() local
842 matchCount = (uint8_t)(config->slowClock_Hz / 1000000UL) - 1U; in I3C_Init()
843 matchCount = (matchCount == 0U) ? 1U : matchCount; in I3C_Init()
848 … matchCount = (uint8_t)((base->SCONFIG & I3C_SCONFIG_BAMATCH_MASK) >> I3C_SCONFIG_BAMATCH_SHIFT); in I3C_Init()
872 I3C_SCONFIG_BAMATCH(matchCount) | in I3C_Init()
984 uint8_t matchCount; in I3C_MasterInit() local
991 matchCount = (uint8_t)(masterConfig->slowClock_Hz / 1000000UL) - 1U; in I3C_MasterInit()
992 matchCount = (matchCount == 0U) ? 1U : matchCount; in I3C_MasterInit()
995 configValue |= I3C_SCONFIG_BAMATCH(matchCount); in I3C_MasterInit()
2779 uint8_t matchCount; in I3C_SlaveInit() local
2784 matchCount = (uint8_t)(slowClock_Hz / 1000000UL) - 1U; in I3C_SlaveInit()
2785 matchCount = (matchCount == 0U) ? 1U : matchCount; in I3C_SlaveInit()
2790 … matchCount = (uint8_t)((base->SCONFIG & I3C_SCONFIG_BAMATCH_MASK) >> I3C_SCONFIG_BAMATCH_SHIFT); in I3C_SlaveInit()
2812 I3C_SCONFIG_BAMATCH(matchCount) | in I3C_SlaveInit()