| 98 | } |
| 99 | |
| 100 | static inline void store48( void *dst, uint64_t w ) |
| 101 | { |
| 102 | uint8_t *p = ( uint8_t * )dst; |
| 103 | *p++ = ( uint8_t )w; w >>= 8; |
| 104 | *p++ = ( uint8_t )w; w >>= 8; |
| 105 | *p++ = ( uint8_t )w; w >>= 8; |
| 106 | *p++ = ( uint8_t )w; w >>= 8; |
| 107 | *p++ = ( uint8_t )w; w >>= 8; |
| 108 | *p++ = ( uint8_t )w; |
| 109 | } |
| 110 | |
| 111 | static inline uint32_t rotl32( const uint32_t w, const unsigned c ) |
| 112 | { |
no outgoing calls
no test coverage detected