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

123

/external/opencv/cvaux/src/
H A D_cvaux.h54 CV_INLINE bool operator == (CvSize size1, CvSize size2 );
55 CV_INLINE bool operator == (CvSize size1, CvSize size2 ) argument
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 ) argument
63 return size1.width != size2.width || size1.height != size2.height;
/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/chromium/sdch/open-vcdiff/src/
H A Dcodetable_test.cc40 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[2
38 AddExerciseOpcode(unsigned char inst1, unsigned char mode1, unsigned char size1, unsigned char inst2, unsigned char mode2, unsigned char size2, int opcode) argument
[all...]
H A Dcodetable.h65 // 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
H A Dinstruction_map.cc155 FindMaxSize(code_table_data.size1)),
165 code_table_data.size1[opcode],
185 code_table_data.size1[opcode],
H A Ddecodetable.cc87 instruction_size = code_table_data_->size1[opcode];
H A Ddecodetable_test.cc43 unsigned char size1,
50 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
117 EXPECT_EQ(g_exercise_code_table_->size1[opcode], size);
396 (g_exercise_code_table_->size1[opcode] == 0)) {
41 AddExerciseOpcode(unsigned char inst1, unsigned char mode1, unsigned char size1, unsigned char inst2, unsigned char mode2, unsigned char size2, int opcode) argument
H A Dvcdecoder4_test.cc825 // ADD size 16 (opcode 17) => ADD size 27 (size1[17] = 27)
826 // ADD size 17 (opcode 18) => ADD size 61 (size1[18] = 61)
827 // COPY mode 0 size 18 (opcode 34) => COPY mode 0 size 28 (size1[34] = 28)
828 // COPY mode 1 size 18 (opcode 50) => COPY mode 1 size 44 (size1[50] = 44)
940 custom_code_table.size1[17] = 27;
941 custom_code_table.size1[18] = 61;
942 custom_code_table.size1[34] = 28;
943 custom_code_table.size1[50] = 44;
958 EXPECT_EQ(27, decoded_table->size1[17]);
959 EXPECT_EQ(61, decoded_table->size1[1
[all...]
H A Dinstruction_map_test.cc34 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);
123 AddExerciseOpcode(unsigned char inst1, unsigned char mode1, unsigned char size1, unsigned char inst2, unsigned char mode2, unsigned char size2, int opcode) argument
164 VerifyExerciseSecondInstruction( unsigned char expected_opcode, unsigned char inst1, unsigned char size1, unsigned char mode1, unsigned char inst2, unsigned char size2, unsigned char mode2) argument
H A Dencodetable_test.cc52 unsigned char size1,
59 g_exercise_code_table_->size1[opcode] = (inst1 == VCD_NOOP) ? 0 : size1;
50 AddExerciseOpcode(unsigned char inst1, unsigned char mode1, unsigned char size1, unsigned char inst2, unsigned char mode2, unsigned char size2, int opcode) argument
H A Dcodetable.cc99 // size1
242 ValidateOpcode(i, inst1[i], size1[i], mode1[i], max_mode, "first")
251 if ((size1[i] == 0) &&
/external/eigen/test/eigen2/
H A Dgsl_helper.h37 gsl_eigen_symmv_workspace * w = gsl_eigen_symmv_alloc(m->size1);
38 Matrix a = createMatrix(m->size1, m->size2);
47 gsl_eigen_gensymmv_workspace * w = gsl_eigen_gensymmv_alloc(m->size1);
48 Matrix a = createMatrix(m->size1, m->size2);
49 Matrix b = createMatrix(_b->size1, _b->size2);
73 gsl_eigen_hermv_workspace * w = gsl_eigen_hermv_alloc(m->size1);
74 Matrix a = createMatrix(m->size1, m->size2);
83 gsl_eigen_genhermv_workspace * w = gsl_eigen_genhermv_alloc(m->size1);
84 Matrix a = createMatrix(m->size1, m->size2);
85 Matrix b = createMatrix(_b->size1, _
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DBitmapFont.java269 final int size1 = this.pages.length;
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/webkit/Source/JavaScriptCore/runtime/
H A DUString.h120 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/skia/tests/
H A DMatrixTest.cpp44 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/valgrind/main/exp-sgcheck/
H A Dh_main.h63 void* h_replace_calloc ( ThreadId tid, SizeT nmemb, SizeT size1 );
/external/opencv/cv/src/
H A Dcvemd.cpp117 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, argument
354 buffer_size = (size1+1) * (size2+1) * (sizeof( float ) + /* cost */
357 (size1 + size2 + 2) * (sizeof( CvNode2D ) + /* _x */
362 (size1
[all...]
H A Dcvsegmentation.cpp412 CvSize size1 = cvGetMatSize(dst_pyramid[level+1]); local
422 for( i = 1; i < size1.height-1; i++, dptr += dstep - (size1.width-2)*3, mask += mstep*2 )
424 for( j = 1; j < size1.width-1; j++, dptr += cn )
/external/freetype/src/pfr/
H A Dpfrload.c355 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/qemu/distrib/sdl-1.2.15/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/dexmaker/src/dx/java/com/android/dx/rop/type/
H A DStdTypeList.java306 int size1 = list1.size();
308 int size = Math.min(size1, size2);
317 if (size1 == size2) {
319 } else if (size1 < size2) {
/external/valgrind/main/drd/
H A Ddrd_malloc_wrappers.c159 static void* drd_calloc(ThreadId tid, SizeT nmemb, SizeT size1) argument
161 return new_block(tid, nmemb*size1, VG_(clo_alignment),
/external/javassist/src/main/javassist/
H A DCtClassType.java540 int size1, size2;
544 size1 = 0;
548 size1 = anno1.length;
561 Object[] result = new Object[size1 + size2];
562 for (int i = 0; i < size1; i++)
566 result[j + size1] = toAnnoType(anno2[j], cp);
572 for (int i = 0 ; i < size1 ; i++){
606 int size1, size2;
610 size1 = 0;
614 size1
[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;

Completed in 1368 milliseconds

123