/external/opencv/cvaux/src/ |
_cvaux.h | 54 CV_INLINE bool operator == (CvSize size1, CvSize size2 ); 55 CV_INLINE bool operator == (CvSize size1, CvSize size2 ) 57 return size1.width == size2.width && size1.height == size2.height; 60 CV_INLINE bool operator != (CvSize size1, CvSize size2 ); 61 CV_INLINE bool operator != (CvSize size1, CvSize size2 ) 63 return size1.width != size2.width || size1.height != size2.height;
|
/external/e2fsprogs/intl/ |
xsize.h | 57 xsum (size_t size1, size_t size2) 59 size_t sum = size1 + size2; 68 xsum3 (size_t size1, size_t size2, size_t size3) 70 return xsum (xsum (size1, size2), size3); 78 xsum4 (size_t size1, size_t size2, size_t size3, size_t size4) 80 return xsum (xsum (xsum (size1, size2), size3), size4); 88 xmax (size_t size1, size_t size2) 92 return (size1 >= size2 ? size1 : size2);
|
/external/stlport/test/unit/ |
collate_facets_test.cpp | 25 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 - 2) == 1 ) 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...] |
/ndk/tests/device/test-gnustl-full/unit/ |
collate_facets_test.cpp | 25 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 - 2) == 1 ) 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...] |
/ndk/tests/device/test-stlport/unit/ |
collate_facets_test.cpp | 25 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 - 2) == 1 ) 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...] |
/sdk/layoutlib_api/sample/src/com/example/android/render/ |
RenderServiceFactory.java | 93 * @param size2 108 int size2, 121 int width = size1, height = size2; 124 width = size1 < size2 ? size2 : size1; 125 height = size1 < size2 ? size1 : size2; 128 width = size1 < size2 ? size1 : size2; 129 height = size1 < size2 ? size2 : size1 [all...] |
RenderService.java | 249 int size2 = mConfig.getScreenDimensionQualifier().getValue2(); local 253 mWidth = size1 < size2 ? size2 : size1; 254 mHeight = size1 < size2 ? size1 : size2; 257 mWidth = size1 < size2 ? size1 : size2; 258 mHeight = size1 < size2 ? size2 : size1;
|
/external/chromium/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 | 105 unsigned char size2[kCodeTableSize]; member in struct:open_vcdiff::VCDiffCodeTableData
|
codetable_test.cc | 43 unsigned char size2, 50 g_exercise_code_table_->size2[opcode] = (inst2 == VCD_NOOP) ? 0 : size2; 100 EXPECT_EQ(0, code_table_data_.size2[opcode]); 245 code_table_data_.size2[20] = 1;
|
instruction_map.cc | 157 FindMaxSize(code_table_data.size2)) { 173 code_table_data.size2[opcode], 190 code_table_data.size2[opcode],
|
/external/valgrind/main/drd/tests/ |
custom_alloc.c | 30 int size2 = size + RZ*2; local 33 if (hp + size2 > hp_lim) { 39 hp += size2;
|
/external/valgrind/main/massif/tests/ |
custom_alloc.c | 30 int size2 = size + RZ*2; local 33 if (hp + size2 > hp_lim) { 39 hp += size2;
|
/external/skia/tests/ |
FontHostTest.cpp | 61 size_t size2 = SkFontHost::GetTableData(fontID, tags[i], 0, size, local 63 REPORTER_ASSERT(reporter, size2 == size);
|
MatrixTest.cpp | 45 uint32_t size2 = m.flatten(buffer); local 46 REPORTER_ASSERT(reporter, size1 == size2); 51 REPORTER_ASSERT(reporter, size1 == size2); 56 REPORTER_ASSERT(reporter, size1 == size2);
|
/packages/apps/Email/src/org/apache/commons/io/comparator/ |
SizeFileComparator.java | 115 long size2 = 0;
local 117 size2 = sumDirectoryContents && file2.exists() ? FileUtils.sizeOfDirectory(file2) : 0;
119 size2 = file2.length();
121 long result = size1 - size2;
|
/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
BitmapFont.java | 270 final int size2 = newFont.pages.length;
local 272 Material[] tmp = new Material[size1+size2];
274 System.arraycopy(newFont.pages, 0, tmp, size1, size2);
278 // this.pages = Arrays.copyOf(this.pages, size1+size2);
279 // System.arraycopy(newFont.pages, 0, this.pages, size1, size2);
|
/external/srec/srec/clib/ |
voc_read.c | 277 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));
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
regex.c | 38 # define re_match_2(bufp, string1, size1, string2, size2, pos, regs, stop) \ 39 __re_match_2 (bufp, string1, size1, string2, size2, pos, regs, stop)
|
/sdk/sdk_common/src/com/android/ide/common/resources/configuration/ |
ScreenDimensionQualifier.java | 124 public static ScreenDimensionQualifier getQualifier(String size1, String size2) { 127 int s2 = Integer.parseInt(size2);
|
/external/skia/samplecode/ |
SampleRegion.cpp | 154 size_t size2 = tmp.flatten(buffer); local 155 SkASSERT(size == size2); 158 size2 = tmp3.unflatten(buffer); 159 SkASSERT(size == size2);
|
/external/valgrind/main/memcheck/tests/ |
custom_alloc.c | 36 int size2 = size + RZ*2; local 39 if (hp + size2 > hp_lim) { 45 hp += size2;
|
/tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/device/ui/ |
DpiScaleCalculatorDialog.java | 75 int size2 = -1; field in class:DpiScaleCalculatorDialog 280 if ((skin != null) && (size1 == -1) && (size2 == -1)) 291 size2 = 302 if ((size1 > 0) && (size2 > 0)) 304 double diagonalPx = Math.sqrt(Math.pow(size1, 2) + Math.pow(size2, 2));
|
/external/opencv/cv/src/ |
cvemd.cpp | 118 const float *signature2, int size2, 177 int dims, size1, size2; local 187 size2 = signature2->rows; 199 if( flow->rows != size1 || flow->cols != size2 ) 223 if( cost->rows != size1 || cost->cols != size2 ) 256 signature2->data.fl, size2, 335 const float* signature2, int size2, 354 buffer_size = (size1+1) * (size2+1) * (sizeof( float ) + /* cost */ 357 (size1 + size2 + 2) * (sizeof( CvNode2D ) + /* _x */ 389 buffer += (size2 + 1) * sizeof( int ) [all...] |
/external/javassist/src/main/javassist/expr/ |
ExprEditor.java | 134 int size2 = iterator.getCodeLength(); local 135 if (size != size2) // the body was modified. 136 endPos += size2 - size;
|
/external/webkit/Source/JavaScriptCore/runtime/ |
UString.h | 121 unsigned size2 = 0; local 130 size2 = rep2->length(); 132 if (size1 != size2) // If the lengths are not the same, we're done.
|