Lines Matching refs:inc
180 uint32_t inc; in DMA_Prepare() local
207 inc = (descr->CTRL & _DMA_CTRL_SRC_INC_MASK) >> _DMA_CTRL_SRC_INC_SHIFT; in DMA_Prepare()
208 if (inc == _DMA_CTRL_SRC_INC_NONE) in DMA_Prepare()
214 descr->SRCEND = (void *)((uint32_t)src + (nMinus1 << inc)); in DMA_Prepare()
220 inc = (descr->CTRL & _DMA_CTRL_DST_INC_MASK) >> _DMA_CTRL_DST_INC_SHIFT; in DMA_Prepare()
221 if (inc == _DMA_CTRL_DST_INC_NONE) in DMA_Prepare()
227 descr->DSTEND = (void *)((uint32_t)dst + (nMinus1 << inc)); in DMA_Prepare()
1064 uint32_t inc; in DMA_RefreshPingPong() local
1093 inc = (descr->CTRL & _DMA_CTRL_SRC_INC_MASK) >> _DMA_CTRL_SRC_INC_SHIFT; in DMA_RefreshPingPong()
1094 if (inc == _DMA_CTRL_SRC_INC_NONE) in DMA_RefreshPingPong()
1100 descr->SRCEND = (void *)((uint32_t)src + (nMinus1 << inc)); in DMA_RefreshPingPong()
1106 inc = (descr->CTRL & _DMA_CTRL_DST_INC_MASK) >> _DMA_CTRL_DST_INC_SHIFT; in DMA_RefreshPingPong()
1107 if (inc == _DMA_CTRL_DST_INC_NONE) in DMA_RefreshPingPong()
1113 descr->DSTEND = (void *)((uint32_t)dst + (nMinus1 << inc)); in DMA_RefreshPingPong()