/external/opencv/cxcore/src/ |
D | cxdatastructs.cpp | 2962 cvGraphRemoveVtxByPtr( CvGraph* graph, CvGraphVtx* vtx ) in cvGraphRemoveVtxByPtr() argument 2970 if( !graph || !vtx ) in cvGraphRemoveVtxByPtr() 2973 if( !CV_IS_SET_ELEM(vtx)) in cvGraphRemoveVtxByPtr() 2979 CvGraphEdge *edge = vtx->first; in cvGraphRemoveVtxByPtr() 2982 cvGraphRemoveEdgeByPtr( graph, edge->vtx[0], edge->vtx[1] ); in cvGraphRemoveVtxByPtr() 2985 cvSetRemoveByPtr( (CvSet*)graph, vtx ); in cvGraphRemoveVtxByPtr() 2998 CvGraphVtx *vtx = 0; in cvGraphRemoveVtx() local 3007 vtx = cvGetGraphVtx( graph, index ); in cvGraphRemoveVtx() 3008 if( !vtx ) in cvGraphRemoveVtx() 3014 CvGraphEdge *edge = vtx->first; in cvGraphRemoveVtx() [all …]
|
D | cxdrawing.cpp | 944 CvSeq vtx; in icvEllipseEx() local 952 v, count, &vtx, &block )); in icvEllipseEx() 954 CV_CALL( icvCollectPolyEdges( img, &vtx, edges, color, line_type, XY_SHIFT )); in icvEllipseEx() 1986 CvSeq vtx; in cvFillPoly() local 2002 pts[i], npts[i], &vtx, &block ); in cvFillPoly() 2004 CV_CALL( icvCollectPolyEdges( mat, &vtx, edges, buf, line_type, shift )); in cvFillPoly()
|
D | cxpersistence.cpp | 4513 CvGraphVtx* vtx = (CvGraphVtx*)reader.ptr; in icvWriteGraph() local 4514 flag_buf[k] = vtx->flags; in icvWriteGraph() 4515 vtx->flags = k++; in icvWriteGraph() 4582 ((int*)src_ptr)[0] = edge->vtx[0]->flags; in icvWriteGraph() 4583 ((int*)src_ptr)[1] = edge->vtx[1]->flags; in icvWriteGraph() 4765 CvGraphVtx* vtx; in icvReadGraph() local 4766 cvGraphAddVtx( graph, 0, &vtx ); in icvReadGraph() 4767 vtx_buf[i] = vtx; in icvReadGraph() 4769 memcpy( vtx + 1, dst_ptr, src_elem_size ); in icvReadGraph()
|
/external/eigen/unsupported/test/ |
D | openglsupport.cpp | 72 GLint createShader(const char* vtx, const char* frg) in createShader() argument 79 glShaderSource(vtx_id, 1, &vtx, 0); in createShader() 219 const char* vtx = "void main(void) { gl_Position = gl_Vertex; }\n"; in test_openglsupport() local 236 GLint prg_id = createShader(vtx,frg); in test_openglsupport() 264 GLint prg_id = createShader(vtx,frg); in test_openglsupport() 294 GLint prg_id = createShader(vtx,frg); in test_openglsupport() 319 GLint prg_id = createShader(vtx,frg); in test_openglsupport()
|
/external/opencv/cvaux/src/ |
D | enmin.cpp | 77 CvGraphVtx vtx; 408 int tempVtxIdx = cvGraphVtxIdx( graph, graphEdge -> vtx[1] ); 450 int tempVtxIdx = cvGraphVtxIdx( graph, graphEdge -> vtx[1] ); 454 tempVtxIdx = cvGraphVtxIdx( graph, graphEdge -> vtx[0] ); 559 hlpGraphEdge -> vtx[1] ); 583 hlpGraphEdge -> vtx[1] ); 631 CvGraphVtx* hlpGraphVtx2 = hlpGraphEdge -> vtx[ 1 ]; 639 CvGraphVtx* hlpGraphVtx3 = hlpGraphEdge -> vtx[0]; 658 CvGraphVtx* hlpGraphVtx3 = hlpGraphEdge -> vtx[1]; 740 hlpGraphVtx2 = hlpGraphEdge -> vtx[ 1 ]; [all …]
|
D | cvclique.cpp | 85 assert(edge->vtx[0]==vertex||edge->vtx[1] == vertex ), \ 86 (edge->vtx[0] == vertex)?edge->vtx[1]:edge->vtx[0] \
|
D | cvlcm.cpp | 601 pLCMEdge->vtx[0] = pLCMEdge->vtx[1] = NULL; in _cvCreateLCMEdge() 620 LCMEdge->vtx[i] = (CvGraphVtx*)LCMNode; in _cvAttachLCMEdgeToLCMNode() 625 LCMEdge_prev->next[(LCMEdge_prev->vtx[0] != (CvGraphVtx*)LCMNode)] = (CvGraphEdge*)LCMEdge; in _cvAttachLCMEdgeToLCMNode()
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
D | SkeletonControl.java | 345 float vtx = posBuf[idxPositions++]; in applySkinning() local 357 rx += (mat.m00 * vtx + mat.m01 * vty + mat.m02 * vtz + mat.m03) * weight; in applySkinning() 358 ry += (mat.m10 * vtx + mat.m11 * vty + mat.m12 * vtz + mat.m13) * weight; in applySkinning() 359 rz += (mat.m20 * vtx + mat.m21 * vty + mat.m22 * vtz + mat.m23) * weight; in applySkinning() 460 float vtx = posBuf[idxPositions++]; in applySkinningTangents() local 479 rx += (mat.m00 * vtx + mat.m01 * vty + mat.m02 * vtz + mat.m03) * weight; in applySkinningTangents() 480 ry += (mat.m10 * vtx + mat.m11 * vty + mat.m12 * vtz + mat.m13) * weight; in applySkinningTangents() 481 rz += (mat.m20 * vtx + mat.m21 * vty + mat.m22 * vtz + mat.m23) * weight; in applySkinningTangents()
|
/external/opencv/cxcore/include/ |
D | cxcore.h | 1161 CVAPI(int) cvGraphAddVtx( CvGraph* graph, const CvGraphVtx* vtx CV_DEFAULT(NULL), 1167 CVAPI(int) cvGraphRemoveVtxByPtr( CvGraph* graph, CvGraphVtx* vtx ); 1203 CVAPI(int) cvGraphVtxDegreeByPtr( const CvGraph* graph, const CvGraphVtx* vtx ); 1210 #define cvGraphVtxIdx( graph, vtx ) ((vtx)->flags & CV_SET_ELEM_IDX_MASK) argument 1232 #define CV_IS_GRAPH_VERTEX_VISITED(vtx) \ argument 1233 (((CvGraphVtx*)(vtx))->flags & CV_GRAPH_ITEM_VISITED_FLAG) 1241 CvGraphVtx* vtx; /* current graph vertex (or current edge origin) */ member 1254 CvGraphVtx* vtx CV_DEFAULT(NULL),
|
D | cxtypes.h | 1289 struct CvGraphVtx* vtx[2]; 1619 (assert((edge)->vtx[0] == (vertex) || (edge)->vtx[1] == (vertex)), \ 1620 (edge)->next[(edge)->vtx[1] == (vertex)])
|
/external/opencv/cv/src/ |
D | cvstereogc.cpp | 134 static int64 icvGCMaxFlow( GCVtx* vtx, int nvtx, GCEdge* edges, GCVtx**& _orphans, int& _maxOrphans… in icvGCMaxFlow() argument 148 GCVtx* v = vtx + i; in icvGCMaxFlow() 612 static inline int icvAddTWeights( GCVtx* vtx, int sourceWeight, int sinkWeight ) in icvAddTWeights() argument 614 int w = vtx->weight; in icvAddTWeights() 619 vtx->weight = (short)(sourceWeight - sinkWeight); in icvAddTWeights()
|
/external/opencv/cv/include/ |
D | cvcompat.h | 827 CvGraphVtx* vtx CV_DEFAULT(NULL), in cvStartScanGraph() 835 temp_scanner = cvCreateGraphScanner( graph, vtx, mask ); in cvStartScanGraph()
|