/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | clang-analyzer-security.insecureAPI.bcopy.rst | 1 .. title:: clang-tidy - clang-analyzer-security.insecureAPI.bcopy 3 …-equiv=refresh: 5;URL=https://clang.llvm.org/docs/analyzer/checkers.html#security-insecureapi-bcopy 5 clang-analyzer-security.insecureAPI.bcopy 8 The clang-analyzer-security.insecureAPI.bcopy check is an alias, please see 9 …vailable Checkers <https://clang.llvm.org/docs/analyzer/checkers.html#security-insecureapi-bcopy>`_
|
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
D | rijndael-api-fst.c | 35 #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/llvm-project/llvm/test/Transforms/InstCombine/ |
D | bcopy.ll | 4 declare void @bcopy(i8* nocapture readonly, i8* nocapture, i32) 14 tail call void @bcopy(i8* %a, i8* %b, i32 8) 23 tail call void @bcopy(i8* %a, i8* %b, i32 %len)
|
/external/clang/test/Analysis/ |
D | bstring.c | 438 #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()
|
D | taint-generic.c | 30 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/llvm-project/clang/test/Analysis/ |
D | bstring.c | 481 #define bcopy BUILTIN(bcopy) macro 483 void bcopy(/*const*/ void *s1, void *s2, size_t n); 490 bcopy(src, dst, 4); // no-warning in bcopy0() 501 bcopy(src, dst, 5); // expected-warning{{out-of-bound}} in bcopy1() 508 bcopy(src, dst, 4); // expected-warning{{overflow}} in bcopy2()
|
/external/ipsec-tools/src/racoon/missing/crypto/sha2/ |
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); 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/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | regutils.h | 55 #define memmove(d, s, c) bcopy(s, d, c)
|
/external/llvm/lib/Support/ |
D | regutils.h | 55 #define memmove(d, s, c) bcopy(s, d, c)
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | regutils.h | 55 #define memmove(d, s, c) bcopy(s, d, c)
|
/external/llvm-project/llvm/lib/Support/ |
D | regutils.h | 55 #define memmove(d, s, c) bcopy(s, d, c)
|
/external/libpcap/lbl/ |
D | os-ultrix4.h | 24 void bcopy(const void *, void *, u_int);
|
/external/tcpdump/lbl/ |
D | os-ultrix4.h | 24 void bcopy(const void *, void *, u_int);
|
/external/libcups/vcnet/regex/ |
D | utils.h | 21 #define memmove(d, s, c) bcopy(s, d, c)
|
/external/llvm-project/llvm/test/Transforms/IndVarSimplify/ |
D | casted-argument.ll | 21 tail call void @bcopy(i8* %ge) nounwind 48 declare void @bcopy(i8* nocapture) nounwind
|
/external/llvm/test/Transforms/IndVarSimplify/ |
D | casted-argument.ll | 21 tail call void @bcopy(i8* %ge) nounwind 48 declare void @bcopy(i8* nocapture) nounwind
|
/external/libjpeg-turbo/ |
D | jinclude.h | 67 bcopy((const void *)(src), (void *)(dest), (size_t)(size))
|
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_create/ |
D | rpc_clntudp_create.c | 69 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length); in main()
|
D | rpc_clntudp_create_stress.c | 73 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length); in main()
|
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntudp_bufcreate/ |
D | rpc_clntudp_bufcreate.c | 69 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length); in main()
|
D | rpc_clntudp_bufcreate_limits.c | 80 bcopy(hp->h_addr, (caddr_t) & server_addr.sin_addr, hp->h_length); in main()
|
/external/autotest/client/site_tests/hardware_MemoryThroughput/ |
D | control.copy_2thread_full_range | 20 job.run_test('hardware_MemoryThroughput', test='bcopy', warmup=100,
|
D | control.memory_qual | 21 tag='memory_qual', test='bcopy', warmup=100,
|
D | control.cache_copy_1thread | 20 job.run_test('hardware_MemoryThroughput', test='bcopy', warmup=100,
|
D | control.copy_1thread_full_range | 20 job.run_test('hardware_MemoryThroughput', test='bcopy', warmup=100,
|