HomeSort by relevance Sort by last modified time
    Searched defs:ipt (Results 1 - 5 of 5) sorted by null

  /external/opencv3/samples/cpp/
kmeans.cpp 65 Point ipt = points.at<Point2f>(i); local
66 circle( img, ipt, 2, colorTab[clusterIdx], FILLED, LINE_AA );
  /external/fio/
idletime.c 46 static void free_cpu_affinity(struct idle_prof_thread *ipt)
49 fio_cpuset_exit(&ipt->cpu_mask);
53 static int set_cpu_affinity(struct idle_prof_thread *ipt)
56 if (fio_cpuset_init(&ipt->cpu_mask)) {
61 fio_cpu_set(&ipt->cpu_mask, ipt->cpu);
63 if (fio_setaffinity(gettid(), ipt->cpu_mask)) {
65 fio_cpuset_exit(&ipt->cpu_mask);
80 struct idle_prof_thread *ipt = data; local
83 pthread_mutex_lock(&ipt->init_lock)
166 struct idle_prof_thread *ipt; local
189 struct idle_prof_thread *ipt; local
312 struct idle_prof_thread *ipt; local
330 struct idle_prof_thread *ipt; local
378 struct idle_prof_thread *ipt; local
    [all...]
  /external/opencv/cv/src/
cvlkpyramid.cpp 49 CvPoint ipt; local
51 ipt.x = cvFloor( pt.x );
52 ipt.y = cvFloor( pt.y );
54 ipt.x -= win_size.width;
55 ipt.y -= win_size.height;
60 min_pt->x = MAX( 0, -ipt.x );
61 min_pt->y = MAX( 0, -ipt.y );
62 max_pt->x = MIN( win_size.width, imgSize.width - ipt.x );
63 max_pt->y = MIN( win_size.height, imgSize.height - ipt.y );
    [all...]
  /external/opencv/cxcore/include/
cxtypes.h 955 CvPoint ipt; local
956 ipt.x = cvRound(point.x);
957 ipt.y = cvRound(point.y);
959 return ipt;
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
types_c.h 928 CvPoint ipt; local
929 ipt.x = cvRound(point.x);
930 ipt.y = cvRound(point.y);
932 return ipt;
    [all...]

Completed in 3545 milliseconds