Searched refs:buff2 (Results 1 – 9 of 9) sorted by relevance
/external/compiler-rt/test/asan/TestCases/Windows/ |
D | dll_intercept_memcpy.cc | 14 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()
|
D | intercept_memcpy.cc | 13 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()
|
D | dll_intercept_memcpy_indirect.cc | 15 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/ |
D | telnetd.c | 60 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/ |
D | roundTripTest.c | 61 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()
|
D | frametest.c | 739 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()
|
D | fuzzer.c | 294 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/ |
D | pcre2grep.c | 3710 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/ |
D | xmlreader.c | 1708 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()
|