Lines Matching refs:hashtable
684 size = arr->hashsize*sizeof(arr->hashtable[0]); in cvCreateSparseMat()
686 CV_CALL( arr->hashtable = (void**)cvAlloc( size )); in cvCreateSparseMat()
687 memset( arr->hashtable, 0, size ); in cvCreateSparseMat()
719 cvFree( &arr->hashtable ); in cvReleaseSparseMat()
773 if( mat->hashtable[idx] ) in cvInitSparseMatIterator()
775 node = iterator->node = (CvSparseNode*)mat->hashtable[idx]; in cvInitSparseMatIterator()
821 for( node = (CvSparseNode*)mat->hashtable[tabidx]; in icvGetNodePtr()
863 cvFree( &mat->hashtable ); in icvGetNodePtr()
864 mat->hashtable = newtable; in icvGetNodePtr()
871 node->next = (CvSparseNode*)mat->hashtable[tabidx]; in icvGetNodePtr()
872 mat->hashtable[tabidx] = node; in icvGetNodePtr()
918 for( node = (CvSparseNode*)mat->hashtable[tabidx]; in icvDeleteNode()
937 mat->hashtable[tabidx] = node->next; in icvDeleteNode()