Searched refs:NumBytes (Results 1 – 7 of 7) sorted by relevance
/segger-3.7.0/SEGGER/ |
D | SEGGER_RTT.c | 164 #define SEGGER_RTT_MEMCPY(pDest, pSrc, NumBytes) MEMCPY((pDest), (pSrc), (NumBytes)) argument 166 #define SEGGER_RTT_MEMCPY(pDest, pSrc, NumBytes) memcpy((pDest), (pSrc), (NumBytes)) argument 378 static unsigned _WriteBlocking(SEGGER_RTT_BUFFER_UP* pRing, const char* pBuffer, unsigned NumBytes)… in _WriteBlocking() argument 397 NumBytesToWrite = MIN(NumBytesToWrite, NumBytes); in _WriteBlocking() 401 NumBytes -= NumBytesToWrite; in _WriteBlocking() 410 NumBytes -= NumBytesToWrite; in _WriteBlocking() 418 } while (NumBytes); in _WriteBlocking() 440 static void _WriteNoCheck(SEGGER_RTT_BUFFER_UP* pRing, const char* pData, unsigned NumBytes) { in _WriteNoCheck() argument 448 if (Rem > NumBytes) { in _WriteNoCheck() 454 WrOff += NumBytes; in _WriteNoCheck() [all …]
|
D | SEGGER_RTT.h | 285 …#define SEGGER_RTT__ROUND_UP_2_CACHE_LINE_SIZE(NumBytes) (((NumBytes + SEGGER_RTT_CPU_CACHE_LINE_S… argument 287 #define SEGGER_RTT__ROUND_UP_2_CACHE_LINE_SIZE(NumBytes) (NumBytes) argument 374 … SEGGER_RTT_Write (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); 375 … SEGGER_RTT_WriteNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); 376 … SEGGER_RTT_WriteSkipNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); 377 … SEGGER_RTT_ASM_WriteSkipNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); 379 … SEGGER_RTT_WriteWithOverwriteNoLock(unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); 402 … SEGGER_RTT_WriteDownBuffer (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes); 403 … SEGGER_RTT_WriteDownBufferNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes);
|
D | SEGGER.h | 154 …void (*pfClean) (void *p, unsigned long NumBytes); // Optional clean function for cached memo… 155 …void (*pfInvalidate)(void *p, unsigned long NumBytes); // Optional invalidate function for cached… 195 void SEGGER_ARM_memcpy(void* pDest, const void* pSrc, int NumBytes); 196 void SEGGER_memcpy (void* pDest, const void* pSrc, unsigned NumBytes); 197 void SEGGER_memxor (void* pDest, const void* pSrc, unsigned NumBytes);
|
D | SEGGER_SYSVIEW.c | 425 static U8* _EncodeData(U8* pPayload, const char* pSrc, unsigned int NumBytes) { in _EncodeData() argument 434 if (NumBytes < 255) { in _EncodeData() 435 *pPayload++ = (U8)NumBytes; in _EncodeData() 438 *pPayload++ = (NumBytes & 255); in _EncodeData() 439 *pPayload++ = ((NumBytes >> 8) & 255); in _EncodeData() 441 while (n < NumBytes) { in _EncodeData() 714 unsigned int NumBytes; in _SendPacket() local 768 NumBytes = (unsigned int)(pEndPacket - pStartPacket); in _SendPacket() 770 if (NumBytes < 127) { in _SendPacket() 776 if (NumBytes < (1ul << 14)) { // Encodes in 2 bytes in _SendPacket() [all …]
|
D | SEGGER_SYSVIEW_ConfDefaults.h | 540 #define SEGGER_SYSVIEW_ON_EVENT_RECORDED(NumBytes) argument
|
D | SEGGER_SYSVIEW.h | 364 void SEGGER_SYSVIEW_X_OnEventRecorded (unsigned NumBytes);
|
/segger-3.7.0/SEGGER/Syscalls/ |
D | SEGGER_RTT_Syscalls_KEIL.c | 191 int _sys_write(FILEHANDLE hFile, const unsigned char * pBuffer, unsigned NumBytes, int Mode) { in _sys_write() argument 196 SEGGER_RTT_Write(0, (const char*)pBuffer, NumBytes); in _sys_write() 220 int _sys_read(FILEHANDLE hFile, unsigned char * pBuffer, unsigned NumBytes, int Mode) { in _sys_read() argument 223 (void)NumBytes; in _sys_read()
|