HomeSort by relevance Sort by last modified time
    Searched full:interpolation (Results 76 - 100 of 1266) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_InterpolateHalfDiag_Luma.c 27 * This functions will help to calculate Half Pel luma interpolation
43 * This function performs interpolation for (1/2, 1/2) positions
51 * [in] iDstStep Step of the destination(interpolation) buffer.
54 * [out] pDst Pointer to the interpolation buffer of the (1/2,1/2)-pel
armVCM4P10_Interpolate_Chroma.c 27 * This function will calculate interpolation for chroma components
40 * This function performs interpolation for chroma components.
47 * [in] iDstStep Step of the destination(interpolation) buffer.
54 * [out] pDst Pointer to the interpolation buffer
omxVCM4P10_InterpolateHalfVer_Luma.c 43 * This function performs interpolation for two vertical 1/2-pel positions -
51 * iDstStep - Step of the destination (interpolation) buffer; must be a
58 * pDstUp -Pointer to the interpolation buffer of the -pel position above
63 * pDstDown -Pointer to the interpolation buffer of the -pel position below
armVCM4P10_Interpolate_Luma.c 27 * This function will calculate interpolation for luma components
51 * [out] pDst Pointer to the interpolation buffer
83 * This function performs interpolation for luma components.
90 * [in] iDstStep Step of the destination(interpolation) buffer.
97 * [out] pDst Pointer to the interpolation buffer
125 /* Work out positions for half pixel interpolation */
  /packages/apps/Launcher3/src/com/android/launcher3/
LogAccelerateInterpolator.java 23 // Due to rounding issues, the interpolation doesn't quite reach 1 even though it should.
LogDecelerateInterpolator.java 24 // Due to rounding issues, the interpolation doesn't quite reach 1 even though it should.
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interpolation/
maven-metadata.xml 4 <artifactId>plexus-interpolation</artifactId>
  /external/proguard/src/proguard/gui/splash/
SmoothTiming.java 60 // Compute the linear interpolation.
63 // Smooth the interpolation at the ends.
  /frameworks/av/media/libeffects/loudness/dsp/core/
interpolator_linear.h 27 // Linear interpolation class.
43 // Provides the main implementation of the linear interpolation algorithm.
  /frameworks/base/core/java/android/animation/
FloatEvaluator.java 20 * This evaluator can be used to perform type interpolation between <code>float</code> values.
35 * @return A linear interpolation between the start and end values, given the
IntEvaluator.java 20 * This evaluator can be used to perform type interpolation between <code>int</code> values.
35 * @return A linear interpolation between the start and end values, given the
  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 34 * \param[in] parameters The input parameters. During interpolation one for each data point.
35 * \param[in] degree The spline degree which is used during the interpolation.
38 * \sa Les Piegl and Wayne Tiller, The NURBS book (2nd ed.), 1997, 9.2.1 Global Curve Interpolation to Point Data
53 * \brief Computes chord length parameters which are required for spline interpolation.
59 * \sa Les Piegl and Wayne Tiller, The NURBS book (2nd ed.), 1997, 9.2.1 Global Curve Interpolation to Point Data
106 * \param knot_parameters The knot parameters for the interpolation.
  /external/universal-tween-engine/
