/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; 60 return (sum >= size1 ? sum : SIZE_MAX); 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) [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...] |
/external/chromium/sdch/open-vcdiff/src/ |
codetable_test.cc | 40 unsigned char size1, 47 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1; 97 EXPECT_EQ(size, code_table_data_.size1[opcode]); 134 code_table_data_.size1[131] = 0xFF; 141 code_table_data_.size1[1] = 0xFF; // Add size 0 => size 255 148 code_table_data_.size1[0] = 0xFF; // Run size 0 => size 255 185 code_table_data_.size1[20] = 0; 195 code_table_data_.size1[20] = 0; 197 code_table_data_.size1[20] = 1 [all...] |
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
|
instruction_map.cc | 155 FindMaxSize(code_table_data.size1)), 165 code_table_data.size1[opcode], 185 code_table_data.size1[opcode],
|
instruction_map_test.cc | 34 unsigned char size1, 47 unsigned char size1, 125 unsigned char size1, 132 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1; 151 EXPECT_EQ(0, g_exercise_code_table_->size1[found_opcode]); 156 EXPECT_EQ(size, g_exercise_code_table_->size1[found_opcode]); 167 unsigned char size1, 172 int first_opcode = exercise_map->LookupFirstOpcode(inst1, size1, mode1);
|
vcdecoder4_test.cc | [all...] |
/sdk/layoutlib_api/sample/src/com/example/android/render/ |
RenderServiceFactory.java | 92 * @param size1 107 int size1, 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 | 248 int size1 = mConfig.getScreenDimensionQualifier().getValue1(); 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; 261 mWidth = mHeight = size1; [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
BitmapFont.java | 269 final int size1 = this.pages.length;
local 272 Material[] tmp = new Material[size1+size2];
273 System.arraycopy(this.pages, 0, tmp, 0, size1);
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/skia/tests/ |
MatrixTest.cpp | 44 uint32_t size1 = m.flatten(NULL); local 46 REPORTER_ASSERT(reporter, size1 == size2); 47 REPORTER_ASSERT(reporter, size1 <= SkMatrix::kMaxFlattenSize); 51 REPORTER_ASSERT(reporter, size1 == size2); 56 REPORTER_ASSERT(reporter, size1 == size2); 57 REPORTER_ASSERT(reporter, memcmp(buffer, buffer2, size1) == 0);
|
/external/webkit/Source/JavaScriptCore/runtime/ |
UString.h | 120 unsigned size1 = 0; local 127 size1 = rep1->length(); 132 if (size1 != size2) // If the lengths are not the same, we're done. 135 if (!size1) 148 switch (size1) { 154 return memcmp(d1, d2, size1 * sizeof(UChar)) == 0;
|
/external/llvm/test/CodeGen/PowerPC/ |
2007-11-16-landingpad-split.ll | 11 %size1 = trunc i64 %size to i32 ; <i32> [#uses=1] 12 %tmp17 = alloca i8*, i32 %size1 ; <i8**> [#uses=1]
|
/packages/apps/Email/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;
|
/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);
|
/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 );
|
/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) { 126 int s1 = Integer.parseInt(size1);
|
/tools/motodev/src/plugins/emulator/src/com/motorola/studio/android/emulator/device/ui/ |
DpiScaleCalculatorDialog.java | 73 int size1 = -1; field in class:DpiScaleCalculatorDialog 280 if ((skin != null) && (size1 == -1) && (size2 == -1)) 287 size1 = 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 | 117 static CvStatus icvInitEMD( const float *signature1, int size1, 177 int dims, size1, size2; local 186 size1 = signature1->rows; 199 if( flow->rows != size1 || flow->cols != size2 ) 223 if( cost->rows != size1 || cost->cols != size2 ) 255 IPPI_CALL( result = icvInitEMD( signature1->data.fl, size1, 334 icvInitEMD( const float* signature1, int size1, 354 buffer_size = (size1+1) * (size2+1) * (sizeof( float ) + /* cost */ 357 (size1 + size2 + 2) * (sizeof( CvNode2D ) + /* _x */ 362 (size1+1) * (sizeof( float * ) + sizeof( char * ) + /* rows pointers for * [all...] |
/external/llvm/test/Transforms/GVN/ |
2009-01-21-SortInvalidation.ll | 8 define fastcc i32 @byte_re_match_2_internal(%struct.re_pattern_buffer* nocapture %bufp, i8* %string1, i32 %size1, i8* %string2, i32 %size2, i32 %pos, %struct.re_registers* %regs, i32 %stop) nounwind {
|
/external/qemu/distrib/sdl-1.2.15/src/video/photon/ |
SDL_ph_mouse.c | 76 cursor->ph_cursor->size1.x = (short)w; 77 cursor->ph_cursor->size1.y = (short)h;
|