/external/mesa3d/src/glsl/tests/ |
constructor-03.glsl | 3 uniform mat2 a; 7 mat2 b; 9 b = mat2(a);
|
constructor-05.glsl | 8 mat2 b; 10 b = mat2(a, x);
|
constructor-07.glsl | 8 mat2 c; 10 c = mat2(a, b);
|
matrix-09.glsl | 7 mat2 m; 9 m = mat2(a);
|
matrix-07.glsl | 3 uniform mat2 a; 4 uniform mat2 b; 5 uniform mat2 c; 6 uniform mat2 d; 18 mat2 x;
|
/external/opencv/cxcore/src/ |
cxnorm.cpp | 980 CvMat stub2, *mat2 = (CvMat*)imgA; local [all...] |
/external/opencv/cv/src/ |
cvaccum.cpp | 595 CvMat stub2, *mat2 = (CvMat*)arrB; local 606 CV_CALL( mat2 = cvGetMat( mat2, &stub2, &coi2 )); 612 if( !CV_ARE_CNS_EQ( mat1, mat2 ) || !CV_ARE_CNS_EQ( mat1, sum )) 618 if( !CV_ARE_SIZES_EQ( mat1, sum ) || !CV_ARE_SIZES_EQ( mat2, sum )) 625 mat2_step = mat2->step; 637 if( CV_IS_MAT_CONT( mat1->type & mat2->type & sum->type )) 644 IPPI_CALL( func( mat1->data.ptr, mat1_step, mat2->data.ptr, mat2_step, 664 if( CV_IS_MAT_CONT( mat1->type & mat2->type & sum->type & mask->type )) 671 IPPI_CALL( func( mat1->data.ptr, mat1_step, mat2->data.ptr, mat2_step [all...] |
cvhistogram.cpp | 514 CvSparseMat* mat2 = (CvSparseMat*)(hist2->bins); local 518 if( mat1->heap->active_count > mat2->heap->active_count ) 521 CV_SWAP( mat1, mat2, t ); 531 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1), 0, 0, &node1->hashval ); 544 for( node2 = cvInitSparseMatIterator( mat2, &iterator ); 547 double v2 = *(float*)CV_NODE_VAL(mat2,node2); 548 if( !cvPtrND( mat1, CV_NODE_IDX(mat2,node2), 0, 0, &node2->hashval )) 563 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1), 574 for( node2 = cvInitSparseMatIterator( mat2, &iterator ); 577 double v2 = *(float*)CV_NODE_VAL(mat2,node2) [all...] |
/external/clang/test/Sema/ |
array-init.c | 258 const Matrix mat2 = { local
|
/libcore/luni/src/test/java/libcore/java/util/regex/ |
OldMatcherTest.java | 207 Matcher mat2 = pat.matcher(testString2); local 212 assertTrue("Should find given pattern in 2 string", mat2.lookingAt()); 240 Matcher mat2 = pat2.matcher(testString); local 245 mat2.find(i); 246 assertEquals(testString.substring(i, i + length), mat2.group(1));
|
/external/opencv/cxcore/include/ |
cxtypes.h | 593 #define CV_ARE_TYPES_EQ(mat1, mat2) \ 594 ((((mat1)->type ^ (mat2)->type) & CV_MAT_TYPE_MASK) == 0) 596 #define CV_ARE_CNS_EQ(mat1, mat2) \ 597 ((((mat1)->type ^ (mat2)->type) & CV_MAT_CN_MASK) == 0) 599 #define CV_ARE_DEPTHS_EQ(mat1, mat2) \ 600 ((((mat1)->type ^ (mat2)->type) & CV_MAT_DEPTH_MASK) == 0) 602 #define CV_ARE_SIZES_EQ(mat1, mat2) \ 603 ((mat1)->rows == (mat2)->rows && (mat1)->cols == (mat2)->cols) [all...] |
/external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/ |
MatcherTest.java | 375 Matcher mat2 = pat2.matcher(testString); local 378 while (mat2.find()) { 379 assertEquals(testString.substring(start, start + length), mat2
|
/external/mesa3d/docs/ |
MESA_shader_debug.spec | 178 void printMESA(const mat2 value)
|
/external/skia/src/ports/ |
SkFontHost_win.cpp | 94 static const MAT2 mat2 = {{0, 1}, {0, 0}, {0, 0}, {0, 1}}; local 101 NULL, &mat2) == GDI_ERROR) { 268 MAT2 fMat22; 277 MAT2 fMat22Identity; 720 // Initialize the MAT2 structure to the identify transformation matrix. 721 static const MAT2 mat2 = {SkScalarToFIXED(1), SkScalarToFIXED(0), local 725 if (GDI_ERROR == GetGlyphOutline(hdc, gId, flags, &gm, 0, NULL, &mat2)) { [all...] |
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
glslang_tab.cpp | [all...] |