README.md 11 The Universal Tween Engine enables the interpolation of every attribute from any object in any Java project (being Swing, SWT, OpenGL or even Console-based). Implement the TweenAccessor interface, register it to the engine, and animate anything you want!
16 // Arguments are (1) the target, (2) the type of interpolation,
90 * Supports every interpolation function defined by [Robert Penner](http://www.robertpenner.com/easing/).
91 * Can be used with any object. You just have to implement the TweenAccessor interface when you want interpolation capacities.
93 * One line is sufficient to create and start a simple interpolation.
94 * Delays can be specified, to trigger the interpolation only after some time.
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-utils/1.5.15/
plexus-utils-1.5.15.pom 48 <!-- NOTE: plexus-interpolation is SHADED INTO plexus-utils.
50 interpolation classes in plexus-utils to the current
51 implementation, which was broken out into plexus-interpolation.
56 <artifactId>plexus-interpolation</artifactId>
131 <include>org.codehaus.plexus:plexus-interpolation</include>
136 <pattern>org.codehaus.plexus.interpolation</pattern>
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-utils/1.5.15/
plexus-utils-1.5.15.pom 48 <!-- NOTE: plexus-interpolation is SHADED INTO plexus-utils.
50 interpolation classes in plexus-utils to the current
51 implementation, which was broken out into plexus-interpolation.
56 <artifactId>plexus-interpolation</artifactId>
131 <include>org.codehaus.plexus:plexus-interpolation</include>
136 <pattern>org.codehaus.plexus.interpolation</pattern>
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
GaussianParametersGuesser.java 142 * @param points points to use for interpolation
144 * interpolation bounds points
145 * @param idxStep index step for search for interpolation bounds points
173 * Gets the two bounding interpolation points from the specified points
176 * @param points points to use for interpolation
178 * interpolation bounds points
179 * @param idxStep index step for search for interpolation bounds points
  /external/opencv3/modules/imgproc/perf/opencl/
perf_imgwarp.cpp 74 const int type = get<1>(params), interpolation = get<2>(params); local
75 const double eps = CV_MAT_DEPTH(type) <= CV_32S ? 1 : interpolation == INTER_CUBIC ? 2e-3 : 1e-4;
82 OCL_TEST_CYCLE() cv::warpAffine(src, dst, M, srcSize, interpolation);
106 const int type = get<1>(params), interpolation = get<2>(params); local
114 OCL_TEST_CYCLE() cv::warpPerspective(src, dst, M, srcSize, interpolation);
182 const int type = get<1>(params), interpolation = get<2>(params), borderMode = BORDER_CONSTANT; local
206 OCL_TEST_CYCLE() cv::remap(src, dst, xmap, ymap, interpolation, borderMode);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
HermiteInterpolator.java 64 * Set interpolation interval.
70 * @param p0 the index just before interpolation interval. If <code>p1</code> points the start
73 * @param p1 the start index of interpolation interval.
74 * @param p2 the end index of interpolation interval.
75 * @param p3 the index just after interpolation interval. If <code>p2</code> points the end of
138 * Calculate interpolation value at <code>t</code> in unit interval <code>[0,1]</code>.
149 * @param t the interpolation parameter. The value must be in close interval <code>[0,1]</code>.
  /external/vulkan-validation-layers/libs/glm/gtc/
quaternion.hpp 189 /// Spherical linear interpolation of two quaternions.
190 /// The interpolation is oriented and the rotation is performed at constant speed.
191 /// For short path spherical linear interpolation, use the slerp function.
195 /// @param a Interpolation factor. The interpolation is defined beyond the range [0, 1].
205 /// Linear interpolation of two quaternions.
206 /// The interpolation is oriented.
210 /// @param a Interpolation factor. The interpolation is defined in the range [0, 1].
219 /// Spherical linear interpolation of two quaternions
    [all...]
  /external/deqp/framework/opengl/
gluVarType.cpp 177 const char* getInterpolationName (Interpolation interpolation)
181 return de::getSizedArrayElement<INTERPOLATION_LAST>(s_names, interpolation);
259 VariableDeclaration::VariableDeclaration (const VarType& varType_, const std::string& name_, Storage storage_, Interpolation interpolation_, const Layout& layout_, deUint32 memoryAccessQualifierBits_)
261 , interpolation (interpolation_)
272 interpolation == other.interpolation &&
336 if (decl.interpolation != INTERPOLATION_LAST)
337 str << getInterpolationName(decl.interpolation) << " ";
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_MCReconBlock.c 28 * interpolation
43 * interpolation described in ISO/IEC 14496-2, subclause 7.6.2.
85 * interpolation described in ISO/IEC 14496-2, subclause 7.6.2.
129 * horizontal and vertical interpolation described in ISO/IEC 14496-2,
190 * [in] predictType bilinear interpolation type, as defined in section 6.2.1.2.
230 * moved with interpolation.
266 * interpolation described in [ISO14496-2], subclause 7.6.2.
278 * is moved with interpolation.
279 * predictType - bilinear interpolation type, as defined in section
  /external/ImageMagick/MagickCore/
pixel.h 115 BilinearInterpolatePixel, /* Triangular filter interpolation */
117 CatromInterpolatePixel, /* Catmull-Rom interpolation */
118 IntegerInterpolatePixel, /* Integer (floor) interpolation */
119 MeshInterpolatePixel, /* Triangular Mesh interpolation */
121 SplineInterpolatePixel /* Cubic Spline (blurred) interpolation */
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
SplineInterpolator.java 17 package org.apache.commons.math.analysis.interpolation;
27 * Computes a natural (also known as "free", "unclamped") cubic spline interpolation for the data set.
46 * The cubic spline interpolation algorithm implemented is as described in R.L. Burden, J.D. Faires,
57 * @param x the arguments for the interpolation points
58 * @param y the values for the interpolation points
  /external/libopus/silk/
LP_variable_cutoff.c 53 /* Piece-wise linear interpolation of B and A */
70 /* Piece-wise linear interpolation of B and A */
97 /* piece-wise linear interpolation between elliptic filters */
113 /* Calculate index and interpolation factor for interpolation */
  /external/libavc/common/armv8/
ih264_inter_pred_luma_horz_qpel_av8.s 26 //* Contains function definitions for inter prediction horizontal quarter pel interpolation.
53 //* sec 8.4.2.2.1 titled "Luma sample interpolation process"
179 ld1 {v12.2s, v13.2s}, [x7], x2 //Load value for interpolation (column1,row0)
184 urhadd v20.16b, v12.16b , v20.16b //Interpolation step for qpel calculation
185 urhadd v21.16b, v13.16b , v21.16b //Interpolation step for qpel calculation
195 ld1 {v12.2s, v13.2s}, [x7], x2 //Load value for interpolation (column1,row1)
197 urhadd v18.16b, v12.16b , v18.16b //Interpolation step for qpel calculation
198 urhadd v19.16b, v13.16b , v19.16b //Interpolation step for qpel calculation
240 ld1 {v12.2s, v13.2s}, [x7], x2 //Load value for interpolation (column1,row2)
245 urhadd v20.16b, v12.16b , v20.16b //Interpolation step for qpel calculatio
    [all...]

Completed in 1491 milliseconds

1 2 34 5 6 7 8 91011>>