Home
last modified time | relevance | path

Searched refs:prev_v (Results 1 – 7 of 7) sorted by relevance

/external/opencv/cv/src/
Dcvcontourtree.cpp143 tree_one.next_v1 = tree_one.next_v2 = tree_one.prev_v = NULL; in icvCreateContourTree()
260 ptr1[j_1]->prev_v = cur_adr; in icvCreateContourTree()
262 ptr1[j]->prev_v = cur_adr; in icvCreateContourTree()
289 ptr1[j_1]->prev_v = cur_adr; in icvCreateContourTree()
291 ptr1[j]->prev_v = cur_adr; in icvCreateContourTree()
430 ptr2[3]->prev_v = cur_adr; in icvCreateContourTree()
432 ptr2[0]->prev_v = cur_adr; in icvCreateContourTree()
441 ptr2[1]->prev_v = cur_adr; in icvCreateContourTree()
443 ptr2[2]->prev_v = cur_adr; in icvCreateContourTree()
457 ptr2[1]->prev_v = cur_adr; in icvCreateContourTree()
[all …]
Dcvemd.cpp592 CvNode1D v0_head, v1_head, *cur_v, *prev_v; in icvFindBasicVariables() local
625 prev_v = &v1_head; in icvFindBasicVariables()
653 prev_v->next = cur_v->next; in icvFindBasicVariables()
672 prev_v = &v0_head; in icvFindBasicVariables()
681 prev_v->next = cur_v->next; in icvFindBasicVariables()
684 cur_v = prev_v->next; in icvFindBasicVariables()
688 prev_v = cur_v; in icvFindBasicVariables()
913 CvNode1D v_head, *cur_v, *prev_v; in icvRussel() local
980 prev_v = &v_head; in icvRussel()
990 prev_v_min_j = prev_v; in icvRussel()
[all …]
D_cvgeom.h68 …struct _CvTrianAttr* prev_v; /* pointer to the parent element on the previous level of the tree…
/external/freetype/src/autofit/
Dafhints.c1060 AF_Point prev_v = point + point->v; in af_glyph_hints_reload() local
1063 in_x = point->fx - prev_v->fx; in af_glyph_hints_reload()
1064 in_y = point->fy - prev_v->fy; in af_glyph_hints_reload()
1076 prev_v->u = (FT_Pos)( next_u - prev_v ); in af_glyph_hints_reload()
1077 next_u->v = -prev_v->u; in af_glyph_hints_reload()
1110 AF_Point prev_v = point + point->v; in af_glyph_hints_reload() local
1113 if ( ft_corner_is_flat( point->fx - prev_v->fx, in af_glyph_hints_reload()
1114 point->fy - prev_v->fy, in af_glyph_hints_reload()
1122 prev_v->u = (FT_Pos)( next_u - prev_v ); in af_glyph_hints_reload()
1123 next_u->v = -prev_v->u; in af_glyph_hints_reload()
/external/webp/src/dsp/
Dyuv_neon.c152 const uint8x8_t prev_v = vld1_u8(v); in ConvertARGBToUV_NEON() local
154 vst1_u8(v, vrhadd_u8(V, prev_v)); in ConvertARGBToUV_NEON()
Dyuv_sse2.c681 const __m128i prev_v = LOAD_16(v); in ConvertARGBToUV_SSE2() local
683 V0 = _mm_avg_epu8(V0, prev_v); in ConvertARGBToUV_SSE2()
/external/opencv/cvaux/src/
Dcvvecfacetracking.cpp824 CvPoint prev_v = {pPrev[element[0]].ptCenter.x - pPrev[element[1]].ptCenter.x, in GetEnergy2() local
827 double prev_d = sqrt((double)prev_v.x*prev_v.x + prev_v.y*prev_v.y); in GetEnergy2()