Searched defs:v_next (Results 1 - 1 of 1) sorted by relevance

/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp3815 struct CvTreeNode* v_next; /* 2nd next sequence */ member in struct:CvTreeNode
3838 node->h_next = parent->v_next;
3840 assert( parent->v_next != node );
3842 if( parent->v_next )
3843 parent->v_next->h_prev = node;
3844 parent->v_next = node;
3880 assert( parent->v_next == node );
3881 parent->v_next = node->h_next;
3931 if( node->v_next && level+1 < treeIterator->max_level )
3933 node = node->v_next;
[all...]

Completed in 113 milliseconds