Searched defs:v_next (Results 1 - 3 of 3) sorted by relevance

/external/freetype/src/base/
H A Dftoutln.c910 FT_Vector v_prev, v_first, v_next, v_cur; local
959 v_next = points[n + 1];
961 v_next = v_first;
964 out.x = v_next.x - v_cur.x;
965 out.y = v_next.y - v_cur.y;
1017 v_cur = v_next;
/external/pdfium/third_party/freetype/src/base/
H A Dftoutln.c917 FT_Vector v_prev, v_first, v_next, v_cur; local
966 v_next = points[n + 1];
968 v_next = v_first;
971 out.x = v_next.x - v_cur.x;
972 out.y = v_next.y - v_cur.y;
1024 v_cur = v_next;
/external/opencv/cxcore/src/
H A Dcxdatastructs.cpp3815 struct CvTreeNode* v_next; /* 2nd next sequence */ member in struct:CvTreeNode
3838 node->h_next = parent->v_next;
3840 assert( parent->v_next != node );
3842 if( parent->v_next )
3843 parent->v_next->h_prev = node;
3844 parent->v_next = node;
3880 assert( parent->v_next == node );
3881 parent->v_next = node->h_next;
3931 if( node->v_next && level+1 < treeIterator->max_level )
3933 node = node->v_next;
[all...]

Completed in 111 milliseconds