HomeSort by relevance Sort by last modified time
    Searched defs:size1 (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/chromium_org/third_party/webrtc/common_video/
plane_unittest.cc 59 int size1 = plane1.allocated_size(); local
66 EXPECT_EQ(size1, plane1.allocated_size());
74 size1 = 80;
75 memset(&buffer1, 0, size1);
76 plane2.Copy(size1, stride1, buffer1);
77 EXPECT_GE(plane2.allocated_size(), size1);
78 EXPECT_EQ(0, memcmp(buffer1, plane2.buffer(), size1));
83 int size1, size2, stride1, stride2; local
86 size1 = plane1.allocated_size();
91 EXPECT_EQ(size1, plane2.allocated_size())
    [all...]
  /external/stlport/test/unit/
collate_facets_test.cpp 24 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 - 1, str2, str2 + size2 - 2) == 1 )
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...]
  /ndk/tests/device/test-gnustl-full/unit/
collate_facets_test.cpp 24 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 - 1, str2, str2 + size2 - 2) == 1 )
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...]
  /ndk/tests/device/test-stlport/unit/
collate_facets_test.cpp 24 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 - 1, str2, str2 + size2 - 2) == 1 )
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...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/comparator/
SizeFileComparator.java 109 long size1 = 0; local
111 size1 = sumDirectoryContents && file1.exists() ? FileUtils.sizeOfDirectory(file1) : 0;
113 size1 = file1.length();
121 long result = size1 - size2;
  /bionic/tests/
sched_test.cpp 209 size_t size1 = CPU_ALLOC_SIZE(set_size1); local
216 CPU_ZERO_S(size1, set1);
220 CPU_SET_S(0, size1, set1);
224 CPU_AND_S(size1, set3, set1, set2);
229 CPU_OR_S(size1, set3, set1, set2);
234 CPU_XOR_S(size1, set3, set1, set2);
247 size_t size1 = CPU_ALLOC_SIZE(set_size1); local
253 CPU_ZERO_S(size1, set1);
256 CPU_SET_S(0, size1, set1);
257 ASSERT_TRUE(CPU_EQUAL_S(size1, set1, set1))
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/mac/portaudio/
pa_ringbuffer.c 190 ring_buffer_size_t size1, size2, numWritten; local
192 numWritten = PaUtil_GetRingBufferWriteRegions( rbuf, elementCount, &data1, &size1, &data2, &size2 );
196 memcpy( data1, data, size1*rbuf->elementSizeBytes );
197 data = ((char *)data) + size1*rbuf->elementSizeBytes;
202 memcpy( data1, data, size1*rbuf->elementSizeBytes );
212 ring_buffer_size_t size1, size2, numRead; local
214 numRead = PaUtil_GetRingBufferReadRegions( rbuf, elementCount, &data1, &size1, &data2, &size2 );
217 memcpy( data, data1, size1*rbuf->elementSizeBytes );
218 data = ((char *)data) + size1*rbuf->elementSizeBytes;
223 memcpy( data, data1, size1*rbuf->elementSizeBytes )
    [all...]
  /art/runtime/
mem_map_test.cc 64 size_t size1 = m1->Size(); local
66 EXPECT_EQ(size1, page_size);
68 EXPECT_EQ(BaseSize(m1), size1); local
  /external/chromium_org/sdch/open-vcdiff/src/
codetable.h 65 // inst1=ADD size1=0 mode1=X inst2=NOOP size2=X mode2=X
66 // inst1=RUN size1=0 mode1=X inst2=NOOP size2=X mode2=X
67 // inst1=COPY size1=0 mode1=N inst2=NOOP size2=X mode2=X (for all N)
99 // | inst1 | size1 | mode1 | inst2 | size2 | mode2 |
104 unsigned char size1[kCodeTableSize]; member in struct:open_vcdiff::VCDiffCodeTableData
  /external/chromium_org/ui/gfx/
skia_util.cc 153 size_t size1 = 0; local
158 size1 = bitmap1.getSize();
166 return (size1 == size2) && (0 == memcmp(addr1, addr2, bitmap1.getSize()));
  /bionic/libc/bionic/
