| 85 | } |
| 86 | |
| 87 | static void DiffItem(const uint32_t *pPast, const uint32_t *pCurrent, uint32_t *pOut, size_t Size) |
| 88 | { |
| 89 | while(Size) |
| 90 | { |
| 91 | *pOut = *pCurrent - *pPast; |
| 92 | pOut++; |
| 93 | pPast++; |
| 94 | pCurrent++; |
| 95 | Size--; |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | void CGhostRecorder::WriteData(int Type, const void *pData, size_t Size) |
| 100 | { |
no outgoing calls
no test coverage detected