Lines Matching refs:wNBlocks
660 #define USB_DRD_CALC_BLK32(pdwReg, wCount, wNBlocks) \ argument
663 (wNBlocks) =((uint32_t)(wCount) >> 5U); \
666 (wNBlocks)--; \
669 (pdwReg)|= (uint32_t)((((wNBlocks) << 26U)) | USB_CNTRX_BLSIZE); \
672 #define USB_DRD_CALC_BLK2(pdwReg, wCount, wNBlocks) \ argument
675 (wNBlocks) = (uint32_t)((uint32_t)(wCount) >> 1U); \
678 (wNBlocks)++; \
680 (pdwReg) |= (uint32_t)((wNBlocks) << 26U); \
685 uint32_t wNBlocks; \
695 USB_DRD_CALC_BLK2((pdwReg), (wCount), wNBlocks); \
699 USB_DRD_CALC_BLK32((pdwReg), (wCount), wNBlocks); \