malloc_debug_common.cpp 133 size_t size1 = e1->size & ~SIZE_FLAG_MASK; local
135 size_t alloc1 = nbAlloc1 * size1;
  /external/chromium_org/third_party/freetype/src/pfr/
pfrload.c 355 FT_UInt n, count, size1; local
379 size1 = 1 + 1 + 1 + 2 + 2 + 1;
381 size1++;
384 size1++;
387 size1++;
390 size1++;
393 size1++;
397 PFR_CHECK( count * size1 );
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.cpp 334 int size1 = (baseSize2[mask] >> 4) & 0xf; local
338 if (1) { // size1 can't be 0
340 reg->reg.size = size1 << unit;
  /external/freetype/src/pfr/
pfrload.c 355 FT_UInt n, count, size1; local
379 size1 = 1 + 1 + 1 + 2 + 2 + 1;
381 size1++;
384 size1++;
387 size1++;
390 size1++;
393 size1++;
397 PFR_CHECK( count * size1 );
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_build_util.cpp 334 int size1 = (baseSize2[mask] >> 4) & 0xf; local
338 if (1) { // size1 can't be 0
340 reg->reg.size = size1 << unit;
  /external/stlport/src/c_locale_win32/
c_wlocale_win32.c 202 DWORD size1 = trim_size_t_to_DWORD(n1); local
204 result = CompareStringW(lcol->lc.id, 0, s1, size1, s2, size2);
207 n1 -= size1;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/SampleCode/
AMRWB_E_SAMPLE.c 86 int size1 = 0; local
190 size1 = (int)strlen(VOAMRWB_RFC3267_HEADER_INFO);
191 memcpy(outBuf, VOAMRWB_RFC3267_HEADER_INFO, size1);
192 outBuf += size1;
216 fwrite(OutputBuf, 1, outData.Length + size1, fdst);
  /ndk/sources/cxx-stl/stlport/src/c_locale_win32/
c_wlocale_win32.c 202 DWORD size1 = trim_size_t_to_DWORD(n1); local
204 result = CompareStringW(lcol->lc.id, 0, s1, size1, s2, size2);
207 n1 -= size1;
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 306 int size1 = list1.size(); local
308 int size = Math.min(size1, size2);
317 if (size1 == size2) {
319 } else if (size1 < size2) {
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 306 int size1 = list1.size(); local
308 int size = Math.min(size1, size2);
317 if (size1 == size2) {
319 } else if (size1 < size2) {
  /external/ceres-solver/internal/ceres/
covariance_impl.cc 294 const int size1 = problem->ParameterBlockLocalSize(block_pair.first); local
296 num_nonzeros += size1 * size2;
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
StdTypeList.java 306 int size1 = list1.size(); local
308 int size = Math.min(size1, size2);
317 if (size1 == size2) {
319 } else if (size1 < size2) {
  /external/chromium_org/third_party/skia/src/ports/
SkFontConfigInterface_direct.cpp 80 size_t size1 = iden0.writeToMemory(storage.get()); local
81 SkASSERT(size0 == size1);
84 size_t size2 = iden1.readFromMemory(storage.get(), size1);
85 SkASSERT(size2 == size1);
  /external/chromium_org/third_party/skia/tests/
MatrixTest.cpp 106 size_t size1 = m.writeToMemory(NULL); local
108 REPORTER_ASSERT(reporter, size1 == size2);
109 REPORTER_ASSERT(reporter, size1 <= SkMatrix::kMaxFlattenSize);
113 REPORTER_ASSERT(reporter, size1 == size3);
118 REPORTER_ASSERT(reporter, size1 == size3);
119 REPORTER_ASSERT(reporter, memcmp(buffer, buffer2, size1) == 0);
  /external/elfutils/0.153/src/
elfcmp.c 571 size_t size1 = 0; local
577 raw1 = elf_rawfile (elf1, &size1);

Completed in 886 milliseconds

1 2 3 4