Searched refs:NumBytesToWrite (Results 1 – 1 of 1) sorted by relevance
386 unsigned NumBytesToWrite; in _WriteBlocking() local399 NumBytesToWrite = RdOff - WrOff - 1u; in _WriteBlocking()401 NumBytesToWrite = pRing->SizeOfBuffer - (WrOff - RdOff + 1u); in _WriteBlocking()403 …NumBytesToWrite = MIN(NumBytesToWrite, (pRing->SizeOfBuffer - WrOff)); // Number of bytes tha… in _WriteBlocking()404 NumBytesToWrite = MIN(NumBytesToWrite, NumBytes); in _WriteBlocking()407 NumBytesWritten += NumBytesToWrite; in _WriteBlocking()408 NumBytes -= NumBytesToWrite; in _WriteBlocking()409 WrOff += NumBytesToWrite; in _WriteBlocking()410 while (NumBytesToWrite--) { in _WriteBlocking()414 SEGGER_RTT_MEMCPY((void*)pDst, pBuffer, NumBytesToWrite); in _WriteBlocking()[all …]