Searched refs:tabidx (Results 1 – 2 of 2) sorted by relevance
798 int i, tabidx; in icvGetNodePtr() local818 tabidx = hashval & (mat->hashsize - 1); in icvGetNodePtr()821 for( node = (CvSparseNode*)mat->hashtable[tabidx]; in icvGetNodePtr()866 tabidx = hashval & (newsize - 1); in icvGetNodePtr()871 node->next = (CvSparseNode*)mat->hashtable[tabidx]; in icvGetNodePtr()872 mat->hashtable[tabidx] = node; in icvGetNodePtr()895 int i, tabidx; in icvDeleteNode() local915 tabidx = hashval & (mat->hashsize - 1); in icvDeleteNode()918 for( node = (CvSparseNode*)mat->hashtable[tabidx]; in icvDeleteNode()937 mat->hashtable[tabidx] = node->next; in icvDeleteNode()
329 int tabidx = node->hashval & (dst1->hashsize - 1); in cvCopy() local331 node_copy->next = (CvSparseNode*)dst1->hashtable[tabidx]; in cvCopy()332 dst1->hashtable[tabidx] = node_copy; in cvCopy()