/external/pdfium/third_party/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 | 122 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 …]
|
D | fx_ge_ps.cpp | 94 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/ |
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 | 1106 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()
|
D | fx_win32_device.cpp | 762 int nPoints = pPathData->GetPointCount(); in _SetPathToDC() local 764 for (int i = 0; i < nPoints; i++) { in _SetPathToDC()
|
/external/pdfium/core/include/fxge/ |
D | fx_ge.h | 131 void SetPointCount(int nPoints); 132 void AllocPointCount(int nPoints); 155 void TrimPoints(int nPoints);
|
/external/pdfium/core/src/fxge/skia/ |
D | fx_skia_device.cpp | 136 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/ |
D | fx_basic_coords.cpp | 221 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/ |
D | fx_agg_driver.cpp | 35 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/ |
D | fx_coordinates.h | 598 static CFX_FloatRect GetBBox(const CFX_FloatPoint* pPoints, int nPoints);
|
/external/pdfium/third_party/lcms2-2.6/include/ |
D | lcms2.h | 1161 …urve(cmsContext ContextID, const cmsToneCurve* X, const cmsToneCurve* Y, cmsUInt32Number nPoints);
|