Searched refs:NumBytes (Results 1 – 2 of 2) sorted by relevance
| /hal_nxp-latest/mcux/mcux-sdk/components/rtt/RTT/ |
| D | SEGGER_RTT.c | 174 #define SEGGER_RTT_MEMCPY(pDest, pSrc, NumBytes) MEMCPY((pDest), (pSrc), (NumBytes)) argument 176 #define SEGGER_RTT_MEMCPY(pDest, pSrc, NumBytes) memcpy((pDest), (pSrc), (NumBytes)) argument 381 static unsigned _WriteBlocking(SEGGER_RTT_BUFFER_UP *pRing, const char *pBuffer, unsigned NumBytes) in _WriteBlocking() argument 406 NumBytesToWrite = MIN(NumBytesToWrite, NumBytes); in _WriteBlocking() 410 NumBytes -= NumBytesToWrite; in _WriteBlocking() 420 NumBytes -= NumBytesToWrite; in _WriteBlocking() 430 } while (NumBytes); in _WriteBlocking() 452 static void _WriteNoCheck(SEGGER_RTT_BUFFER_UP *pRing, const char *pData, unsigned NumBytes) in _WriteNoCheck() argument 461 if (Rem > NumBytes) in _WriteNoCheck() 468 WrOff += NumBytes; in _WriteNoCheck() [all …]
|
| D | SEGGER_RTT.h | 213 #define SEGGER_RTT__ROUND_UP_2_CACHE_LINE_SIZE(NumBytes) \ argument 214 (((NumBytes + SEGGER_RTT_CPU_CACHE_LINE_SIZE - 1) / SEGGER_RTT_CPU_CACHE_LINE_SIZE) * \ 217 #define SEGGER_RTT__ROUND_UP_2_CACHE_LINE_SIZE(NumBytes) (NumBytes) argument 317 unsigned SEGGER_RTT_Write(unsigned BufferIndex, const void *pBuffer, unsigned NumBytes); 318 unsigned SEGGER_RTT_WriteNoLock(unsigned BufferIndex, const void *pBuffer, unsigned NumBytes); 319 unsigned SEGGER_RTT_WriteSkipNoLock(unsigned BufferIndex, const void *pBuffer, unsigned NumBytes); 320 …igned SEGGER_RTT_ASM_WriteSkipNoLock(unsigned BufferIndex, const void *pBuffer, unsigned NumBytes); 322 … SEGGER_RTT_WriteWithOverwriteNoLock(unsigned BufferIndex, const void *pBuffer, unsigned NumBytes); 347 unsigned SEGGER_RTT_WriteDownBuffer(unsigned BufferIndex, const void *pBuffer, unsigned NumBytes); 348 …ned SEGGER_RTT_WriteDownBufferNoLock(unsigned BufferIndex, const void *pBuffer, unsigned NumBytes);
|