Searched refs:h_next (Results 1 - 20 of 20) sorted by relevance

/external/opencv/cvaux/src/
H A Dcvbgfg_common.cpp52 for( ; segments; segments = ((CvSeq*)segments)->h_next )
55 seq.v_next = seq.h_next = NULL;
110 for( c=contours; c != 0; c = c->h_next )
H A Dextendededges.cpp82 tail_seq->h_next = new_seq;
102 while( !current->h_next )
110 current = current->h_next;
H A Dcvbgfg_gaussmix.cpp325 for( seq = first_seq; seq; seq = seq->h_next )
334 prev_seq->h_next = seq->h_next;
335 if( seq->h_next ) seq->h_next->h_prev = prev_seq;
339 first_seq = seq->h_next;
340 if( seq->h_next ) seq->h_next->h_prev = NULL;
H A Dcvbgfg_acmmm2003.cpp440 for( seq = first_seq; seq; seq = seq->h_next )
450 prev_seq->h_next = seq->h_next;
451 if( seq->h_next ) seq->h_next->h_prev = prev_seq;
455 first_seq = seq->h_next;
456 if( seq->h_next ) seq->h_next->h_prev = NULL;
H A Dcvsegment.cpp460 seq->h_next = exterior->v_next;
461 if( seq->h_next )
462 seq->h_next->h_prev = seq;
560 prev_seq->h_next = tmpseq;
H A Dcvfacedetection.cpp254 for (CvSeq* external = seq; external; external = external->h_next)
266 for (CvSeq* internal = external->v_next; internal; internal = internal->h_next)
H A Dcvmorphcontours.cpp585 for( ; corr; corr = corr->h_next )
815 corr01->h_next = cvCreateSeq( 0,
819 corr01 = corr01->h_next;
827 corr01->h_next = cvCreateSeq( 0,
831 corr01 = corr01->h_next;
H A Dcvlcm.cpp291 SiteSet = (CvSet*)SiteSet->h_next)
366 SiteSet = (CvSet*)SiteSet->h_next)
H A Dcvlee.cpp46 #define NEXT_SEQ(seq,seq_first) ((seq) == (seq_first) ? seq->v_next : seq->h_next)
1307 CurContourSeq = CurContourSeq->h_next)
1454 for(Seq = (CvSeq*)VoronoiDiagram->sites; Seq != NULL; Seq = Seq->h_next)
1457 for(Seq = (CvSeq*)VoronoiDiagram->edges; Seq != NULL; Seq = Seq->h_next)
1561 CurContourSeq = CurContourSeq->h_next)
1661 CurSeq->h_next = pHole->SiteSeq;
1667 CurSeq->h_next = NULL;
1779 PrevNewSiteSeq->h_next = (CvSeq*)CurrNewSiteSeq;
1916 NewSiteSeqPrev->h_next = (CvSeq*)NewSiteSeq;
1969 PrevNewSiteSeq->h_next
[all...]
H A Dcvvecfacetracking.cpp314 for (CvSeq* external = seq; external; external = external->h_next)
324 for (CvSeq* internal = external->v_next; internal; internal = internal->h_next)
/external/libedit/src/
H A Dhistory.c70 history_gfun_t h_next; /* Get the next element */ local
81 #define HNEXT(h, ev) (*(h)->h_next)((h)->h_ref, ev)
581 h->h_next = history_def_next;
604 if (h->h_next == history_def_next)
619 if (h->h_next != history_def_next) {
638 if (h->h_next != history_def_next) {
658 if (h->h_next != history_def_next) {
673 if (h->h_next != history_def_next) {
690 if (nh->h_first == NULL || nh->h_next == NULL || nh->h_last == NULL ||
694 if (h->h_next !
[all...]
/external/opencv/cv/src/
H A Dcvapprox.cpp465 prev_contour->h_next = contour;
490 while( src_seq->h_next == 0 )
500 src_seq = src_seq->h_next;
1026 prev_contour->h_next = contour;
1045 while( src_seq->h_next == 0 )
1055 src_seq = src_seq->h_next;
H A Dcvdistransform.cpp838 for( label = 1; contours != 0; contours = contours->h_next, label++ )
H A Dcvcontours.cpp345 It's marked as "link to contour" and h_next pointer of it is set to
1468 prev = prev->h_next = contour;
/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp3813 struct CvTreeNode* h_next; /* next sequence */ member in struct:CvTreeNode
3838 node->h_next = parent->v_next;
3867 if( node->h_next )
3868 node->h_next->h_prev = node->h_prev;
3871 node->h_prev->h_next = node->h_next;
3881 parent->v_next = node->h_next;
3938 while( node->h_next == 0 )
3947 node = node && treeIterator->max_level != 0 ? node->h_next : 0;
3995 while( node->h_next )
[all...]
H A Dcxdrawing.cpp2420 CvSeq *contour0 = contour, *h_next = 0; local
2454 h_next = contour->h_next;
2455 contour->h_next = 0;
2591 if( h_next && contour0 )
2592 contour0->h_next = h_next;
H A Dcxpersistence.cpp4438 prev_seq->h_next = seq;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/arm/neon/
H A Dvp9_mb_lpf_neon.asm71 b h_next
89 b h_next
110 h_next label
/external/libvpx/libvpx/vp9/common/arm/neon/
H A Dvp9_mb_lpf_neon.asm71 b h_next
89 b h_next
110 h_next label
/external/opencv/cxcore/include/
H A Dcxtypes.h1202 struct node_type* h_next; /* Next sequence. */ \

Completed in 337 milliseconds