Searched defs:MEMCPY_BCOPY (Results 1 - 1 of 1) sorted by relevance

/ast/src/lib/libsum/
H A Dsum-sha2.c223 #define MEMCPY_BCOPY(d,s,l) memcpy((d), (s), (l)) macro
227 #define MEMCPY_BCOPY(d,s,l) bcopy((s), (d), (l)) macro
646 MEMCPY_BCOPY(&sha->buffer[usedspace], data, freespace);
653 MEMCPY_BCOPY(&sha->buffer[usedspace], data, len);
669 MEMCPY_BCOPY(sha->buffer, data, len);
683 MEMCPY_BCOPY(sha->state, sha256_initial_hash_value, SHA256_DIGEST_LENGTH);
744 MEMCPY_BCOPY(&sha->buffer[SHA256_SHORT_BLOCK_LENGTH], &sha->bitcount, 8);
760 MEMCPY_BCOPY(sha->digest, sha->state, SHA256_DIGEST_LENGTH);
1009 MEMCPY_BCOPY(&sha->buffer[usedspace], data, freespace);
1016 MEMCPY_BCOPY(
[all...]

Completed in 14 milliseconds