Home
last modified time | relevance | path

Searched refs:buff2 (Results 1 – 8 of 8) 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
214 curr = start = tm->buff2+tm->buff2_avail; in handle_iacs()
215 end = tm->buff2 + c -1; in handle_iacs()
393 if ((c = read(tm->new_fd, tm->buff2+tm->buff2_avail, in telnetd_main()
397 if ((w = write(tm->pty_fd, tm->buff2+ tm->buff2_written, in telnetd_main()
402 if ((w = write(tm->pty_fd, tm->buff2 + tm->buff2_written, in telnetd_main()
/external/boringssl/src/crypto/x509/
Dx509_vfy.c1836 char buff1[24],buff2[24],*p; in X509_cmp_time() local
1927 atm.length=sizeof(buff2); in X509_cmp_time()
1928 atm.data=(unsigned char *)buff2; in X509_cmp_time()
1937 j=(buff2[0]-'0')*10+(buff2[1]-'0'); in X509_cmp_time()
1943 i=strcmp(buff1,buff2); in X509_cmp_time()
/external/lz4/programs/
Dframetest.c362 static void locateBuffDiff(const void* buff1, const void* buff2, size_t size, unsigned nonContiguou… in locateBuffDiff() argument
366 BYTE* b2=(BYTE*)buff2; in locateBuffDiff()
/external/pcre/dist/
Dpcregrep.c2735 char buff2[24]; in main() local
2743 sprintf(buff2, "%s%.*s", buff1, fulllen - baselen - 2, opbra + 1); in main()
2746 strncmp(arg, buff2, arglen) == 0) in main()
/external/libxml2/
Dxmlreader.c1703 xmlBufferPtr buff, buff2; in xmlTextReaderReadInnerXml() local
1714 buff2 = xmlBufferCreate(); in xmlTextReaderReadInnerXml()
1715 if (xmlNodeDump(buff2, doc, node, 0, 0) == -1) { in xmlTextReaderReadInnerXml()
1717 xmlBufferFree(buff2); in xmlTextReaderReadInnerXml()
1721 xmlBufferCat(buff, buff2->content); in xmlTextReaderReadInnerXml()
1723 xmlBufferFree(buff2); in xmlTextReaderReadInnerXml()