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

/external/opencv/cxcore/src/
H A Dcxcopy.cpp329 int tabidx = node->hashval & (dst1->hashsize - 1); local
331 node_copy->next = (CvSparseNode*)dst1->hashtable[tabidx];
332 dst1->hashtable[tabidx] = node_copy;
H A Dcxarray.cpp798 int i, tabidx; local
818 tabidx = hashval & (mat->hashsize - 1);
821 for( node = (CvSparseNode*)mat->hashtable[tabidx];
866 tabidx = hashval & (newsize - 1);
871 node->next = (CvSparseNode*)mat->hashtable[tabidx];
872 mat->hashtable[tabidx] = node;
895 int i, tabidx; local
915 tabidx = hashval & (mat->hashsize - 1);
918 for( node = (CvSparseNode*)mat->hashtable[tabidx];
937 mat->hashtable[tabidx]
[all...]

Completed in 69 milliseconds