Home
last modified time | relevance | path

Searched refs:bcopy (Results 1 – 25 of 67) sorted by relevance

123

/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
Drijndael-api-fst.c35 #define bcopy(a, b, c) memcpy(b, a, c) macro
61 bcopy(keyMaterial, key->keyMaterial, keyLen/8); in rijndael_makeKey()
86 bcopy(IV, cipher->IV, MAX_IV_SIZE); in rijndael_cipherInit()
120 bcopy(cipher->IV, block, 16); in rijndael_blockEncrypt()
121 bcopy(input, iv, 16); in rijndael_blockEncrypt()
136 bcopy(outBuffer, block, 16); in rijndael_blockEncrypt()
137 bcopy(input, iv, 16); in rijndael_blockEncrypt()
156 bcopy(cipher->IV, iv, 16); in rijndael_blockEncrypt()
233 bcopy(input, block, 16 - padLen); in rijndael_padEncrypt()
297 bcopy(cipher->IV, iv, 16); in rijndael_blockDecrypt()
[all …]
/external/clang/test/Analysis/
Dbstring.c438 #define bcopy BUILTIN(bcopy) macro
440 void bcopy(/*const*/ void *s1, void *s2, size_t n);
447 bcopy(src, dst, 4); // no-warning in bcopy0()
458 bcopy(src, dst, 5); // expected-warning{{out-of-bound}} in bcopy1()
465 bcopy(src, dst, 4); // expected-warning{{overflow}} in bcopy2()
Dtaint-generic.c30 void bcopy(void *s1, void *s2, size_t n);
145 bcopy(buf1, dst, ts); // expected-warning {{Untrusted data is used to specify the buffer size}} in testTaintedBufferSize()
/external/ipsec-tools/src/racoon/missing/crypto/sha2/
Dsha2.c55 #define bcopy(a, b, c) memcpy((b), (a), (c)) macro
338 bcopy(sha256_initial_hash_value, context->state, SHA256_DIGEST_LENGTH); in SHA256_Init()
536 bcopy(data, &context->buffer[usedspace], freespace); in SHA256_Update()
543 bcopy(data, &context->buffer[usedspace], len); in SHA256_Update()
559 bcopy(data, context->buffer, len); in SHA256_Update()
620 bcopy(context->state, d, SHA256_DIGEST_LENGTH); in SHA256_Final()
666 bcopy(sha512_initial_hash_value, context->state, SHA512_DIGEST_LENGTH); in SHA512_Init()
858 bcopy(data, &context->buffer[usedspace], freespace); in SHA512_Update()
865 bcopy(data, &context->buffer[usedspace], len); in SHA512_Update()
881 bcopy(data, context->buffer, len); in SHA512_Update()
[all …]
/external/llvm/lib/Support/
Dregutils.h55 #define memmove(d, s, c) bcopy(s, d, c)
/external/tcpdump/lbl/
Dos-ultrix4.h24 void bcopy(const void *, void *, u_int);
Dos-sunos4.h56 void bcopy(const void *, void *, u_int);
/external/libpcap/lbl/
Dos-ultrix4.h24 void bcopy(const void *, void *, u_int);
Dos-sunos4.h56 void bcopy(const void *, void *, u_int);
/external/llvm/test/Transforms/IndVarSimplify/
Dcasted-argument.ll21 tail call void @bcopy(i8* %ge) nounwind
48 declare void @bcopy(i8* nocapture) nounwind
/external/tlsdate/src/common/
Dfmemopen.c67 bcopy(p->cur, buf, len); in fmemopen_read()
90 bcopy(buf, p->cur, len); in fmemopen_write()
/external/libjpeg-turbo/
Djinclude.h64 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
/external/pdfium/third_party/libjpeg/
Djinclude.h74 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
/external/autotest/client/site_tests/hardware_MemoryThroughput/
Dcontrol.copy_1thread_full_range21 job.run_test('hardware_MemoryThroughput', test='bcopy', warmup=100,
Dcontrol.copy_2thread_full_range21 job.run_test('hardware_MemoryThroughput', test='bcopy', warmup=100,
Dcontrol.cache_copy_1thread21 job.run_test('hardware_MemoryThroughput', test='bcopy', warmup=100,
Dcontrol.memory_qual21 tag='memory_qual', test='bcopy', warmup=100,
Dcontrol22 job.run_test('hardware_MemoryThroughput', test='bcopy', warmup=100,
/external/llvm/test/CodeGen/PowerPC/
D2007-11-04-CoalescerCrash.ll5 declare void @bcopy(i8*, i8*, i32)
108 call void @bcopy( i8* null, i8* null, i32 64 )
/external/autotest/server/site_tests/sequences/
Dcontrol.memory_qual_quick23 'tag': 'quick', 'test': 'bcopy', 'warmup': 10, 'num_iterations': 5,
Dcontrol.memory_qual25 'tag': 'memory_qual', 'test': 'bcopy', 'warmup': 100,
/external/kernel-headers/original/uapi/linux/
Dmroute6.h62 #define IF_COPY(f, t) bcopy(f, t, sizeof(*(f)))
/external/llvm/test/Transforms/InstCombine/
D2003-07-21-ExternalConstant.ll21 declare void @bcopy(i8*, i8*, i32)
/external/e2fsprogs/e2fsck/
Dmtrace.h88 #define memcpy(d, s, n) bcopy ((s), (d), (n))
/external/openssh/openbsd-compat/
Dport-tun.c220 bcopy(buf, ptr + sizeof(u_int32_t), len); in sys_tun_infilter()

123