Lines Matching refs:_dst
543 static void *compute_and(void *_dst, const void *_src, size_t n) in compute_and() argument
545 uint8_t *dst = _dst; in compute_and()
552 return _dst; in compute_and()
555 static void *compute_or(void *_dst, const void *_src, size_t n) in compute_or() argument
557 uint8_t *dst = _dst; in compute_or()
564 return _dst; in compute_or()
567 static void *compute_xor(void *_dst, const void *_src, size_t n) in compute_xor() argument
569 uint8_t *dst = _dst; in compute_xor()
576 return _dst; in compute_xor()
579 static void *compute_extend(void *_dst, const void *_src, size_t n) in compute_extend() argument
585 sha1_update(&ctx, _dst, n); in compute_extend()
588 memcpy(_dst, digest, min(n, sizeof(digest))); in compute_extend()
590 return _dst; in compute_extend()