Lines Matching refs:wNBlocks
500 #define USB_DRD_CALC_BLK32(pdwReg, wCount, wNBlocks) \ argument
503 (wNBlocks) =((uint32_t)(wCount) >> 5U); \
506 (wNBlocks)--; \
509 (pdwReg)|= (uint32_t)((((wNBlocks) << 26U)) | USB_CNTRX_BLSIZE); \
512 #define USB_DRD_CALC_BLK2(pdwReg, wCount, wNBlocks) \ argument
515 (wNBlocks) = (uint32_t)((uint32_t)(wCount) >> 1U); \
518 (wNBlocks)++; \
520 (pdwReg) |= (uint32_t)((wNBlocks) << 26U); \
525 uint32_t wNBlocks; \
535 USB_DRD_CALC_BLK2((pdwReg), (wCount), wNBlocks); \
539 USB_DRD_CALC_BLK32((pdwReg), (wCount), wNBlocks); \