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

/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp3033 const CvGraphVtx* start_vtx,
3043 if( !graph || !start_vtx || !end_vtx )
3046 if( start_vtx == end_vtx )
3050 (start_vtx->flags & CV_SET_ELEM_IDX_MASK) > (end_vtx->flags & CV_SET_ELEM_IDX_MASK) )
3053 CV_SWAP( start_vtx, end_vtx, t );
3056 edge = start_vtx->first;
3059 ofs = start_vtx == edge->vtx[1];
3060 assert( ofs == 1 || start_vtx == edge->vtx[0] );
3076 CvGraphVtx *start_vtx; local
3086 start_vtx
3032 cvFindGraphEdgeByPtr( const CvGraph* graph, const CvGraphVtx* start_vtx, const CvGraphVtx* end_vtx ) argument
3102 cvGraphAddEdgeByPtr( CvGraph* graph, CvGraphVtx* start_vtx, CvGraphVtx* end_vtx, const CvGraphEdge* _edge, CvGraphEdge ** _inserted_edge ) argument
3180 CvGraphVtx *start_vtx; local
3204 cvGraphRemoveEdgeByPtr( CvGraph* graph, CvGraphVtx* start_vtx, CvGraphVtx* end_vtx ) argument
3271 CvGraphVtx *start_vtx; local
[all...]
/external/opencv3/modules/core/test/
H A Dtest_ds.cpp2057 CvGraphVtx* start_vtx = cvtest::randInt(rng) % 2 || graph->active_count == 0 ? 0 : local
2060 scanner = cvCreateGraphScanner( graph, start_vtx, CV_GRAPH_ALL_ITEMS );
/external/opencv3/modules/core/src/
H A Ddatastructs.cpp2694 const CvGraphVtx* start_vtx,
2699 if( !graph || !start_vtx || !end_vtx )
2702 if( start_vtx == end_vtx )
2706 (start_vtx->flags & CV_SET_ELEM_IDX_MASK) > (end_vtx->flags & CV_SET_ELEM_IDX_MASK) )
2709 CV_SWAP( start_vtx, end_vtx, t );
2712 CvGraphEdge* edge = start_vtx->first;
2715 ofs = start_vtx == edge->vtx[1];
2716 assert( ofs == 1 || start_vtx == edge->vtx[0] );
2729 CvGraphVtx *start_vtx; local
2735 start_vtx
2693 cvFindGraphEdgeByPtr( const CvGraph* graph, const CvGraphVtx* start_vtx, const CvGraphVtx* end_vtx ) argument
2747 cvGraphAddEdgeByPtr( CvGraph* graph, CvGraphVtx* start_vtx, CvGraphVtx* end_vtx, const CvGraphEdge* _edge, CvGraphEdge ** _inserted_edge ) argument
2820 CvGraphVtx *start_vtx; local
2835 cvGraphRemoveEdgeByPtr( CvGraph* graph, CvGraphVtx* start_vtx, CvGraphVtx* end_vtx ) argument
2896 CvGraphVtx *start_vtx; local
[all...]

Completed in 74 milliseconds