/external/compiler-rt/test/asan/TestCases/Windows/ |
D | dll_intercept_memcpy.cc | 14 char buff1[6] = "Hello", buff2[5]; in test_function() local 16 memcpy(buff2, buff1, 5); in test_function() 17 if (buff1[2] != buff2[2]) in test_function() 23 memcpy(buff2, buff1, 6); in test_function()
|
D | intercept_memcpy.cc | 13 char buff1[6] = "Hello", buff2[5]; in main() local 15 call_memcpy(&memcpy, buff2, buff1, 5); in main() 16 if (buff1[2] != buff2[2]) in main() 22 call_memcpy(&memcpy, buff2, buff1, 6); in main()
|
D | dll_intercept_memcpy_indirect.cc | 15 char buff1[6] = "Hello", buff2[5]; in test_function() local 17 call_memcpy(&memcpy, buff2, buff1, 5); in test_function() 18 if (buff1[2] != buff2[2]) in test_function() 24 call_memcpy(&memcpy, buff2, buff1, 6); in test_function()
|
/external/lz4/tests/ |
D | roundTripTest.c | 61 static size_t checkBuffers(const void* buff1, const void* buff2, size_t buffSize) in checkBuffers() argument 63 const char* const ip1 = (const char*)buff1; in checkBuffers()
|
D | frametest.c | 739 static void locateBuffDiff(const void* buff1, const void* buff2, size_t size, unsigned nonContiguou… in locateBuffDiff() argument 742 const BYTE* b1=(const BYTE*)buff1; in locateBuffDiff()
|
D | fuzzer.c | 294 static void FUZ_findDiff(const void* buff1, const void* buff2) in FUZ_findDiff() argument 296 const BYTE* const b1 = (const BYTE*)buff1; in FUZ_findDiff()
|
/external/toybox/toys/pending/ |
D | telnetd.c | 60 char buff1[BUFSIZE], buff2[BUFSIZE]; member 385 if ((c = read(tm->pty_fd, tm->buff1 + tm->buff1_avail, in telnetd_main() 388 if ((w = dup_iacs(tm->buff1 + tm->buff1_written, tm->new_fd + inetd_m, in telnetd_main() 407 if ((w = dup_iacs(tm->buff1 + tm->buff1_written, tm->new_fd + inetd_m, in telnetd_main()
|
/external/curl/lib/vtls/ |
D | gtls.c | 954 unsigned char *buff1 = NULL; in pkp_pin_peer_pubkey() local 981 buff1 = malloc(len1); in pkp_pin_peer_pubkey() 982 if(NULL == buff1) in pkp_pin_peer_pubkey() 987 ret = gnutls_pubkey_export(key, GNUTLS_X509_FMT_DER, buff1, &len2); in pkp_pin_peer_pubkey() 994 result = Curl_pin_peer_pubkey(data, pinnedpubkey, buff1, len1); in pkp_pin_peer_pubkey() 1000 Curl_safefree(buff1); in pkp_pin_peer_pubkey()
|
D | openssl.c | 3259 unsigned char *buff1 = NULL, *temp = NULL; in pkp_pin_peer_pubkey() local 3282 buff1 = temp = malloc(len1); in pkp_pin_peer_pubkey() 3283 if(!buff1) in pkp_pin_peer_pubkey() 3294 if((len1 != len2) || !temp || ((temp - buff1) != len1)) in pkp_pin_peer_pubkey() 3300 result = Curl_pin_peer_pubkey(data, pinnedpubkey, buff1, len1); in pkp_pin_peer_pubkey() 3304 if(buff1) in pkp_pin_peer_pubkey() 3305 free(buff1); in pkp_pin_peer_pubkey()
|
/external/pcre/dist2/src/ |
D | pcre2grep.c | 3709 char buff1[24]; in main() local 3718 if ((ret = snprintf(buff1, sizeof(buff1), "%.*s", baselen, op->long_name), in main() 3719 ret < 0 || ret > (int)sizeof(buff1)) || in main() 3720 (ret = snprintf(buff2, sizeof(buff2), "%s%.*s", buff1, in main() 3729 if (strncmp(arg, buff1, arglen) == 0 || in main()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
D | ULocaleTest.java | 827 String buff, buff1; in TestObsoleteNames() local 838 buff1 = uloc.getISO3Language(); in TestObsoleteNames() 839 if(buff1.compareTo(tests[i][1])!=0){ in TestObsoleteNames() 862 buff1 = uloc.getISO3Country(); in TestObsoleteNames() 863 if(buff1.compareTo(tests[i][3])!=0){ in TestObsoleteNames()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
D | ULocaleTest.java | 824 String buff, buff1; in TestObsoleteNames() local 835 buff1 = uloc.getISO3Language(); in TestObsoleteNames() 836 if(buff1.compareTo(tests[i][1])!=0){ in TestObsoleteNames() 859 buff1 = uloc.getISO3Country(); in TestObsoleteNames() 860 if(buff1.compareTo(tests[i][3])!=0){ in TestObsoleteNames()
|