HomeSort by relevance Sort by last modified time
    Searched refs:mat1 (Results 1 - 7 of 7) sorted by null

  /external/opencv/cxcore/src/
cxnorm.cpp 979 CvMat stub1, *mat1 = (CvMat*)imgB; local
    [all...]
cxcopy.cpp 712 CvSparseMat* mat1 = (CvSparseMat*)mat; local
713 cvClearSet( mat1->heap );
714 if( mat1->hashtable )
715 memset( mat1->hashtable, 0, mat1->hashsize*sizeof(mat1->hashtable[0]));
    [all...]
  /external/opencv/cv/src/
cvaccum.cpp 594 CvMat stub1, *mat1 = (CvMat*)arrA; local
605 CV_CALL( mat1 = cvGetMat( mat1, &stub1, &coi1 ));
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 ))
621 size = cvGetMatSize( mat1 );
622 type = CV_MAT_TYPE( mat1->type );
624 mat1_step = mat1->step;
637 if( CV_IS_MAT_CONT( mat1->type & mat2->type & sum->type )
    [all...]
cvhistogram.cpp 513 CvSparseMat* mat1 = (CvSparseMat*)(hist1->bins); local
518 if( mat1->heap->active_count > mat2->heap->active_count )
521 CV_SWAP( mat1, mat2, t );
527 for( node1 = cvInitSparseMatIterator( mat1, &iterator );
530 double v1 = *(float*)CV_NODE_VAL(mat1,node1);
531 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1), 0, 0, &node1->hashval );
548 if( !cvPtrND( mat1, CV_NODE_IDX(mat2,node2), 0, 0, &node2->hashval ))
559 for( node1 = cvInitSparseMatIterator( mat1, &iterator );
562 double v1 = *(float*)CV_NODE_VAL(mat1,node1);
563 uchar* node2_data = cvPtrND( mat2, CV_NODE_IDX(mat1,node1)
    [all...]
  /external/clang/test/Sema/
array-init.c 251 const Matrix mat1 = { local
  /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...]
  /libcore/luni/src/test/java/libcore/java/util/regex/
OldMatcherTest.java 206 Matcher mat1 = pat.matcher(testString1); local
209 assertFalse("Should not find given pattern in 1 string", mat1.lookingAt());
210 mat1.region(1, 10);
211 assertTrue("Should find given pattern in region of string", mat1.lookingAt());

Completed in 444 milliseconds