Searched defs:bcopy (Results 1 - 5 of 5) sorted by relevance
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
H A D | rijndael-alg-fst.c | 32 #define bcopy(a, b, c) memcpy((b), (a), (c)) macro
|
H A D | rijndael-api-fst.c | 35 #define bcopy(a, b, c) memcpy(b, a, c) macro 61 bcopy(keyMaterial, key->keyMaterial, keyLen/8); 86 bcopy(IV, cipher->IV, MAX_IV_SIZE); 120 bcopy(cipher->IV, block, 16); 121 bcopy(input, iv, 16); 136 bcopy(outBuffer, block, 16); 137 bcopy(input, iv, 16); 156 bcopy(cipher->IV, iv, 16); 233 bcopy(input, block, 16 - padLen); 297 bcopy(ciphe [all...] |
/external/clang/test/Analysis/ |
H A D | bstring.c | 435 // bcopy() 438 #define bcopy BUILTIN(bcopy) macro 440 void bcopy(/*const*/ void *s1, void *s2, size_t n); 447 bcopy(src, dst, 4); // no-warning 458 bcopy(src, dst, 5); // expected-warning{{out-of-bound}} 465 bcopy(src, dst, 4); // expected-warning{{overflow}}
|
/external/ipsec-tools/src/racoon/missing/crypto/sha2/ |
H A D | sha2.c | 55 #define bcopy(a, b, c) memcpy((b), (a), (c)) macro 338 bcopy(sha256_initial_hash_value, context->state, SHA256_DIGEST_LENGTH); 536 bcopy(data, &context->buffer[usedspace], freespace); 543 bcopy(data, &context->buffer[usedspace], len); 559 bcopy(data, context->buffer, len); 620 bcopy(context->state, d, SHA256_DIGEST_LENGTH); 666 bcopy(sha512_initial_hash_value, context->state, SHA512_DIGEST_LENGTH); 858 bcopy(data, &context->buffer[usedspace], freespace); 865 bcopy(data, &context->buffer[usedspace], len); 881 bcopy(dat [all...] |
/external/netperf/src/ |
H A D | netlib.h | 714 /* if your system has bcopy and bzero, include it here, otherwise, we */ 729 #define bcopy(s,d,h) memcpy((d),(s),(h)) macro
|
Completed in 312 milliseconds