Home
last modified time | relevance | path

Searched refs:buff2 (Results 1 – 9 of 9) 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/lz4/tests/
DroundTripTest.c61 static size_t checkBuffers(const void* buff1, const void* buff2, size_t buffSize) in checkBuffers() argument
64 const char* const ip2 = (const char*)buff2; in checkBuffers()
Dframetest.c739 static void locateBuffDiff(const void* buff1, const void* buff2, size_t size, unsigned nonContiguou… in locateBuffDiff() argument
743 const BYTE* b2=(const BYTE*)buff2; in locateBuffDiff()
Dfuzzer.c294 static void FUZ_findDiff(const void* buff1, const void* buff2) in FUZ_findDiff() argument
297 const BYTE* const b2 = (const BYTE*)buff2; in FUZ_findDiff()
/external/pcre/dist2/src/
Dpcre2grep.c3710 char buff2[24]; in main() local
3720 (ret = snprintf(buff2, sizeof(buff2), "%s%.*s", buff1, in main()
3722 ret < 0 || ret > (int)sizeof(buff2))) in main()
3730 strncmp(arg, buff2, arglen) == 0) in main()
/external/libxml2/
Dxmlreader.c1708 xmlBufferPtr buff, buff2; in xmlTextReaderReadInnerXml() local
1720 buff2 = xmlBufferCreate(); in xmlTextReaderReadInnerXml()
1721 if (xmlNodeDump(buff2, doc, node, 0, 0) == -1) { in xmlTextReaderReadInnerXml()
1723 xmlBufferFree(buff2); in xmlTextReaderReadInnerXml()
1727 xmlBufferCat(buff, buff2->content); in xmlTextReaderReadInnerXml()
1729 xmlBufferFree(buff2); in xmlTextReaderReadInnerXml()