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

/external/ceres-solver/internal/ceres/
H A Dtrust_region_minimizer_test.cc58 template <bool col1, bool col2, bool col3, bool col4>
64 (col2 ? 1 : 0) +
69 << col2 << " "
78 CHECK(col1 || col2 || col3 || col4);
140 if (col2) {
172 if (col2) {
195 state_plus_delta[1] = (col2 ? state[1] + delta[delta_index++] : state[1]);
211 template<bool col1, bool col2, bool col3, bool col4>
222 parameters[1] = (col2 ? parameters[1] : 0.0);
226 PowellEvaluator2<col1, col2, col
[all...]
/external/guava/guava-tests/test/com/google/common/hash/
H A DSipHashFunctionTest.java148 byte[] col2 = new byte[] { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x81 };
153 SIP_WITH_KEY.hashBytes(col2),
/external/opencv/cvaux/src/
H A Dcvtexture.cpp316 int col2, row2; local
318 col2 = colLoop + steps[stepLoop*2 + 1];
320 if( col2>=0 && row2>=0 && col2<srcImageSize.width && row2<srcImageSize.height )
H A Dcvlmeds.cpp345 int row1, row2, col1, col2; local
354 col2 = (x == 2 ? 1 : 2);
356 value = M[row1 * 3 + col1] * M[row2 * 3 + col2] - M[row2 * 3 + col1] * M[row1 * 3 + col2];
/external/opencv3/modules/core/src/
H A Dlpsolver.cpp90 static void swap_columns(Mat_<double>& A,int col1,int col2);
355 static inline void swap_columns(Mat_<double>& A,int col1,int col2){ argument
358 A(i,col1)=A(i,col2);
359 A(i,col2)=tmp;
H A Dcuda_gpu_mat.cpp242 int col2 = std::min(ofs.x + cols + dright, wholeSize.width);
246 cols = col2 - col1;
H A Dumatrix.cpp467 int col1 = std::max(ofs.x - dleft, 0), col2 = std::min(ofs.x + cols + dright, wholeSize.width);
469 rows = row2 - row1; cols = col2 - col1;
H A Dmatrix.cpp912 int col1 = std::max(ofs.x - dleft, 0), col2 = std::min(ofs.x + cols + dright, wholeSize.width); local
914 rows = row2 - row1; cols = col2 - col1;
/external/icu/icu4c/source/test/intltest/
H A Dapicoll.cpp235 RuleBasedCollator *col1, *col2, *col3, *col4; local
251 col2 = new RuleBasedCollator(ruleset2, status);
283 UnicodeString rule2 = col2->getRules();
310 delete col2;
433 Collator *col2 = 0; local
435 col2 = Collator::createInstance(dk, success);
452 doAssert(col1->hashCode() != col2->hashCode(), "Hash test1 result incorrect" );
453 doAssert(!(col1->hashCode() == col2->hashCode()), "Hash test2 result incorrect" );
458 delete col2;
820 RuleBasedCollator *col2 local
897 Collator *col2 = col1->clone(); local
2219 TestCollator col2; local
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
H A DCollationAPITest.java256 // Collator col2 = (Collator)col1.clone();
257 // doAssert(col1.equals(col2), "Cloned object is not equal to the orginal");
391 Collator col2 = null;
394 col2 = Collator.getInstance(dk);
410 doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" );
411 doAssert(!(col1.hashCode() == col2.hashCode()), "Hash test2 result incorrect" );
540 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null;
555 col2 = new RuleBasedCollator(ruleset2);
588 String rule2 = col2.getRules();
802 Collator col2
[all...]
H A DCollationMiscTest.java1611 RuleBasedCollator col2 = new RuleBasedCollator(rule);
1612 if (!col1.equals(col2)) {
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationAPITest.java252 // Collator col2 = (Collator)col1.clone();
253 // doAssert(col1.equals(col2), "Cloned object is not equal to the orginal");
387 Collator col2 = null;
390 col2 = Collator.getInstance(dk);
406 doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" );
407 doAssert(!(col1.hashCode() == col2.hashCode()), "Hash test2 result incorrect" );
536 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null;
551 col2 = new RuleBasedCollator(ruleset2);
584 String rule2 = col2.getRules();
798 Collator col2
[all...]
H A DCollationMiscTest.java1607 RuleBasedCollator col2 = new RuleBasedCollator(rule);
1608 if (!col1.equals(col2)) {
/external/opencv/cvaux/include/
H A Dcvmat.hpp533 CvMAT colrange( int col1, int col2 ) const;
638 CvMAT colrange( int col1, int col2 ) const;
1444 inline CvMAT CvMAT::colrange( int col1, int col2 ) const
1446 assert( 0 <= col1 && col1 < col2 && col2 <= width );
1447 return CvMAT( *this, cvRect( col1, 0, col2 - col1, height ));
2092 inline CvMAT _CvMAT_BASE_OP_::colrange( int col1, int col2 ) const
2095 assert( 0 <= col1 && col1 < col2 && col2 <= m.width );
2096 return CvMAT( m, cvRect( col1, 0, col2
[all...]
/external/libjpeg-turbo/simd/
H A Djidctfst-sse2-64.asm143 pshufd xmm5,xmm0,0xAA ; xmm5=col2=(02 02 02 02 02 02 02 02)
298 punpcklqdq xmm5,xmm3 ; xmm5=col2=(02 12 22 32 42 52 62 72)
330 ; xmm6=col0, xmm5=col2, xmm1=col4, xmm3=col6
H A Djidctfst-sse2.asm149 pshufd xmm5,xmm0,0xAA ; xmm5=col2=(02 02 02 02 02 02 02 02)
305 punpcklqdq xmm5,xmm3 ; xmm5=col2=(02 12 22 32 42 52 62 72)
337 ; xmm6=col0, xmm5=col2, xmm1=col4, xmm3=col6
H A Djidctred-sse2-64.asm164 pshufd xmm0,xmm0,0xFA ; xmm0=[col2 col3]=(02 02 02 02 03 03 03 03)
298 punpckhdq xmm0,xmm2 ; xmm0=[col2 col3]=(02 12 22 32 03 13 23 33)
H A Djidctred-sse2.asm170 pshufd xmm0,xmm0,0xFA ; xmm0=[col2 col3]=(02 02 02 02 03 03 03 03)
305 punpckhdq xmm0,xmm2 ; xmm0=[col2 col3]=(02 12 22 32 03 13 23 33)
H A Djidctint-sse2-64.asm158 pshufd xmm1,xmm5,0xAA ; xmm1=col2=(02 02 02 02 02 02 02 02)
487 punpcklqdq xmm1,xmm2 ; xmm1=col2=(02 12 22 32 42 52 62 72)
522 ; xmm7=col0, xmm1=col2, xmm0=col4, xmm2=col6
H A Djidctint-sse2.asm164 pshufd xmm1,xmm5,0xAA ; xmm1=col2=(02 02 02 02 02 02 02 02)
494 punpcklqdq xmm1,xmm2 ; xmm1=col2=(02 12 22 32 42 52 62 72)
529 ; xmm7=col0, xmm1=col2, xmm0=col4, xmm2=col6
H A Djfdctint-sse2-64.asm367 movdqa xmm0, XMMWORD [wk(4)] ; xmm0=col2
H A Djfdctint-sse2.asm375 movdqa xmm0, XMMWORD [wk(4)] ; xmm0=col2
/external/webp/src/enc/
H A Dvp8l.c52 static WEBP_INLINE uint32_t PaletteColorDistance(uint32_t col1, uint32_t col2) { argument
53 const uint32_t diff = VP8LSubPixels(col1, col2);
64 static WEBP_INLINE void SwapColor(uint32_t* const col1, uint32_t* const col2) { argument
66 *col1 = *col2;
67 *col2 = tmp;
/external/icu/icu4c/source/test/cintltst/
H A Dcapitst.c448 UCollator *col1, *col2, *col3, *col4; local
469 col2 = ucol_openRules(ruleset2, u_strlen(ruleset2), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &status);
488 rule2 = ucol_getRules(col2, &tempLength);
504 ucol_close(col2);
518 col2 = ucol_open("en_US", &status);
524 iter2 = ucol_openElements(col2, teststr, 3, &status);
547 ucol_close(col2);
/external/guice/extensions/struts2/lib/
H A Dstruts2-core-2.2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/struts2/ org/apache/struts2/dispatcher/ ...

Completed in 2635 milliseconds