/external/opencv/cvaux/src/ |
D | enmin.cpp | 223 CvGraphEdge* newEdgePtr; 250 CvGraphEdge* tempEdgePtr; 271 CvGraphEdge* tempEdgePtr; 405 CvGraphEdge* graphEdge = graphVtx -> first; 414 CvGraphEdge* tempGraphEdge = cvFindGraphEdge( graph, u, v ); 427 CvGraphEdge* tempGraphEdge2; 457 CvGraphEdge* tempGraphEdge = cvFindGraphEdge( graph, v, u ); 469 CvGraphEdge* tempGraphEdge3 = cvFindGraphEdge( hlpGraph, u, v ); 474 CvGraphEdge* tempGraphEdge2; 553 CvGraphEdge* hlpGraphEdge = hlpGraphVtx -> first; [all …]
|
D | cvclique.cpp | 119 for( CvGraphEdge* e = ver->first; e ; e = CV_NEXT_GRAPH_EDGE( e, ver ) ) 173 CvGraphEdge* edge = cvFindGraphEdgeByPtr( graph, ver1, ver2 );
|
D | cvlcm.cpp | 622 LCMNode->first = (CvGraphEdge*)LCMEdge; in _cvAttachLCMEdgeToLCMNode() 625 LCMEdge_prev->next[(LCMEdge_prev->vtx[0] != (CvGraphVtx*)LCMNode)] = (CvGraphEdge*)LCMEdge; in _cvAttachLCMEdgeToLCMNode()
|
/external/opencv/cxcore/src/ |
D | cxdatastructs.cpp | 2890 || edge_size < (int) sizeof( CvGraphEdge ) in cvCreateGraph() 2979 CvGraphEdge *edge = vtx->first; in cvGraphRemoveVtxByPtr() 3014 CvGraphEdge *edge = vtx->first; in cvGraphRemoveVtx() 3031 CV_IMPL CvGraphEdge* 3036 CvGraphEdge *edge = 0; in cvFindGraphEdgeByPtr() 3072 CV_IMPL CvGraphEdge * 3075 CvGraphEdge *edge = 0; in cvFindGraphEdge() 3104 const CvGraphEdge* _edge, in cvGraphAddEdgeByPtr() 3105 CvGraphEdge ** _inserted_edge ) in cvGraphAddEdgeByPtr() 3107 CvGraphEdge *edge = 0; in cvGraphAddEdgeByPtr() [all …]
|
D | cxpersistence.cpp | 4534 &attr, sizeof(CvGraphEdge), buf )); in icvWriteGraph() 4580 CvGraphEdge* edge = (CvGraphEdge*)reader.ptr; in icvWriteGraph() 4585 if( elem_size > (int)sizeof(CvGraphEdge) ) in icvWriteGraph() 4589 memcpy( src_ptr2, edge + 1, elem_size - sizeof(CvGraphEdge) ); in icvWriteGraph() 4718 CV_CALL( edge_size = icvCalcElemSize( dst_edge_dt, sizeof(CvGraphEdge) )); in icvReadGraph() 4773 CvGraphEdge* edge = 0; in icvReadGraph() 4790 if( elem_size > (int)sizeof(CvGraphEdge) ) in icvReadGraph() 4794 memcpy( edge + 1, dst_ptr2, elem_size - sizeof(CvGraphEdge) ); in icvReadGraph()
|
/external/opencv3/modules/core/src/ |
D | datastructs.cpp | 2578 || edge_size < (int) sizeof( CvGraphEdge ) in cvCreateGraph() 2648 CvGraphEdge *edge = vtx->first; in cvGraphRemoveVtxByPtr() 2677 CvGraphEdge *edge = vtx->first; in cvGraphRemoveVtx() 2692 CV_IMPL CvGraphEdge* 2712 CvGraphEdge* edge = start_vtx->first; in cvFindGraphEdgeByPtr() 2726 CV_IMPL CvGraphEdge * 2749 const CvGraphEdge* _edge, in cvGraphAddEdgeByPtr() 2750 CvGraphEdge ** _inserted_edge ) in cvGraphAddEdgeByPtr() 2752 CvGraphEdge *edge = 0; in cvGraphAddEdgeByPtr() 2779 edge = (CvGraphEdge*)cvSetNew( (CvSet*)(graph->edges) ); in cvGraphAddEdgeByPtr() [all …]
|
D | persistence.cpp | 4468 &attr, sizeof(CvGraphEdge), buf ); in icvWriteGraph() 4514 CvGraphEdge* edge = (CvGraphEdge*)reader.ptr; in icvWriteGraph() 4519 if( elem_size > (int)sizeof(CvGraphEdge) ) in icvWriteGraph() 4523 memcpy( src_ptr2, edge + 1, elem_size - sizeof(CvGraphEdge) ); in icvWriteGraph() 4662 edge_size = icvCalcElemSize( dst_edge_dt, sizeof(CvGraphEdge) ); in icvReadGraph() 4718 CvGraphEdge* edge = 0; in icvReadGraph() 4735 if( elem_size > (int)sizeof(CvGraphEdge) ) in icvReadGraph() 4739 memcpy( edge + 1, dst_ptr2, elem_size - sizeof(CvGraphEdge) ); in icvReadGraph()
|
/external/opencv3/modules/core/test/ |
D | test_io.cpp | 133 sizeof(CvGraphEdge), storage ); in run() 140 CvGraphEdge* edge; in run() 369 CvGraphEdge* edge2 = cvFindGraphEdge(graph2, edges[i][0], edges[i][1]); in run() 370 CvGraphEdge* edge3 = cvFindGraphEdge(graph3, edges[i][0], edges[i][1]); in run()
|
D | test_ds.cpp | 1449 CvGraphEdge* edge = 0, *edge2 = 0; in test_graph_ops() 1621 edge = (CvGraphEdge*)&elem_buf[0]; in test_graph_ops() 1822 int delta = k == 0 ? sizeof(CvGraphVtx) : sizeof(CvGraphEdge); in run() 1885 sizeof(CvGraphEdge), storage ); in create_random_graph() 1928 …storage_blocksize = MAX(storage_blocksize, (int)(sizeof(CvGraphEdge) + sizeof(CvMemBlock) + sizeof… in run() 1946 sizeof(CvGraphVtx), sizeof(CvGraphEdge), storage ); in run() 1960 CvGraphEdge* edge; in run()
|
/external/opencv/cxcore/include/ |
D | cxcore.h | 1176 const CvGraphEdge* edge CV_DEFAULT(NULL), 1177 CvGraphEdge** inserted_edge CV_DEFAULT(NULL) ); 1181 const CvGraphEdge* edge CV_DEFAULT(NULL), 1182 CvGraphEdge** inserted_edge CV_DEFAULT(NULL) ); 1190 CVAPI(CvGraphEdge*) cvFindGraphEdge( const CvGraph* graph, int start_idx, int end_idx ); 1191 CVAPI(CvGraphEdge*) cvFindGraphEdgeByPtr( const CvGraph* graph, 1235 (((CvGraphEdge*)(edge))->flags & CV_GRAPH_ITEM_VISITED_FLAG) 1243 CvGraphEdge* edge; /* current edge */
|
D | cxtypes.h | 1288 struct CvGraphEdge* next[2]; \ 1294 struct CvGraphEdge* first; 1297 typedef struct CvGraphEdge struct 1301 CvGraphEdge; typedef
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | core_c.h | 1797 const CvGraphEdge* edge CV_DEFAULT(NULL), 1798 CvGraphEdge** inserted_edge CV_DEFAULT(NULL) ); 1802 const CvGraphEdge* edge CV_DEFAULT(NULL), 1803 CvGraphEdge** inserted_edge CV_DEFAULT(NULL) ); 1811 CVAPI(CvGraphEdge*) cvFindGraphEdge( const CvGraph* graph, int start_idx, int end_idx ); 1812 CVAPI(CvGraphEdge*) cvFindGraphEdgeByPtr( const CvGraph* graph, 1856 (((CvGraphEdge*)(edge))->flags & CV_GRAPH_ITEM_VISITED_FLAG) 1864 CvGraphEdge* edge; /* current edge */
|
D | types_c.h | 1318 struct CvGraphEdge* next[2]; \ 1324 struct CvGraphEdge* first; 1327 typedef struct CvGraphEdge struct 1331 CvGraphEdge; typedef
|