Home
last modified time | relevance | path

Searched refs:NumBytes (Results 1 – 7 of 7) sorted by relevance

/segger-2.7.6/SEGGER/
DSEGGER_RTT.c164 #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
359 static unsigned _WriteBlocking(SEGGER_RTT_BUFFER_UP* pRing, const char* pBuffer, unsigned NumBytes)… in _WriteBlocking() argument
378 NumBytesToWrite = MIN(NumBytesToWrite, NumBytes); in _WriteBlocking()
382 NumBytes -= NumBytesToWrite; in _WriteBlocking()
391 NumBytes -= NumBytesToWrite; in _WriteBlocking()
399 } while (NumBytes); in _WriteBlocking()
421 static void _WriteNoCheck(SEGGER_RTT_BUFFER_UP* pRing, const char* pData, unsigned NumBytes) { in _WriteNoCheck() argument
429 if (Rem > NumBytes) { in _WriteNoCheck()
435 WrOff += NumBytes; in _WriteNoCheck()
[all …]
DSEGGER_RTT.h211 …#define SEGGER_RTT__ROUND_UP_2_CACHE_LINE_SIZE(NumBytes) (((NumBytes + SEGGER_RTT_CPU_CACHE_LINE_S… argument
213 #define SEGGER_RTT__ROUND_UP_2_CACHE_LINE_SIZE(NumBytes) (NumBytes) argument
300 … SEGGER_RTT_Write (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes);
301 … SEGGER_RTT_WriteNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes);
302 … SEGGER_RTT_WriteSkipNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes);
303 … SEGGER_RTT_ASM_WriteSkipNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes);
305 … SEGGER_RTT_WriteWithOverwriteNoLock(unsigned BufferIndex, const void* pBuffer, unsigned NumBytes);
328 … SEGGER_RTT_WriteDownBuffer (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes);
329 … SEGGER_RTT_WriteDownBufferNoLock (unsigned BufferIndex, const void* pBuffer, unsigned NumBytes);
DSEGGER.h154 …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);
DSEGGER_SYSVIEW.c461 static U8* _EncodeData(U8* pPayload, const char* pSrc, unsigned int NumBytes) { in _EncodeData() argument
465 *pPayload++ = NumBytes; in _EncodeData()
466 while (n < NumBytes) { in _EncodeData()
739 unsigned int NumBytes; in _SendPacket() local
790 NumBytes = pEndPacket - pStartPacket; in _SendPacket()
791 if (NumBytes > 127) { in _SendPacket()
792 *--pStartPacket = (NumBytes >> 7); in _SendPacket()
793 *--pStartPacket = NumBytes | 0x80; in _SendPacket()
795 *--pStartPacket = NumBytes; in _SendPacket()
2491 U8* SEGGER_SYSVIEW_EncodeData(U8 *pPayload, const char* pSrc, unsigned int NumBytes) { in SEGGER_SYSVIEW_EncodeData() argument
[all …]
DSEGGER_SYSVIEW_ConfDefaults.h514 #define SEGGER_SYSVIEW_ON_EVENT_RECORDED(NumBytes) argument
DSEGGER_SYSVIEW.h355 void SEGGER_SYSVIEW_X_OnEventRecorded (unsigned NumBytes);
/segger-2.7.6/SEGGER/Syscalls/
DSEGGER_RTT_Syscalls_KEIL.c191 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()