Home | History | Annotate | Download | only in src

Lines Matching refs:RESULT

1147             Result: out, composition of A and B (Result = AB)
1151 void _cvCalcComposition(T* Result,T* A,T* B);
1337 int RESULT = 0;
1401 RESULT = cvVoronoiDiagramFromContour(ApproxContourSeq,VoronoiDiagram,VoronoiStorage,CV_LEE_INT,-1,10);
1408 RESULT = cvVoronoiDiagramFromContour(ApproxContourSeq,VoronoiDiagram,VoronoiStorage,CV_LEE_INT,-1,1);
1409 if(RESULT)
1416 RESULT = cvVoronoiDiagramFromContour(*ContourSeq,VoronoiDiagram,VoronoiStorage,CV_LEE_INT,-1,10);
1441 return RESULT;
1540 int result = 0;
1544 case CV_LEE_INT : result = _cvConstructExtSites(pVoronoiDiagram,ContourSeq,contour_orientation,(int)1);
1546 case CV_LEE_FLOAT : result = _cvConstructExtSites(pVoronoiDiagram,ContourSeq,contour_orientation,(float)1);
1548 case CV_LEE_DOUBLE : result = _cvConstructExtSites(pVoronoiDiagram,ContourSeq,contour_orientation,(double)1);
1553 if(!result)
1569 case CV_LEE_INT : result = _cvConstructIntSites(pVoronoiDiagram,CurSiteSeq,CurContourSeq,pTopSite,contour_orientation,(int)1);
1571 case CV_LEE_FLOAT : result = _cvConstructIntSites(pVoronoiDiagram,CurSiteSeq,CurContourSeq,pTopSite,contour_orientation,(float)1);
1573 case CV_LEE_DOUBLE :result = _cvConstructIntSites(pVoronoiDiagram,CurSiteSeq,CurContourSeq,pTopSite,contour_orientation,(double)1);
1575 default: result = 0;
1577 if(!result)
1615 int result;
1629 result = _cvFindOppositSiteCCW(pHole,pVoronoiDiagram);
1631 result = _cvFindOppositSiteCW(pHole,pVoronoiDiagram);
1633 if(!result)
4620 void _cvCalcComposition(T* Result,T* A,T* B)
4622 Result[0] = A[0]*B[0] + A[1]*B[3];
4623 Result[1] = A[0]*B[1] + A[1]*B[4];
4624 Result[3] = A[3]*B[0] + A[4]*B[3];
4625 Result[4] = A[3]*B[1] + A[4]*B[4];
4626 Result[2] = A[0]*B[2] + A[1]*B[5] + A[2];
4627 Result[5] = A[3]*B[2] + A[4]*B[5] + A[5];