Home
last modified time | relevance | path

Searched refs:hashsize (Results 1 – 4 of 4) sorted by relevance

/external/opencv/cxcore/src/
Dcxcopy.cpp315 if( src1->heap->active_count >= dst1->hashsize*CV_SPARSE_HASH_RATIO ) in cvCopy()
318 dst1->hashsize = src1->hashsize; in cvCopy()
320 (void**)cvAlloc( dst1->hashsize*sizeof(dst1->hashtable[0]))); in cvCopy()
323 memset( dst1->hashtable, 0, dst1->hashsize*sizeof(dst1->hashtable[0])); in cvCopy()
329 int tabidx = node->hashval & (dst1->hashsize - 1); in cvCopy()
715 memset( mat1->hashtable, 0, mat1->hashsize*sizeof(mat1->hashtable[0])); in cvSetZero()
Dcxarray.cpp683 arr->hashsize = CV_SPARSE_HASH_SIZE0; in cvCreateSparseMat()
684 size = arr->hashsize*sizeof(arr->hashtable[0]); in cvCreateSparseMat()
772 for( idx = 0; idx < mat->hashsize; idx++ ) in cvInitSparseMatIterator()
818 tabidx = hashval & (mat->hashsize - 1); in icvGetNodePtr()
840 if( mat->heap->active_count >= mat->hashsize*CV_SPARSE_HASH_RATIO ) in icvGetNodePtr()
843 int newsize = MAX( mat->hashsize*2, CV_SPARSE_HASH_SIZE0); in icvGetNodePtr()
865 mat->hashsize = newsize; in icvGetNodePtr()
915 tabidx = hashval & (mat->hashsize - 1); in icvDeleteNode()
/external/opencv/cxcore/include/
Dcxtypes.h755 int hashsize; member
Dcxcore.h276 for( idx = ++mat_iterator->curidx; idx < mat_iterator->mat->hashsize; idx++ ) in cvGetNextSparseNode()