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

/external/autotest/client/site_tests/graphics_Stress/
H A Dgraphics_Stress.py111 tabidx = 0
113 cr.browser.tabs[tabidx].Activate()
114 tabidx = (tabidx + 1) % len(cr.browser.tabs)
/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 161 milliseconds