Lines Matching refs:dst
83 static BLAKE2_INLINE void store16( void *dst, uint16_t w ) in store16() argument
86 memcpy(dst, &w, sizeof w); in store16()
88 uint8_t *p = ( uint8_t * )dst; in store16()
94 static BLAKE2_INLINE void store32( void *dst, uint32_t w ) in store32() argument
97 memcpy(dst, &w, sizeof w); in store32()
99 uint8_t *p = ( uint8_t * )dst; in store32()
107 static BLAKE2_INLINE void store64( void *dst, uint64_t w ) in store64() argument
110 memcpy(dst, &w, sizeof w); in store64()
112 uint8_t *p = ( uint8_t * )dst; in store64()
135 static BLAKE2_INLINE void store48( void *dst, uint64_t w ) in store48() argument
137 uint8_t *p = ( uint8_t * )dst; in store48()