| 7 | #define rotr32(x,n) rotrs(x,n,32) |
| 8 | |
| 9 | inline uint RawGet2(const void *Data) |
| 10 | { |
| 11 | byte *D=(byte *)Data; |
| 12 | return D[0]+(D[1]<<8); |
| 13 | } |
| 14 | |
| 15 | |
| 16 | inline uint32 RawGet4(const void *Data) |
nothing calls this directly
no outgoing calls
no test coverage detected