Lines Matching refs:_dst
299 static void *compute_and(void *_dst, const void *_src, size_t n) in compute_and() argument
301 uint8_t *dst = _dst; in compute_and()
308 return _dst; in compute_and()
311 static void *compute_or(void *_dst, const void *_src, size_t n) in compute_or() argument
313 uint8_t *dst = _dst; in compute_or()
320 return _dst; in compute_or()
323 static void *compute_xor(void *_dst, const void *_src, size_t n) in compute_xor() argument
325 uint8_t *dst = _dst; in compute_xor()
332 return _dst; in compute_xor()
335 static void *compute_extend(void *_dst, const void *_src, size_t n) in compute_extend() argument
341 sha1_update(&ctx, _dst, n); in compute_extend()
344 memcpy(_dst, digest, min(n, sizeof(digest))); in compute_extend()
346 return _dst; in compute_extend()