Home
last modified time | relevance | path

Searched refs:buff1 (Results 1 – 11 of 11) sorted by relevance

/external/compiler-rt/test/asan/TestCases/Windows/
Ddll_intercept_memcpy.cc14 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()
Dintercept_memcpy.cc13 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()
Ddll_intercept_memcpy_indirect.cc15 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/toybox/toys/pending/
Dtelnetd.c60 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/
Dgtls.c774 unsigned char *buff1 = NULL; in pkp_pin_peer_pubkey() local
801 buff1 = malloc(len1); in pkp_pin_peer_pubkey()
802 if(NULL == buff1) in pkp_pin_peer_pubkey()
807 ret = gnutls_pubkey_export(key, GNUTLS_X509_FMT_DER, buff1, &len2); in pkp_pin_peer_pubkey()
814 result = Curl_pin_peer_pubkey(data, pinnedpubkey, buff1, len1); in pkp_pin_peer_pubkey()
820 Curl_safefree(buff1); in pkp_pin_peer_pubkey()
Dopenssl.c2609 unsigned char *buff1 = NULL, *temp = NULL; in pkp_pin_peer_pubkey() local
2632 buff1 = temp = OPENSSL_malloc(len1); in pkp_pin_peer_pubkey()
2633 if(!buff1) in pkp_pin_peer_pubkey()
2644 if((len1 != len2) || !temp || ((temp - buff1) != len1)) in pkp_pin_peer_pubkey()
2650 result = Curl_pin_peer_pubkey(data, pinnedpubkey, buff1, len1); in pkp_pin_peer_pubkey()
2654 if(buff1) in pkp_pin_peer_pubkey()
2655 OPENSSL_free(buff1); in pkp_pin_peer_pubkey()
/external/lz4/programs/
Dframetest.c362 static void locateBuffDiff(const void* buff1, const void* buff2, size_t size, unsigned nonContiguou… in locateBuffDiff() argument
365 BYTE* b1=(BYTE*)buff1; in locateBuffDiff()
/external/boringssl/src/crypto/x509/
Dx509_vfy.c1836 char buff1[24],buff2[24],*p; in X509_cmp_time() local
1839 p=buff1; in X509_cmp_time()
1935 i=(buff1[0]-'0')*10+(buff1[1]-'0'); in X509_cmp_time()
1943 i=strcmp(buff1,buff2); in X509_cmp_time()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DULocaleTest.java791 String buff, buff1; in TestObsoleteNames() local
802 buff1 = uloc.getISO3Language(); in TestObsoleteNames()
803 if(buff1.compareTo(tests[i][1])!=0){ in TestObsoleteNames()
826 buff1 = uloc.getISO3Country(); in TestObsoleteNames()
827 if(buff1.compareTo(tests[i][3])!=0){ in TestObsoleteNames()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DULocaleTest.java787 String buff, buff1; in TestObsoleteNames() local
798 buff1 = uloc.getISO3Language(); in TestObsoleteNames()
799 if(buff1.compareTo(tests[i][1])!=0){ in TestObsoleteNames()
822 buff1 = uloc.getISO3Country(); in TestObsoleteNames()
823 if(buff1.compareTo(tests[i][3])!=0){ in TestObsoleteNames()
/external/pcre/dist/
Dpcregrep.c2734 char buff1[24]; in main() local
2742 sprintf(buff1, "%.*s", baselen, op->long_name); in main()
2743 sprintf(buff2, "%s%.*s", buff1, fulllen - baselen - 2, opbra + 1); in main()
2745 if (strncmp(arg, buff1, arglen) == 0 || in main()