Home
last modified time | relevance | path

Searched refs:nPoints (Results 1 – 14 of 14) sorted by relevance

/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
Dcmsgmt.c93 cmsUInt32Number nPoints, in ComputeKToLstar() argument
111 SampledPoints = (cmsFloat32Number*) _cmsCalloc(ContextID, nPoints, sizeof(cmsFloat32Number)); in ComputeKToLstar()
114 for (i=0; i < nPoints; i++) { in ComputeKToLstar()
119 cmyk[3] = (cmsFloat32Number) ((i * 100.0) / (nPoints-1)); in ComputeKToLstar()
125 out = cmsBuildTabulatedToneCurveFloat(ContextID, nPoints, SampledPoints); in ComputeKToLstar()
140 cmsUInt32Number nPoints, in _cmsBuildKToneCurve() argument
160 …in = ComputeKToLstar(ContextID, nPoints, nProfiles - 1, Intents, hProfiles, BPC, AdaptationStates… in _cmsBuildKToneCurve()
163 out = ComputeKToLstar(ContextID, nPoints, 1, in _cmsBuildKToneCurve()
176 KTone = cmsJoinToneCurve(ContextID, in, out, nPoints); in _cmsBuildKToneCurve()
Dlcms2_internal.h1017 cmsUInt32Number nPoints,
/external/fonttools/Lib/fontTools/ttLib/tables/
D_m_a_x_p.py87 nPoints, nContours = g.getMaxpValues()
88 maxPoints = max(maxPoints, nPoints)
91 nPoints, nContours, componentDepth = g.getCompositeMaxpValues(glyfTable)
92 maxCompositePoints = max(maxCompositePoints, nPoints)
D_g_l_y_f.py331 nPoints = 0
341 nPoints = nPoints + nP
343 return nPoints, nContours, maxComponentDepth
/external/pdfium/core/src/fxge/ge/
Dfx_ge_path.cpp123 FX_BOOL CFX_PathData::SetPointCount(int nPoints) in SetPointCount() argument
125 m_PointCount = nPoints; in SetPointCount()
126 if (m_AllocCount < nPoints) { in SetPointCount()
131 m_pPoints = FX_Alloc(FX_PATHPOINT, nPoints); in SetPointCount()
135 m_AllocCount = nPoints; in SetPointCount()
139 FX_BOOL CFX_PathData::AllocPointCount(int nPoints) in AllocPointCount() argument
141 if (m_AllocCount < nPoints) { in AllocPointCount()
142 FX_PATHPOINT* pNewBuf = FX_Alloc(FX_PATHPOINT, nPoints); in AllocPointCount()
153 m_AllocCount = nPoints; in AllocPointCount()
167 void CFX_PathData::TrimPoints(int nPoints) in TrimPoints() argument
[all …]
Dfx_ge_ps.cpp92 int nPoints = pPathData->GetPointCount(); in OutputPath() local
94 buf.EstimateSize(nPoints * 10); in OutputPath()
95 for (int i = 0; i < nPoints; i ++) { in OutputPath()
/external/proguard/src/proguard/gui/splash/
DOverrideGraphics2D.java344 public void drawPolygon(int[] xPoints, int[] yPoints, int nPoints) in drawPolygon() argument
346 graphics.drawPolygon(xPoints, yPoints, nPoints); in drawPolygon()
354 public void drawPolyline(int[] xPoints, int[] yPoints, int nPoints) in drawPolyline() argument
356 graphics.drawPolyline(xPoints, yPoints, nPoints); in drawPolyline()
424 public void fillPolygon(int[] xPoints, int[] yPoints, int nPoints) in fillPolygon() argument
426 graphics.fillPolygon(xPoints, yPoints, nPoints); in fillPolygon()
/external/pdfium/core/src/fxge/win32/
Dfx_win32_gdipext.cpp855 int nPoints = pPathData->GetPointCount(); in DrawPath() local
856 if (nPoints == 0) { in DrawPath()
870 PointF *points = FX_Alloc(PointF, nPoints); in DrawPath()
874 BYTE * types = FX_Alloc(BYTE, nPoints); in DrawPath()
884 for(int i = 0; i < nPoints; i++) { in DrawPath()
914 …if (pPoints[i - 1].m_Flag == FXPT_MOVETO && (i == nPoints - 1 || pPoints[i + 1].m_Flag == FXPT_MOV… in DrawPath()
951 if (nPoints == 4 && pGraphState == NULL) { in DrawPath()
963 CallFunc(GdipCreatePath2)(points, types, nPoints, GdiFillType2Gdip(new_fill_mode), &pGpPath); in DrawPath()
985 for (int i = 0; i < nPoints; i ++) { in DrawPath()
986 if (i == nPoints - 1 || types[i + 1] == PathPointTypeStart) { in DrawPath()
Dfx_win32_device.cpp670 int nPoints = pPathData->GetPointCount(); in _SetPathToDC() local
672 for(int i = 0; i < nPoints; i++) { in _SetPathToDC()
/external/pdfium/core/include/fxge/
Dfx_ge.h189 FX_BOOL SetPointCount(int nPoints);
191 FX_BOOL AllocPointCount(int nPoints);
213 void TrimPoints(int nPoints);
/external/pdfium/core/src/fxcrt/
Dfx_basic_coords.cpp230 CFX_FloatRect CFX_FloatRect::GetBBox(const CFX_FloatPoint* pPoints, int nPoints) in GetBBox() argument
232 if (nPoints == 0) { in GetBBox()
236 for (int i = 1; i < nPoints; i ++) { in GetBBox()
/external/pdfium/core/src/fxge/agg/agg23/
Dfx_agg_driver.cpp37 int nPoints = pPathData->GetPointCount(); in BuildPath() local
39 for (int i = 0; i < nPoints; i ++) { in BuildPath()
49 …if (pPoints[i - 1].m_Flag == FXPT_MOVETO && (i == nPoints - 1 || pPoints[i + 1].m_Flag == FXPT_MOV… in BuildPath()
/external/pdfium/core/include/fxcrt/
Dfx_coordinates.h736 static CFX_FloatRect GetBBox(const CFX_FloatPoint* pPoints, int nPoints);
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/include/
Dlcms2.h1161 …urve(cmsContext ContextID, const cmsToneCurve* X, const cmsToneCurve* Y, cmsUInt32Number nPoints);