Home
last modified time | relevance | path

Searched refs:buf2 (Results 1 – 22 of 22) sorted by relevance

/ndk/sources/host-tools/toolbox/
Dcmp_win.c69 char buf1[BUFSIZE], buf2[BUFSIZE]; in main() local
73 n2 = fread(buf2, 1, BUFSIZE, f2); in main()
74 ret = (n1 != n2) || memcmp(buf1, buf2, n1) != 0; in main()
/ndk/tests/device/test-stlport/unit/
Dcstring_test.cpp45 char buf1[1], buf2[1]; in import_checks() local
46 CPPUNIT_CHECK( std::memcpy(buf1, buf2, 0) != NULL ); in import_checks()
47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL ); in import_checks()
Ddeque_test.cpp207 char buf2[1024]; in allocator_with_state() local
208 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dhash_test.cpp383 char buf2[2048]; in allocator_with_state() local
384 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dlist_test.cpp277 char buf2[1024]; in allocator_with_state() local
278 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dvector_test.cpp378 char buf2[1024]; in allocator_with_state() local
379 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dmap_test.cpp272 char buf2[1024]; in allocator_with_state() local
273 StackAllocator<pair<const int, int> > stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dset_test.cpp281 char buf2[1024]; in allocator_with_state() local
282 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dslist_test.cpp336 char buf2[1024]; in allocator_with_state() local
337 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dstring_test.cpp1307 char buf2[1024]; in allocator_with_state() local
1308 StackAllocator<char> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
/ndk/tests/device/test-gnustl-full/unit/
Dcstring_test.cpp45 char buf1[1], buf2[1]; in import_checks() local
46 CPPUNIT_CHECK( std::memcpy(buf1, buf2, 0) != NULL ); in import_checks()
47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL ); in import_checks()
Ddeque_test.cpp207 char buf2[1024]; in allocator_with_state() local
208 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dhash_test.cpp383 char buf2[2048]; in allocator_with_state() local
384 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dlist_test.cpp277 char buf2[1024]; in allocator_with_state() local
278 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dvector_test.cpp378 char buf2[1024]; in allocator_with_state() local
379 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dmap_test.cpp272 char buf2[1024]; in allocator_with_state() local
273 StackAllocator<pair<const int, int> > stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dset_test.cpp281 char buf2[1024]; in allocator_with_state() local
282 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dslist_test.cpp336 char buf2[1024]; in allocator_with_state() local
337 StackAllocator<int> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
Dstring_test.cpp1307 char buf2[1024]; in allocator_with_state() local
1308 StackAllocator<char> stack2(buf2, buf2 + sizeof(buf2)); in allocator_with_state()
/ndk/sources/cxx-stl/stlport/src/c_locale_dummy/
Dc_locale_dummy.c274 char buf1[64], buf2[64]; in _Locale_strcmp() local
279 _STLP_STRNCPY(buf2, 64, s2, bufsize2); buf2[bufsize2] = 0; in _Locale_strcmp()
281 ret = strcmp(buf1, buf2); in _Locale_strcmp()
294 wchar_t buf1[64], buf2[64]; in _WLocale_strcmp() local
299 _STLP_WCSNCPY(buf2, 64, s2, bufsize2); buf2[bufsize2] = 0; in _WLocale_strcmp()
301 ret = wcscmp(buf1, buf2); in _WLocale_strcmp()
/ndk/sources/cxx-stl/stlport/src/c_locale_glibc/
Dc_locale_glibc2.c366 char buf1[64], buf2[64]; in _Locale_strcmp() local
371 strncpy(buf2, s2, bufsize2); buf2[bufsize2] = 0; in _Locale_strcmp()
373 ret = strcoll_l(buf1, buf2, (locale_t)__loc); in _Locale_strcmp()
386 wchar_t buf1[64], buf2[64]; in _WLocale_strcmp() local
391 wcsncpy(buf2, s2, bufsize2); buf2[bufsize2] = 0; in _WLocale_strcmp()
393 ret = wcscoll_l(buf1, buf2, (locale_t)__loc); in _WLocale_strcmp()
/ndk/sources/cxx-stl/stlport/src/c_locale_win32/
Dc_locale_win32.c1111 char *buf1, *buf2; in _Locale_strcmp() local
1114 buf2 = __ConvertToCP(atoi(lcol->cp), __GetDefaultCP(lcol->lc.id), s2, n2, &size2); in _Locale_strcmp()
1116 result = _Locale_strcmp_auxA(lcol, buf1, size1, buf2, size2); in _Locale_strcmp()
1117 free(buf1); free(buf2); in _Locale_strcmp()