Home
last modified time | relevance | path

Searched refs:tabidx (Results 1 – 2 of 2) sorted by relevance

/external/opencv/cxcore/src/
Dcxarray.cpp798 int i, tabidx; in icvGetNodePtr() local
818 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() local
915 tabidx = hashval & (mat->hashsize - 1); in icvDeleteNode()
918 for( node = (CvSparseNode*)mat->hashtable[tabidx]; in icvDeleteNode()
937 mat->hashtable[tabidx] = node->next; in icvDeleteNode()
Dcxcopy.cpp329 int tabidx = node->hashval & (dst1->hashsize - 1); in cvCopy() local
331 node_copy->next = (CvSparseNode*)dst1->hashtable[tabidx]; in cvCopy()
332 dst1->hashtable[tabidx] = node_copy; in cvCopy()