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

/external/autotest/client/site_tests/graphics_Stress/
H A Dgraphics_Stress.py126 tabidx = 0
128 cr.browser.tabs[tabidx].Activate()
129 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...]
/external/opencv3/modules/core/src/
H A Darray.cpp654 int i, tabidx; local
674 tabidx = hashval & (mat->hashsize - 1);
679 for( node = (CvSparseNode*)mat->hashtable[tabidx];
725 tabidx = hashval & (newsize - 1);
730 node->next = (CvSparseNode*)mat->hashtable[tabidx];
731 mat->hashtable[tabidx] = node;
748 int i, tabidx; local
768 tabidx = hashval & (mat->hashsize - 1);
771 for( node = (CvSparseNode*)mat->hashtable[tabidx];
790 mat->hashtable[tabidx]
[all...]
H A Dcopy.cpp1353 int tabidx = node->hashval & (dst1->hashsize - 1);
1355 node_copy->next = (CvSparseNode*)dst1->hashtable[tabidx];
1356 dst1->hashtable[tabidx] = node_copy;

Completed in 142 milliseconds