HomeSort by relevance Sort by last modified time
    Searched refs:nPoints (Results 1 - 21 of 21) sorted by null

  /external/fonttools/Lib/fontTools/ttLib/tables/
_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)
_g_l_y_f.py 331 nPoints = 0
341 nPoints = nPoints + nP
343 return nPoints, nContours, maxComponentDepth
  /external/pdfium/third_party/lcms2-2.6/src/
cmsgmt.c 93 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);
lcms2_internal.h     [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_path.cpp 122 void CFX_PathData::SetPointCount(int nPoints) {
123 m_PointCount = nPoints;
124 if (m_AllocCount < nPoints) {
126 m_pPoints = FX_Alloc(FX_PATHPOINT, nPoints);
127 m_AllocCount = nPoints;
130 void CFX_PathData::AllocPointCount(int nPoints) {
131 if (m_AllocCount < nPoints) {
132 FX_PATHPOINT* pNewBuf = FX_Alloc(FX_PATHPOINT, nPoints);
138 m_AllocCount = nPoints;
146 void CFX_PathData::TrimPoints(int nPoints) {
    [all...]
fx_ge_ps.cpp 94 int nPoints = pPathData->GetPointCount();
96 buf.EstimateSize(nPoints * 10);
97 for (int i = 0; i < nPoints; i++) {
  /external/proguard/src/proguard/gui/splash/
OverrideGraphics2D.java 344 public void drawPolygon(int[] xPoints, int[] yPoints, int nPoints)
346 graphics.drawPolygon(xPoints, yPoints, nPoints);
354 public void drawPolyline(int[] xPoints, int[] yPoints, int nPoints)
356 graphics.drawPolyline(xPoints, yPoints, nPoints);
424 public void fillPolygon(int[] xPoints, int[] yPoints, int nPoints)
426 graphics.fillPolygon(xPoints, yPoints, nPoints);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
CachedPathIteratorFactory.java 58 int nPoints = getNumberOfPoints(type) * 2; // 2 coordinates per point
61 float[] itemPoints = new float[nPoints];
62 System.arraycopy(points, 0, itemPoints, 0, nPoints);
  /external/pdfium/core/src/fxge/win32/
fx_win32_gdipext.cpp     [all...]
fx_win32_device.cpp 762 int nPoints = pPathData->GetPointCount();
764 for (int i = 0; i < nPoints; i++) {
    [all...]
  /external/opencv3/modules/core/misc/java/test/
CoreTest.java 854 int nPoints = Math.min(gray0.cols(), gray0.rows());
856 Point point2 = new Point(nPoints, nPoints);
861 assertTrue(nPoints == Core.countNonZero(gray0));
865 int nPoints = Math.min(gray0.cols(), gray0.rows());
867 Point point2 = new Point(nPoints, nPoints);
871 assertTrue(nPoints == Core.countNonZero(gray0));
875 int nPoints = Math.min(gray0.cols(), gray0.rows());
877 Point point2 = new Point(nPoints, nPoints)
    [all...]
  /external/pdfium/core/include/fxge/
fx_ge.h 131 void SetPointCount(int nPoints);
132 void AllocPointCount(int nPoints);
155 void TrimPoints(int nPoints);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 506 int nPoints = points.size();
507 float[] result = new float[nPoints * 3];
509 for (int i = 0; i < nPoints; i++) {
  /external/pdfium/core/src/fxcrt/
fx_basic_coords.cpp 221 int nPoints) {
222 if (nPoints == 0) {
227 for (int i = 1; i < nPoints; i++) {
  /external/pdfium/core/src/fxge/skia/
fx_skia_device.cpp 136 int nPoints = pFPath->GetPointCount();
138 for (int i = 0; i < nPoints; i++) {
147 (i == nPoints - 1 || pPoints[i + 1].m_Flag == FXPT_MOVETO) &&
  /external/opencv3/modules/calib3d/test/
test_cameracalibration.cpp 534 int nPoints = etalonSize.width * etalonSize.height;
535 project( nPoints,
536 objectPoints + currImage * nPoints,
541 reprojectPoints + currImage * nPoints);
1228 int npoints = opoints.cols*opoints.rows*opoints.channels()\/3; local
1422 int npoints = patternSize.width*patternSize.height; local
    [all...]
  /external/pdfium/core/src/fxge/agg/src/
fx_agg_driver.cpp 35 int nPoints = pPathData->GetPointCount();
37 for (int i = 0; i < nPoints; i++) {
48 (i == nPoints - 1 || pPoints[i + 1].m_Flag == FXPT_MOVETO) &&
    [all...]
  /external/pdfium/core/include/fxcrt/
fx_coordinates.h 598 static CFX_FloatRect GetBBox(const CFX_FloatPoint* pPoints, int nPoints);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
XKBproto.h 639 CARD8 nPoints;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
XKBproto.h 639 CARD8 nPoints;
  /external/pdfium/third_party/lcms2-2.6/include/
lcms2.h     [all...]

Completed in 559 milliseconds