/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/ |
NevilleInterpolator.java | 50 public PolynomialFunctionLagrangeForm interpolate(double x[], double y[]) method in class:NevilleInterpolator
|
TrivariateRealGridInterpolator.java | 47 TrivariateRealFunction interpolate(double[] xval, double[] yval, double[] zval, double[][][] fval) method in interface:TrivariateRealGridInterpolator
|
SmoothingPolynomialBicubicSplineInterpolator.java | 74 public BicubicSplineInterpolatingFunction interpolate(final double[] xval, method in class:SmoothingPolynomialBicubicSplineInterpolator 141 return super.interpolate(xval, yval, fval_2);
|
SplineInterpolator.java | 29 * The {@link #interpolate(double[], double[])} method returns a {@link PolynomialSplineFunction} 67 public PolynomialSplineFunction interpolate(double x[], double y[]) { method in class:SplineInterpolator
|
/external/dng_sdk/source/ |
dng_gain_map.cpp | 59 real32 Interpolate () const 276 real32 dng_gain_map::Interpolate (int32 row, 288 return interp.Interpolate (); 581 real32 gain = interp.Interpolate ();
|
dng_hue_sat_map.cpp | 261 dng_hue_sat_map * dng_hue_sat_map::Interpolate (const dng_hue_sat_map &map1, 329 // Interpolate between the tables.
|
/external/libopus/silk/ |
control_SNR.c | 64 /* Find bitrate interval in table and interpolate */
|
/external/pdfium/core/fpdfapi/page/ |
cpdf_stitchfunc.cpp | 86 input = Interpolate(input, m_pBounds[i], m_pBounds[i + 1], m_pEncode[i * 2],
|
cpdf_sampledfunc.cpp | 106 Interpolate(inputs[i], m_pDomains[i * 2], m_pDomains[i * 2 + 1], 154 Interpolate(encoded, 0, (float)m_SampleMax, m_DecodeInfo[j].decode_min,
|
/external/robolectric-shadows/robolectric/src/test/resources/res/values/ |
strings.xml | 18 <string name="interpolate">Here is a %s!</string>
|
/external/tensorflow/tensorflow/contrib/image/kernels/ |
single_image_random_dot_stereograms_ops.cc | 63 int indexMode = 0; // 0 - truncate XY, 1 - round XY, 2 - Interpolate XY (not 226 // Interpolate between values 242 case 2: // Interpolate (Not implemented yet, will need 4 points 243 // [x,y],[x+1,y],[x,y+1],[x+1,y+1], then interpolate)
|
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/ |
TweenAccessor.java | 4 * The TweenAccessor interface lets you interpolate any attribute from any
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
NotificationShelf.java | 481 iconTransformDistance *= NotificationUtils.interpolate(1.f, 1.5f, expandAmount); 532 interpolatedAmount = NotificationUtils.interpolate( 624 // If we interpolate from the notification position, this might lead to a slightly 625 // odd interpolation, since the notification position changes as well. Let's interpolate 641 float iconYTranslation = NotificationUtils.interpolate( 654 float newSize = NotificationUtils.interpolate(notificationIconSize, shelfIconSize, [all...] |
/frameworks/base/services/core/java/com/android/server/display/ |
BrightnessMappingStrategy.java | 456 return mSpline.interpolate(lux); 555 return spline.interpolate(lux); 642 float nits = mBrightnessSpline.interpolate(lux); 643 float backlight = mNitsToBacklightSpline.interpolate(nits); 670 return mBacklightToNitsSpline.interpolate(normalizeAbsoluteBrightness(backlight)); 743 defaultBacklight[i] = mNitsToBacklightSpline.interpolate(defaultNits[i]); 751 nits[i] = mBacklightToNitsSpline.interpolate(backlight[i]); 759 return mNitsToBacklightSpline.interpolate(spline.interpolate(lux));
|
/external/deqp/doc/testspecs/GLES31/ |
functional.shaders.multisample_interpolation.txt | 64 interpolate_at_sample.centroid_qualifier cases interpolate a centroid-qualified 102 interpolateAtOffset to interpolate a value at the sample location returns the
|
/external/eigen/unsupported/test/ |
splines.cpp | 214 const Spline2d spline = SplineFitting<Spline2d>::Interpolate(points,3); 226 const Spline2d spline = SplineFitting<Spline2d>::Interpolate(points,3,chord_lengths);
|
/external/libmpeg2/common/arm/ |
ideint_spatial_filter_a9.s | 190 b interpolate 199 interpolate: label
|
/external/libmpeg2/common/armv8/ |
ideint_spatial_filter_av8.s | 191 b interpolate 201 interpolate: label
|
/frameworks/av/media/libeffects/loudness/dsp/core/ |
interpolator_base-inl.h | 129 T InterpolatorBase<T, Algorithm>::Interpolate(T x) { 132 LoggerError("InterpolatorBase:Interpolate: CachedIndex_ out of bounds "
|
/frameworks/base/core/java/android/util/ |
PathParser.java | 107 * Interpolate between the <code>fromData</code> and <code>toData</code> according to the 113 * @param fraction The fraction to interpolate.
|
/frameworks/support/wear/src/androidTest/java/androidx/wear/widget/util/ |
ArcSwipe.java | 93 private float[][] interpolate(float[] start, float[] end, int steps, boolean isClockwise) { method in class:ArcSwipe 122 float[][] steps = interpolate(startCoordinates, endCoordinates, SWIPE_EVENT_COUNT,
|
/development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/ |
DynamicListView.java | 458 return new Rect(interpolate(startValue.left, endValue.left, fraction), 459 interpolate(startValue.top, endValue.top, fraction), 460 interpolate(startValue.right, endValue.right, fraction), 461 interpolate(startValue.bottom, endValue.bottom, fraction)); 464 public int interpolate(int start, int end, float fraction) {
|
/external/eigen/unsupported/Eigen/src/Splines/ |
SplineFitting.h | 227 static SplineType Interpolate(const PointArrayType& pts, DenseIndex degree); 239 static SplineType Interpolate(const PointArrayType& pts, DenseIndex degree, const KnotVectorType& knot_parameters); 290 SplineType SplineFitting<SplineType>::Interpolate(const PointArrayType& pts, DenseIndex degree, const KnotVectorType& knot_parameters) 322 SplineType SplineFitting<SplineType>::Interpolate(const PointArrayType& pts, DenseIndex degree) 326 return Interpolate(pts, degree, chord_lengths);
|
/frameworks/av/media/libaudioprocessing/ |
AudioResamplerFirProcess.h | 114 TC interpolate(TC coef_0, TC coef_1, TINTERP lerp) function in namespace:android 121 int16_t interpolate<int16_t, uint32_t>(int16_t coef_0, int16_t coef_1, uint32_t lerp) function in namespace:android 128 int32_t interpolate<int32_t, uint32_t>(int32_t coef_0, int32_t coef_1, uint32_t lerp) function in namespace:android 138 return interpolate(coef_0, coef_1, lerp); 144 return interpolate(coef_0, coef_1, lerp);
|
/prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interpolation/1.14/ |
plexus-interpolation-1.14.jar | |