Searched refs:NumBytes (Results 1 – 2 of 2) sorted by relevance
/hal_rpi_pico-latest/src/rp2_common/pico_stdio_rtt/SEGGER/RTT/ |
D | SEGGER_RTT.c | 170 #define SEGGER_RTT_MEMCPY(pDest, pSrc, NumBytes) MEMCPY((pDest), (pSrc), (NumBytes)) argument 172 #define SEGGER_RTT_MEMCPY(pDest, pSrc, NumBytes) memcpy((pDest), (pSrc), (NumBytes)) argument 385 static unsigned _WriteBlocking(SEGGER_RTT_BUFFER_UP* pRing, const char* pBuffer, unsigned NumBytes)… in _WriteBlocking() argument 404 NumBytesToWrite = MIN(NumBytesToWrite, NumBytes); in _WriteBlocking() 408 NumBytes -= NumBytesToWrite; in _WriteBlocking() 417 NumBytes -= NumBytesToWrite; in _WriteBlocking() 425 } while (NumBytes); in _WriteBlocking() 447 static void _WriteNoCheck(SEGGER_RTT_BUFFER_UP* pRing, const char* pData, unsigned NumBytes) { in _WriteNoCheck() argument 455 if (Rem > NumBytes) { in _WriteNoCheck() 461 WrOff += NumBytes; in _WriteNoCheck() [all …]
|
D | SEGGER_RTT.h | 286 …#define SEGGER_RTT__ROUND_UP_2_CACHE_LINE_SIZE(NumBytes) (((NumBytes + SEGGER_RTT_CPU_CACHE_LINE_S… argument 288 #define SEGGER_RTT__ROUND_UP_2_CACHE_LINE_SIZE(NumBytes) (NumBytes) argument 375 … SEGGER_RTT_Write (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); 376 … SEGGER_RTT_WriteNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); 377 … SEGGER_RTT_WriteSkipNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); 378 … SEGGER_RTT_ASM_WriteSkipNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); 380 … SEGGER_RTT_WriteWithOverwriteNoLock(unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); 403 … SEGGER_RTT_WriteDownBuffer (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); 404 … SEGGER_RTT_WriteDownBufferNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes);
|