Searched refs:size2 (Results 1 - 25 of 92) sorted by last modified time

1234

/external/zopfli/src/zopfli/
H A Dlz77.c61 size_t size2 = store->size; /* Needed for using ZOPFLI_APPEND_DATA twice. */ local
63 ZOPFLI_APPEND_DATA(dist, &store->dists, &size2);
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-linux.c6719 UInt dir2, size2; local
6722 size2 = _VKI_IOC_SIZE(vkui->ioctl_code);
6723 if (size2 > 0) {
6725 PRE_MEM_READ("ioctl(USBDEVFS_IOCTL).dataWrite", (Addr)vkui->data, size2);
6727 PRE_MEM_WRITE("ioctl(USBDEVFS_IOCTL).dataRead", (Addr)vkui->data, size2);
7888 UInt dir2, size2; local
7890 size2 = _VKI_IOC_SIZE(vkui->ioctl_code);
7891 if (size2 > 0) {
7893 POST_MEM_WRITE((Addr)vkui->data, size2);
/external/valgrind/main/drd/tests/
H A Dcustom_alloc.c30 int size2 = size + RZ*2; local
33 if (hp + size2 > hp_lim) {
39 hp += size2;
/external/valgrind/main/massif/tests/
H A Dcustom_alloc.c30 int size2 = size + RZ*2; local
33 if (hp + size2 > hp_lim) {
39 hp += size2;
/external/valgrind/main/memcheck/tests/
H A Dcustom_alloc.c36 int size2 = size + RZ*2; local
39 if (hp + size2 > hp_lim) {
45 hp += size2;
/external/stlport/src/c_locale_win32/
H A Dc_locale_win32.c1093 DWORD size2 = trim_size_t_to_DWORD(n2); local
1094 result = CompareStringA(lcol->lc.id, 0, s1, size1, s2, size2);
1098 n2 -= size2;
1112 size_t size1, size2; local
1114 buf2 = __ConvertToCP(atoi(lcol->cp), __GetDefaultCP(lcol->lc.id), s2, n2, &size2);
1116 result = _Locale_strcmp_auxA(lcol, buf1, size1, buf2, size2);
H A Dc_wlocale_win32.c203 DWORD size2 = trim_size_t_to_DWORD(n2); local
204 result = CompareStringW(lcol->lc.id, 0, s1, size1, s2, size2);
208 n2 -= size2;
/external/stlport/test/unit/
H A Dcollate_facets_test.cpp25 const size_t size2 = sizeof(str2) / sizeof(str2[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 );
45 const size_t size2 = sizeof(str2) / sizeof(str2[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 - 1, str2, str2 + size2
92 const size_t size2 = sizeof(str2) / sizeof(str2[0]) - 1; local
219 const size_t size2 = sizeof(str2) / sizeof(str2[0]) - 1; local
[all...]
/external/svox/pico/lib/
H A Dpicoos.c358 picoos_objsize_t size2; local
397 size2 = (picoos_objsize_t) &test_cell.leftCell - (picoos_objsize_t)
399 if (size2 > this->usedCellHdrSize) {
400 this->usedCellHdrSize = size2;
/external/srec/srec/cfront/
H A Dsp_fft.c824 fft->size2 = size;
834 unsigned n = fft->size2;
852 int ii, size2; local
860 ASSERT(num <= (int)fft->size2);
861 size2 = fft->size2;
868 for (; ii < size2; ii++)
/external/srec/srec/clib/
H A Dvoc_read.c277 size_t size2 = 0; local
310 size2 = get_zipentry_size(ze);
311 buf2 = mmap(0, inflateSize(size2), PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0);
315 if (decompress_zipentry(ze, buf2, size2)) goto FAILED;
326 *size = size2;
333 if (buf2) munmap(buf2, inflateSize(size2));
/external/srec/srec/include/
H A Dsp_fft.h224 asr_uint32_t size2; member in struct:__anon31149
/external/skia/samplecode/
H A DSampleRegion.cpp278 SkDEBUGCODE(size_t size2 = ) tmp.writeToMemory(buffer);
279 SkASSERT(size == size2);
282 SkDEBUGCODE(size2 = ) tmp3.readFromMemory(buffer, 1000);
283 SkASSERT(size == size2);
/external/skia/src/ports/
H A DSkFontConfigInterface_direct.cpp84 size_t size2 = iden1.readFromMemory(storage.get(), size1); local
85 SkASSERT(size2 == size1);
/external/skia/tests/
H A DFontHostTest.cpp205 size_t size2 = face->getTableData(tags[i], 0, size, data.get()); local
206 REPORTER_ASSERT(reporter, size2 == size);
H A DMatrixTest.cpp107 size_t size2 = m.writeToMemory(buffer); local
108 REPORTER_ASSERT(reporter, size1 == size2);
H A DPathTest.cpp1960 size_t size2 = p.writeToMemory(buffer); local
1961 REPORTER_ASSERT(reporter, size1 == size2);
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/qemu/android/
H A Dcharpipe.c182 int size2 = qemu_chr_can_read(peer->cs); local
184 if (size2 == 0)
187 if (size > size2)
188 size = size2;
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_ph_mouse.c82 cursor->ph_cursor->size2.x = (short)w;
83 cursor->ph_cursor->size2.y = (short)h;
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.cc695 size = 2; goto size2;
737 size2 : target[1] = static_cast<uint8>((part0 >> 7) | 0x80);
/external/proguard/src/proguard/util/
H A DArrayUtil.java196 * @param size2 the size of the second array.
203 byte[] array2, int size2)
205 int minSize = Math.min(size1, size2);
219 return size1 < size2 ? -1 :
220 size1 == size2 ? 0 :
230 * @param size2 the size of the second array.
237 short[] array2, int size2)
239 int minSize = Math.min(size1, size2);
253 return size1 < size2 ? -1 :
254 size1 == size2
202 compare(byte[] array1, int size1, byte[] array2, int size2) argument
236 compare(short[] array1, int size1, short[] array2, int size2) argument
270 compare(int[] array1, int size1, int[] array2, int size2) argument
304 compare(Comparable[] array1, int size1, Comparable[] array2, int size2) argument
[all...]
/external/protobuf/gtest/test/
H A Dgtest_unittest.cc5355 size_t size2, CharType** array2) {
5356 ASSERT_EQ(size1, size2) << " Array sizes different.";
5354 AssertStringArrayEq(size_t size1, CharType** array1, size_t size2, CharType** array2) argument
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/opencv/cv/include/
H A Dcv.h84 int size2 CV_DEFAULT(0),

Completed in 527 milliseconds

1234