HomeSort by relevance Sort by last modified time
    Searched defs:density (Results 1 - 25 of 1144) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
HasDensity.java 23 * <p>Interface that signals that a distribution can compute the probability density function
25 * @param <P> the type of the point at which density is to be computed, this
29 * interface will be extended to include a <code>density(double)<code> method.</p>
38 * Compute the probability density function.
39 * @param x point for which the probability density is requested
40 * @return probability density at point x
41 * @throws MathException if probability density cannot be computed at specifed point
43 double density(P x) throws MathException; method in interface:HasDensity
ChiSquaredDistribution.java 48 * Return the probability density for a particular point.
49 * @param x The point at which the density should be computed.
52 double density(Double x); method in interface:ChiSquaredDistribution
ExponentialDistribution.java 48 * Return the probability density for a particular point.
49 * @param x The point at which the density should be computed.
52 double density(Double x); method in interface:ExponentialDistribution
BetaDistribution.java 22 * Computes the cumulative, inverse cumulative and density functions for the beta distribuiton.
58 * Return the probability density for a particular point.
59 * @param x The point at which the density should be computed.
61 * @exception MathException if probability density cannot be computed
63 double density(Double x) throws MathException; method in interface:BetaDistribution
GammaDistribution.java 62 * Return the probability density for a particular point.
63 * @param x The point at which the density should be computed.
66 double density(Double x); method in interface:GammaDistribution
NormalDistribution.java 60 * Return the probability density for a particular point.
61 * @param x The point at which the density should be computed.
64 double density(Double x); method in interface:NormalDistribution
  /external/ImageMagick/MagickCore/
prepress.c 72 % GetImageTotalInkDensity() returns the total ink density for a CMYK image.
73 % Total Ink Density (TID) is determined by adding the CMYK values in the
123 density;
139 density=(double) GetPixelRed(image,p)+GetPixelGreen(image,p)+
141 if (density > total_ink_density)
146 if (density > total_ink_density)
147 total_ink_density=density;
121 density; local
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
Display.java 38 * Returns logical density of the display.
40 public static float density(Context context) { method in class:Display
41 return context.getResources().getDisplayMetrics().density;
  /packages/apps/Settings/src/com/android/settings/display/
ScreenZoomPreference.java 28 * Preference for changing the density of the display on which the preference
41 final DisplayDensityUtils density = new DisplayDensityUtils(context); local
42 final int defaultIndex = density.getCurrentIndex();
47 final String[] entries = density.getEntries();
48 final int currentIndex = density.getCurrentIndex();
  /cts/tests/tests/dpi/src/android/dpi/cts/
ConfigurationTest.java 54 double density = 160.0d * metrics.density; local
55 assertTrue("Screen density must be at least 100 dpi: " + density, density >= 100.0d);
76 assertEquals(metrics.density,
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
Utils.java 95 float density = ctx.getResources().getDisplayMetrics().density; local
96 return Math.round((float) dp * density);
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/
Utils.java 64 float density = ctx.getResources().getDisplayMetrics().density; local
65 return Math.round((float) dp * density);
  /external/ImageMagick/Magick++/demo/
zoom.cpp 7 // Usage: zoom [-density resolution] [-filter algorithm] [-geometry geometry]
20 << " [-density resolution] [-filter algorithm] [-geometry geometry]"
52 Point density; local
60 if (command.compare("-density") == 0)
64 density=Geometry(argv[argv_index]);
155 if (density.isValid())
156 image.density(density);
157 density=image.density();
    [all...]
  /external/eigen/bench/
sparse_transpose.cpp 10 #ifndef DENSITY
11 #define DENSITY 0.01
40 float density = DENSITY; local
45 for (float density = DENSITY; density>=MINDENSITY; density*=0.5)
47 fillMatrix(density, rows, cols, sm1);
sparse_dense_product.cpp 10 #ifndef DENSITY
11 #define DENSITY 0.01
56 float density = DENSITY; local
63 for (float density = DENSITY; density>=MINDENSITY; density*=0.5)
65 //fillMatrix(density, rows, cols, sm1);
71 std::cout << "Eigen Dense\t" << density*100 << "%\n"
    [all...]
  /external/eigen/test/
sparse_solvers.cpp 13 initSPD(double density,
18 initSparse(density,refMat,sparseMat);
22 initSparse(density,aux,sparseMat,ForceNonZeroDiag);
35 double density = (std::max)(8./(rows*cols), 0.01); local
52 initSparse<Scalar>(density, refMat2, m2, ForceNonZeroDiag|MakeLowerTriangular, &zeroCoords, &nonzeroCoords);
57 initSparse<Scalar>(density, refMat2, m2, ForceNonZeroDiag|MakeUpperTriangular, &zeroCoords, &nonzeroCoords);
71 initSparse<Scalar>(density, refMat2, m2, ForceNonZeroDiag|MakeLowerTriangular, &zeroCoords, &nonzeroCoords);
76 initSparse<Scalar>(density, refMat2, m2, ForceNonZeroDiag|MakeUpperTriangular, &zeroCoords, &nonzeroCoords);
84 initSparse<Scalar>(density, refMat2, m2, ForceNonZeroDiag|MakeLowerTriangular);
85 initSparse<Scalar>(density, refMatB, matB)
    [all...]
spqr_support.cpp 21 double density = (std::max)(8./(rows*cols), 0.01); local
25 initSparse<Scalar>(density, dA, A,ForceNonZeroDiag);
  /frameworks/base/core/java/android/text/
TextPaint.java 35 public float density = 1.0f; field in class:TextPaint
71 density = tp.density;
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/utils/
Utils.java 30 float density = ctx.getResources().getDisplayMetrics().density; local
31 return Math.round((float) dp * density);
  /packages/apps/DeskClock/src/com/android/alarmclock/
WidgetUtils.java 48 float density = res.getDisplayMetrics().density; local
49 float ratio = (density * minWidth) / res.getDimension(R.dimen.min_digital_widget_width);
86 float density = res.getDisplayMetrics().density; local
87 float ratio = density * minHeight / res.getDimension(R.dimen.min_digital_widget_height);
  /external/deqp/framework/platform/android/
tcuAndroidUtil.hpp 60 float density; member in struct:tcu::Android::DisplayMetrics
71 : density (0.0f)
  /external/eigen/unsupported/test/
kronecker_product.cpp 189 double density = Eigen::internal::random<double>(0.01,0.5); local
197 initSparse(density, dA, sA);
198 initSparse(density, dB, sB);
sparse_extra.cpp 57 double density = (std::max)(8./(rows*cols), 0.01); local
68 initSparse<Scalar>(density, refMat, m, 0, &zeroCoords, &nonzeroCoords);
119 initSparse<Scalar>(density, refM1, m1);
  /external/mesa3d/src/mesa/swrast/
s_fog.c 51 d = ctx->Fog.Density;
56 d = ctx->Fog.Density;
69 #define EXP_FOG(f, coord) f = EXPF(density * coord)
185 const GLfloat density = -ctx->Fog.Density; local
204 const GLfloat negDensitySquared = -ctx->Fog.Density * ctx->Fog.Density;
  /frameworks/base/libs/androidfw/tests/data/basic/
R.h 44 density = 0x7f030002, member in struct:com::android::string

Completed in 1720 milliseconds

1 2 3 4 5 6 7 8 91011>>