MCPcopy Create free account
hub / github.com/F-Stack/f-stack / store48

Function store48

freebsd/contrib/libb2/blake2-impl.h:100–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98}
99
100static 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
111static inline uint32_t rotl32( const uint32_t w, const unsigned c )
112{

Callers 6

blake2sp_init_leafFunction · 0.85
blake2sp_init_rootFunction · 0.85
blake2s_initFunction · 0.85
blake2s_init_keyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected