| 1 | _forceinline void Unpack::InsertOldDist(uint Distance) |
| 2 | { |
| 3 | OldDist[3]=OldDist[2]; |
| 4 | OldDist[2]=OldDist[1]; |
| 5 | OldDist[1]=OldDist[0]; |
| 6 | OldDist[0]=Distance; |
| 7 | } |
| 8 | |
| 9 | #ifdef _MSC_VER |
| 10 | #define FAST_MEMCPY |
nothing calls this directly
no outgoing calls
no test coverage detected