Home
last modified time | relevance | path

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

/external/pdfium/third_party/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.cpp122 void CFX_PathData::SetPointCount(int nPoints) { in SetPointCount() argument
123 m_PointCount = nPoints; in SetPointCount()
124 if (m_AllocCount < nPoints) { in SetPointCount()
126 m_pPoints = FX_Alloc(FX_PATHPOINT, nPoints); in SetPointCount()
127 m_AllocCount = nPoints; in SetPointCount()
130 void CFX_PathData::AllocPointCount(int nPoints) { in AllocPointCount() argument
131 if (m_AllocCount < nPoints) { in AllocPointCount()
132 FX_PATHPOINT* pNewBuf = FX_Alloc(FX_PATHPOINT, nPoints); in AllocPointCount()
138 m_AllocCount = nPoints; in AllocPointCount()
146 void CFX_PathData::TrimPoints(int nPoints) { in TrimPoints() argument
[all …]
Dfx_ge_ps.cpp94 int nPoints = pPathData->GetPointCount(); in OutputPath() local
96 buf.EstimateSize(nPoints * 10); in OutputPath()
97 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.cpp1106 int nPoints = pPathData->GetPointCount(); in DrawPath() local
1107 if (nPoints == 0) { in DrawPath()
1124 PointF* points = FX_Alloc(PointF, nPoints); in DrawPath()
1125 BYTE* types = FX_Alloc(BYTE, nPoints); in DrawPath()
1131 for (int i = 0; i < nPoints; i++) { in DrawPath()
1162 (i == nPoints - 1 || pPoints[i + 1].m_Flag == FXPT_MOVETO) && in DrawPath()
1201 if (nPoints == 4 && !pGraphState) { in DrawPath()
1214 CallFunc(GdipCreatePath2)(points, types, nPoints, in DrawPath()
1238 for (int i = 0; i < nPoints; i++) { in DrawPath()
1239 if (i == nPoints - 1 || types[i + 1] == PathPointTypeStart) { in DrawPath()
Dfx_win32_device.cpp762 int nPoints = pPathData->GetPointCount(); in _SetPathToDC() local
764 for (int i = 0; i < nPoints; i++) { in _SetPathToDC()
/external/pdfium/core/include/fxge/
Dfx_ge.h131 void SetPointCount(int nPoints);
132 void AllocPointCount(int nPoints);
155 void TrimPoints(int nPoints);
/external/pdfium/core/src/fxge/skia/
Dfx_skia_device.cpp136 int nPoints = pFPath->GetPointCount(); in BuildPath() local
138 for (int i = 0; i < nPoints; i++) { in BuildPath()
147 (i == nPoints - 1 || pPoints[i + 1].m_Flag == FXPT_MOVETO) && in BuildPath()
/external/pdfium/core/src/fxcrt/
Dfx_basic_coords.cpp221 int nPoints) { in GetBBox() argument
222 if (nPoints == 0) { in GetBBox()
227 for (int i = 1; i < nPoints; i++) { in GetBBox()
/external/pdfium/core/src/fxge/agg/src/
Dfx_agg_driver.cpp35 int nPoints = pPathData->GetPointCount(); in BuildPath() local
37 for (int i = 0; i < nPoints; i++) { in BuildPath()
48 (i == nPoints - 1 || pPoints[i + 1].m_Flag == FXPT_MOVETO) && in BuildPath()
/external/pdfium/core/include/fxcrt/
Dfx_coordinates.h598 static CFX_FloatRect GetBBox(const CFX_FloatPoint* pPoints, int nPoints);
/external/pdfium/third_party/lcms2-2.6/include/
Dlcms2.h1161 …urve(cmsContext ContextID, const cmsToneCurve* X, const cmsToneCurve* Y, cmsUInt32Number nPoints);