Searched refs:buff2 (Results 1 - 8 of 8) 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/boringssl/src/crypto/x509/
H A Dx509_vfy.c1836 char buff1[24],buff2[24],*p; local
1927 atm.length=sizeof(buff2);
1928 atm.data=(unsigned char *)buff2;
1937 j=(buff2[0]-'0')*10+(buff2[1]-'0');
1943 i=strcmp(buff1,buff2);
/external/lz4/programs/
H A Dframetest.c362 static void locateBuffDiff(const void* buff1, const void* buff2, size_t size, unsigned nonContiguous) argument
366 BYTE* b2=(BYTE*)buff2;
/external/pcre/dist/
H A Dpcregrep.c2735 char buff2[24]; local
2743 sprintf(buff2, "%s%.*s", buff1, fulllen - baselen - 2, opbra + 1);
2746 strncmp(arg, buff2, arglen) == 0)
/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);

Completed in 358 milliseconds