HomeSort by relevance Sort by last modified time
    Searched refs:LCM (Results 1 - 2 of 2) sorted by null

  /external/opencv/cvaux/src/
cvlcm.cpp 102 // LCM : in&out.
107 int _cvConstructLCM(CvLCM* LCM);
279 CvLCM LCM = {NULL, VoronoiDiagram,NULL,NULL,maxWidth};
301 LCM.EdgeStorage = cvCreateChildMemStorage(LCMstorage);
302 LCM.ContourStorage = cvCreateChildMemStorage(LCMstorage);
303 LCM.Graph = cvCreateGraph(CV_SEQ_KIND_GRAPH|CV_GRAPH_FLAG_ORIENTED,
308 if(!_cvConstructLCM(&LCM))
309 cvReleaseLinearContorModelStorage(&LCM.Graph);
313 return LCM.Graph;
351 int _cvConstructLCM(CvLCM* LCM)
    [all...]
  /external/llvm/lib/CodeGen/
TargetSchedule.cpp 48 static unsigned lcm(unsigned A, unsigned B) { function
49 unsigned LCM = (uint64_t(A) * B) / gcd(A, B);
50 assert((LCM >= A && LCM >= B) && "LCM overflow");
51 return LCM;
68 ResourceLCM = lcm(ResourceLCM, NumUnits);

Completed in 49 milliseconds