/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
D | cmsgmt.c | 93 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()
|
D | lcms2_internal.h | 1017 cmsUInt32Number nPoints,
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _m_a_x_p.py | 87 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.py | 331 nPoints = 0 341 nPoints = nPoints + nP 343 return nPoints, nContours, maxComponentDepth
|
/external/pdfium/core/src/fxge/ge/ |
D | fx_ge_path.cpp | 123 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 …]
|
D | fx_ge_ps.cpp | 92 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/ |
D | OverrideGraphics2D.java | 344 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/ |
D | fx_win32_gdipext.cpp | 855 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()
|
D | fx_win32_device.cpp | 670 int nPoints = pPathData->GetPointCount(); in _SetPathToDC() local 672 for(int i = 0; i < nPoints; i++) { in _SetPathToDC()
|
/external/pdfium/core/include/fxge/ |
D | fx_ge.h | 189 FX_BOOL SetPointCount(int nPoints); 191 FX_BOOL AllocPointCount(int nPoints); 213 void TrimPoints(int nPoints);
|
/external/pdfium/core/src/fxcrt/ |
D | fx_basic_coords.cpp | 230 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/ |
D | fx_agg_driver.cpp | 37 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/ |
D | fx_coordinates.h | 736 static CFX_FloatRect GetBBox(const CFX_FloatPoint* pPoints, int nPoints);
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/include/ |
D | lcms2.h | 1161 …urve(cmsContext ContextID, const cmsToneCurve* X, const cmsToneCurve* Y, cmsUInt32Number nPoints);
|