Lines Matching refs:temp
85 uint32_t temp; in SWM_SetMovablePinSelect() local
92 temp = base->PINASSIGN_DATA[pinassign]; in SWM_SetMovablePinSelect()
93 temp &= ~(0xFFUL << (shifter)); in SWM_SetMovablePinSelect()
94 temp |= ((uint32_t)swm_port_pin << shifter); in SWM_SetMovablePinSelect()
95 base->PINASSIGN_DATA[pinassign] = temp; in SWM_SetMovablePinSelect()
117 uint32_t temp; in SWM_SetFixedMovablePinSelect() local
122 temp = base->PINASSIGNFIXED0; in SWM_SetFixedMovablePinSelect()
123 temp &= ~(0x03UL << (shifter)); in SWM_SetFixedMovablePinSelect()
124 temp |= ((uint32_t)swm_port_pin << shifter); in SWM_SetFixedMovablePinSelect()
125 base->PINASSIGNFIXED0 = temp; in SWM_SetFixedMovablePinSelect()
188 uint32_t temp = 0x00U; in SWM_SetFlextimerPinSelect() local
192 temp = base->FTM_PINASSIGN0; in SWM_SetFlextimerPinSelect()
193 temp &= ~(0x03UL << ((uint32_t)func * 2U)); in SWM_SetFlextimerPinSelect()
194 temp |= ((uint32_t)s_swmFlextimerFuncMatrix[func][selection] << ((uint32_t)func * 2U)); in SWM_SetFlextimerPinSelect()
195 base->FTM_PINASSIGN0 = temp; in SWM_SetFlextimerPinSelect()
199 temp = base->FTM_PINASSIGN1; in SWM_SetFlextimerPinSelect()
200 temp &= ~(0x03UL << (((uint32_t)func & 0x0FU) * 2U)); in SWM_SetFlextimerPinSelect()
201 … temp |= ((uint32_t)s_swmFlextimerFuncMatrix[func][selection] << (((uint32_t)func & 0x0FU) * 2U)); in SWM_SetFlextimerPinSelect()
202 base->FTM_PINASSIGN1 = temp; in SWM_SetFlextimerPinSelect()