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

/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-alg-fst.c32 #define bcopy(a, b, c) memcpy((b), (a), (c)) macro
H A Drijndael-api-fst.c35 #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 Dbstring.c396 // bcopy()
399 #define bcopy BUILTIN(bcopy) macro
401 void bcopy(/*const*/ void *s1, void *s2, size_t n);
408 bcopy(src, dst, 4); // no-warning
419 bcopy(src, dst, 5); // expected-warning{{out-of-bound}}
426 bcopy(src, dst, 4); // expected-warning{{overflow}}
/external/ipsec-tools/src/racoon/missing/crypto/sha2/
H A Dsha2.c55 #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/
H A Dnetlib.h593 /* if your system has bcopy and bzero, include it here, otherwise, we */
608 #define bcopy(s,d,h) memcpy((d),(s),(h)) macro
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h122 /// void bcopy(const void *s1, void *s2, size_t n);
123 bcopy, enumerator in enum:llvm::LibFunc::Func

Completed in 130 milliseconds