HomeSort by: relevance | last modified time | path
    Searched defs:MEMCPY_BCOPY (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/unbound/dist/compat/
sha512.c 167 #define MEMCPY_BCOPY(d,s,l) memcpy((d), (s), (l))
171 #define MEMCPY_BCOPY(d,s,l) bcopy((s), (d), (l))
266 MEMCPY_BCOPY(context->state, sha512_initial_hash_value, SHA512_DIGEST_LENGTH);
367 MEMCPY_BCOPY(&context->buffer[usedspace], data, freespace);
374 MEMCPY_BCOPY(&context->buffer[usedspace], data, len);
390 MEMCPY_BCOPY(context->buffer, data, len);
461 MEMCPY_BCOPY(d, context->state, SHA512_DIGEST_LENGTH);
  /src/external/bsd/openldap/dist/contrib/slapd-modules/passwd/sha2/
sha2.c 180 #define MEMCPY_BCOPY(d,s,l) memcpy((d), (s), (l))
184 #define MEMCPY_BCOPY(d,s,l) bcopy((s), (d), (l))
343 MEMCPY_BCOPY(context->state, sha256_initial_hash_value, SHA256_DIGEST_LENGTH);
541 MEMCPY_BCOPY(&context->buffer[usedspace], data, freespace);
548 MEMCPY_BCOPY(&context->buffer[usedspace], data, len);
564 MEMCPY_BCOPY(context->buffer, data, len);
627 MEMCPY_BCOPY(d, context->state, SHA256_DIGEST_LENGTH);
673 MEMCPY_BCOPY(context->state, sha512_initial_hash_value, SHA512_DIGEST_LENGTH);
865 MEMCPY_BCOPY(&context->buffer[usedspace], data, freespace);
872 MEMCPY_BCOPY(&context->buffer[usedspace], data, len)
    [all...]

Completed in 43 milliseconds