Searched refs:cpoints (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mgl/
H A Ddc.cpp461 MGLPoint *cpoints = new MGLPoint[n+1]; local
465 cpoints[i].x = (int)(XLOG2DEV(points[i].x));
466 cpoints[i].y = (int)(YLOG2DEV(points[i].y));
468 cpoints[n] = cpoints[0];
475 m_MGLDC->fillPolygon(n, cpoints, xxoffset, yyoffset);
486 cpoints[i].x += m_penOfsX;
487 cpoints[i].y += m_penOfsY;
490 m_MGLDC->polyLine(n+1, cpoints);
493 delete[] cpoints;
502 MGLPoint *cpoints = new MGLPoint[n]; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/msw/
H A Ddc.cpp791 POINT *cpoints = new POINT[n]; local
795 cpoints[i].x = (int)(points[i].x + xoffset);
796 cpoints[i].y = (int)(points[i].y + yoffset);
798 CalcBoundingBox(cpoints[i].x, cpoints[i].y);
803 (void)Polygon(GetHdc(), cpoints, n); local
807 delete[] cpoints;
846 POINT *cpoints = new POINT[cnt];
849 cpoints[i].x = (int)(points[i].x + xoffset);
850 cpoints[
887 POINT *cpoints = new POINT[n]; local
896 (void)Polyline(GetHdc(), cpoints, n); local
[all...]
H A Dgraphics.cpp1094 Point *cpoints = new Point[n]; local
1097 cpoints[i].X = (int)(points[i].m_x );
1098 cpoints[i].Y = (int)(points[i].m_y );
1101 m_context->DrawLines( ((wxGDIPlusPenData*)m_pen.GetGraphicsData())->GetGDIPlusPen() , cpoints , n ) ;
1102 delete[] cpoints;
1109 Point *cpoints = new Point[n]; local
1112 cpoints[i].X = (int)(points[i].m_x );
1113 cpoints[i].Y = (int)(points[i].m_y );
1117 m_context->FillPolygon( ((wxGDIPlusBrushData*)m_brush.GetRefData())->GetGDIPlusBrush() , cpoints , n ) ;
1119 m_context->DrawLines( ((wxGDIPlusPenData*)m_pen.GetGraphicsData())->GetGDIPlusPen() , cpoints ,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dsbgdec.c1042 int32_t cpoints[][2] = { local
1053 for (i = 0; i < FF_ARRAY_ELEMS(cpoints); i++) {
1054 ts4 = FFMIN(ts2, ts1 + cpoints[i][0] * dt);
1056 ts3, f, a, ts4, f, cpoints[i][1]);
1060 a = cpoints[i][1];

Completed in 184 milliseconds