Searched refs:size1 (Results 1 - 11 of 11) sorted by relevance

/external/e2fsprogs/intl/
H A Dxsize.h57 xsum (size_t size1, size_t size2) argument
59 size_t sum = size1 + size2;
60 return (sum >= size1 ? sum : SIZE_MAX);
68 xsum3 (size_t size1, size_t size2, size_t size3) argument
70 return xsum (xsum (size1, size2), size3);
78 xsum4 (size_t size1, size_t size2, size_t size3, size_t size4) argument
80 return xsum (xsum (xsum (size1, size2), size3), size4);
88 xmax (size_t size1, size_t size2) argument
92 return (size1 >= size2 ? size1
[all...]
/external/stlport/test/unit/
H A Dcollate_facets_test.cpp24 const size_t size1 = sizeof(str1) / sizeof(str1[0]) - 1; local
27 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 1) == 0 );
28 CPPUNIT_ASSERT( col.compare(str1, str1 + size1, str2, str2 + size2) == -1 );
31 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 2, str2, str2 + size2 - 1) == -1 );
32 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 2) == 1 );
44 const size_t size1 = sizeof(str1) / sizeof(str1[0]) - 1; local
47 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 1, str2, str2 + size2 - 1) == 0 );
48 CPPUNIT_ASSERT( col.compare(str1, str1 + size1, str2, str2 + size2) == -1 );
51 CPPUNIT_ASSERT( col.compare(str1, str1 + size1 - 2, str2, str2 + size2 - 1) == -1 );
52 CPPUNIT_ASSERT( col.compare(str1, str1 + size1
91 const size_t size1 = sizeof(str1) / sizeof(str1[0]) - 1; local
218 const size_t size1 = sizeof(str1) / sizeof(str1[0]) - 1; local
[all...]
/external/skia/tests/
H A DMatrixTest.cpp33 uint32_t size1 = m.flatten(NULL); local
35 REPORTER_ASSERT(reporter, size1 == size2);
36 REPORTER_ASSERT(reporter, size1 <= SkMatrix::kMaxFlattenSize);
40 REPORTER_ASSERT(reporter, size1 == size2);
45 REPORTER_ASSERT(reporter, size1 == size2);
46 REPORTER_ASSERT(reporter, memcmp(buffer, buffer2, size1) == 0);
/external/opencore/oscl/oscl/osclbase/src/
H A Doscl_mem_basic_functions.inl43 OSCL_INLINE OSCL_COND_EXPORT_REF void* _oscl_calloc(int32 size1, int32 size2)
45 return calloc(size1, size2);
/external/qemu/distrib/sdl-1.2.12/src/video/photon/
H A DSDL_ph_mouse.c76 cursor->ph_cursor->size1.x = (short)w;
77 cursor->ph_cursor->size1.y = (short)h;
/external/clearsilver/util/regex/
H A Dregex.c307 /* True if `size1' is non-NULL and PTR is pointing anywhere inside
311 (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)
871 print_double_string (where, string1, size1, string2, size2)
875 int size1;
886 for (this_char = where - string1; this_char < size1; this_char++)
1216 DEBUG_PRINT_DOUBLE_STRING (string_place, string1, size1, string2, \
1263 `pend', `string1', `size1', `string2', and `size2'. */
1291 DEBUG_PRINT_DOUBLE_STRING (str, string1, size1, string2, size2); \
3299 re_search_2 (bufp, string1, size1, string
[all...]
/external/stlport/src/c_locale_win32/
H A Dc_wlocale_win32.c202 DWORD size1 = trim_size_t_to_DWORD(n1); local
204 result = CompareStringW(lcol->lc.id, 0, s1, size1, s2, size2);
207 n1 -= size1;
H A Dc_locale_win32.c1092 DWORD size1 = trim_size_t_to_DWORD(n1); local
1094 result = CompareStringA(lcol->lc.id, 0, s1, size1, s2, size2);
1097 n1 -= size1;
1112 size_t size1, size2; local
1113 buf1 = __ConvertToCP(atoi(lcol->cp), __GetDefaultCP(lcol->lc.id), s1, n1, &size1);
1116 result = _Locale_strcmp_auxA(lcol, buf1, size1, buf2, size2);
/external/icu4c/tools/dumpce/
H A Ddumpce.cpp753 int size1 = ((ScriptElement *)elem1)->count; local
758 int result = ucol_strcoll(COLLATOR_, ch1, size1, ch2, size2);
761 result = ucol_strcoll(COLLATOR_, ch1, size1, ch2, size2);
764 result = ucol_strcoll(COLLATOR_, ch1, size1, ch2, size2);
/external/qemu/
H A Dsavevm.c503 int qemu_get_buffer(QEMUFile *f, uint8_t *buf, int size1) argument
510 size = size1;
526 return size1 - size;
/external/gtest/test/
H A Dgtest_unittest.cc4466 static void AssertStringArrayEq(size_t size1, CharType** array1, argument
4468 ASSERT_EQ(size1, size2) << " Array sizes different.";
4470 for (size_t i = 0; i != size1; i++) {

Completed in 117 milliseconds