Searched defs:buff2 (Results 1 - 9 of 9) 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);
30 // CHECK: 'buff2' <== Memory access at offset {{.*}} overflows this variable
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);
32 // CHECK: 'buff2' <== Memory access at offset {{.*}} overflows this variable
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);
30 // CHECK: 'buff2' <== Memory access at offset {{.*}} overflows this variable
/external/toybox/toys/pending/
H A Dtelnetd.c60 char buff1[BUFSIZE], buff2[BUFSIZE]; member in struct:term_session
214 curr = start = tm->buff2+tm->buff2_avail;
215 end = tm->buff2 + c -1;
393 if ((c = read(tm->new_fd, tm->buff2+tm->buff2_avail,
397 if ((w = write(tm->pty_fd, tm->buff2+ tm->buff2_written,
402 if ((w = write(tm->pty_fd, tm->buff2 + tm->buff2_written,
/external/lz4/tests/
H A Dframetest.c545 static void locateBuffDiff(const void* buff1, const void* buff2, size_t size, unsigned nonContiguous) argument
549 const BYTE* b2=(const BYTE*)buff2;
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
250 const BYTE* const b2 = (const BYTE*)buff2;
/external/boringssl/src/crypto/x509/
H A Dx509_vfy.c1843 char buff1[24], buff2[24], *p; local
1932 atm.length = sizeof(buff2);
1933 atm.data = (unsigned char *)buff2;
1942 j = (buff2[0] - '0') * 10 + (buff2[1] - '0');
1951 i = strcmp(buff1, buff2);
/external/libxml2/
H A Dxmlreader.c1703 xmlBufferPtr buff, buff2; local
1714 buff2 = xmlBufferCreate();
1715 if (xmlNodeDump(buff2, doc, node, 0, 0) == -1) {
1717 xmlBufferFree(buff2);
1721 xmlBufferCat(buff, buff2->content);
1723 xmlBufferFree(buff2);
/external/pcre/dist2/src/
H A Dpcre2grep.c3049 char buff2[24]; local
3057 sprintf(buff2, "%s%.*s", buff1, fulllen - baselen - 2, opbra + 1);
3060 strncmp(arg, buff2, arglen) == 0)

Completed in 276 milliseconds