Searched defs:nPoints (Results 1 - 7 of 7) sorted by relevance

/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_path.cpp123 FX_BOOL CFX_PathData::SetPointCount(int nPoints) argument
125 m_PointCount = nPoints;
126 if (m_AllocCount < nPoints) {
131 m_pPoints = FX_Alloc(FX_PATHPOINT, nPoints);
135 m_AllocCount = nPoints;
139 FX_BOOL CFX_PathData::AllocPointCount(int nPoints) argument
141 if (m_AllocCount < nPoints) {
142 FX_PATHPOINT* pNewBuf = FX_Alloc(FX_PATHPOINT, nPoints);
153 m_AllocCount = nPoints;
167 void CFX_PathData::TrimPoints(int nPoints) argument
[all...]
H A Dfx_ge_ps.cpp92 int nPoints = pPathData->GetPointCount(); local
94 buf.EstimateSize(nPoints * 10);
95 for (int i = 0; i < nPoints; i ++) {
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsgmt.c93 cmsUInt32Number nPoints,
111 SampledPoints = (cmsFloat32Number*) _cmsCalloc(ContextID, nPoints, sizeof(cmsFloat32Number));
114 for (i=0; i < nPoints; i++) {
119 cmyk[3] = (cmsFloat32Number) ((i * 100.0) / (nPoints-1));
125 out = cmsBuildTabulatedToneCurveFloat(ContextID, nPoints, SampledPoints);
140 cmsUInt32Number nPoints,
160 in = ComputeKToLstar(ContextID, nPoints, nProfiles - 1, Intents, hProfiles, BPC, AdaptationStates, dwFlags);
163 out = ComputeKToLstar(ContextID, nPoints, 1,
176 KTone = cmsJoinToneCurve(ContextID, in, out, nPoints);
92 ComputeKToLstar(cmsContext ContextID, cmsUInt32Number nPoints, cmsUInt32Number nProfiles, const cmsUInt32Number Intents[], const cmsHPROFILE hProfiles[], const cmsBool BPC[], const cmsFloat64Number AdaptationStates[], cmsUInt32Number dwFlags) argument
139 _cmsBuildKToneCurve(cmsContext ContextID, cmsUInt32Number nPoints, cmsUInt32Number nProfiles, const cmsUInt32Number Intents[], const cmsHPROFILE hProfiles[], const cmsBool BPC[], const cmsFloat64Number AdaptationStates[], cmsUInt32Number dwFlags) argument
/external/pdfium/core/src/fxge/agg/agg23/
H A Dfx_agg_driver.cpp37 int nPoints = pPathData->GetPointCount(); local
39 for (int i = 0; i < nPoints; i ++) {
49 if (pPoints[i - 1].m_Flag == FXPT_MOVETO && (i == nPoints - 1 || pPoints[i + 1].m_Flag == FXPT_MOVETO) &&
/external/proguard/src/proguard/gui/splash/
H A DOverrideGraphics2D.java344 public void drawPolygon(int[] xPoints, int[] yPoints, int nPoints) argument
346 graphics.drawPolygon(xPoints, yPoints, nPoints);
354 public void drawPolyline(int[] xPoints, int[] yPoints, int nPoints) argument
356 graphics.drawPolyline(xPoints, yPoints, nPoints);
424 public void fillPolygon(int[] xPoints, int[] yPoints, int nPoints) argument
426 graphics.fillPolygon(xPoints, yPoints, nPoints);
/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_device.cpp670 int nPoints = pPathData->GetPointCount(); local
672 for(int i = 0; i < nPoints; i++) {
H A Dfx_win32_gdipext.cpp855 int nPoints = pPathData->GetPointCount(); local
856 if (nPoints == 0) {
870 PointF *points = FX_Alloc(PointF, nPoints);
874 BYTE * types = FX_Alloc(BYTE, nPoints);
884 for(int i = 0; i < nPoints; i++) {
914 if (pPoints[i - 1].m_Flag == FXPT_MOVETO && (i == nPoints - 1 || pPoints[i + 1].m_Flag == FXPT_MOVETO) &&
951 if (nPoints == 4 && pGraphState == NULL) {
963 CallFunc(GdipCreatePath2)(points, types, nPoints, GdiFillType2Gdip(new_fill_mode), &pGpPath);
985 for (int i = 0; i < nPoints; i ++) {
986 if (i == nPoints
[all...]

Completed in 1376 milliseconds