Searched defs:buff1 (Results 1 - 12 of 12) sorted by relevance

/external/compiler-rt/test/asan/TestCases/Windows/
H A Ddll_intercept_memcpy.cc14 char buff1[6] = "Hello", buff2[5]; local
16 memcpy(buff2, buff1, 5);
17 if (buff1[2] != buff2[2])
23 memcpy(buff2, buff1, 6);
H A Ddll_intercept_memcpy_indirect.cc15 char buff1[6] = "Hello", buff2[5]; local
17 call_memcpy(&memcpy, buff2, buff1, 5);
18 if (buff1[2] != buff2[2])
24 call_memcpy(&memcpy, buff2, buff1, 6);
H A Dintercept_memcpy.cc13 char buff1[6] = "Hello", buff2[5]; local
15 call_memcpy(&memcpy, buff2, buff1, 5);
16 if (buff1[2] != buff2[2])
22 call_memcpy(&memcpy, buff2, buff1, 6);
/external/ltp/tools/netpipe-2.4/
H A Dnetpipe.h65 char *buff1; /* Transmitted buffer */ member in struct:argstruct
/external/ltp/tools/netpipe-2.4-ipv6/
H A Dnetpipe.h67 char *buff1; /* Transmitted buffer */ member in struct:argstruct
/external/toybox/toys/pending/
H A Dtelnetd.c60 char buff1[BUFSIZE], buff2[BUFSIZE]; member in struct:term_session
385 if ((c = read(tm->pty_fd, tm->buff1 + tm->buff1_avail,
388 if ((w = dup_iacs(tm->buff1 + tm->buff1_written, tm->new_fd + inetd_m,
407 if ((w = dup_iacs(tm->buff1 + tm->buff1_written, tm->new_fd + inetd_m,
/external/curl/lib/vtls/
H A Dgtls.c774 unsigned char *buff1 = NULL; local
801 buff1 = malloc(len1);
802 if(NULL == buff1)
807 ret = gnutls_pubkey_export(key, GNUTLS_X509_FMT_DER, buff1, &len2);
814 result = Curl_pin_peer_pubkey(data, pinnedpubkey, buff1, len1);
820 Curl_safefree(buff1);
H A Dopenssl.c2609 unsigned char *buff1 = NULL, *temp = NULL; local
2632 buff1 = temp = OPENSSL_malloc(len1);
2633 if(!buff1)
2644 if((len1 != len2) || !temp || ((temp - buff1) != len1))
2650 result = Curl_pin_peer_pubkey(data, pinnedpubkey, buff1, len1);
2654 if(buff1)
2655 OPENSSL_free(buff1);
/external/lz4/tests/
H A Dframetest.c545 static void locateBuffDiff(const void* buff1, const void* buff2, size_t size, unsigned nonContiguous) argument
548 const BYTE* b1=(const BYTE*)buff1;
H A Dfuzzer.c242 * find the first different byte between buff1 and buff2.
243 * presumes buff1 != buff2.
247 static void FUZ_findDiff(const void* buff1, const void* buff2) argument
249 const BYTE* const b1 = (const BYTE*)buff1;
/external/boringssl/src/crypto/x509/
H A Dx509_vfy.c1849 char buff1[24], buff2[24], *p; local
1852 p = buff1;
1945 i = (buff1[0] - '0') * 10 + (buff1[1] - '0');
1957 i = strcmp(buff1, buff2);
/external/pcre/dist2/src/
H A Dpcre2grep.c3048 char buff1[24]; local
3056 sprintf(buff1, "%.*s", baselen, op->long_name);
3057 sprintf(buff2, "%s%.*s", buff1, fulllen - baselen - 2, opbra + 1);
3059 if (strncmp(arg, buff1, arglen) == 0 ||

Completed in 399 milliseconds