/prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interpolation/1.11/ |
plexus-interpolation-1.11.pom | 10 <artifactId>plexus-interpolation</artifactId> 13 <name>Plexus Interpolation API</name> 16 <connection>scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.11</connection> 17 <developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.11</developerConnection> 18 <url>http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-interpolation-1.11</url>
|
/prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interpolation/1.13/ |
plexus-interpolation-1.13.pom | 10 <artifactId>plexus-interpolation</artifactId> 13 <name>Plexus Interpolation API</name> 16 <connection>scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.13</connection> 17 <developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.13</developerConnection> 18 <url>http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-interpolation-1.13</url>
|
/prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interpolation/1.14/ |
plexus-interpolation-1.14.pom | 10 <artifactId>plexus-interpolation</artifactId>
13 <name>Plexus Interpolation API</name>
16 <connection>scm:svn:http://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.14</connection>
17 <developerConnection>scm:svn:https://svn.codehaus.org/plexus/plexus-components/tags/plexus-interpolation-1.14</developerConnection>
18 <url>http://fisheye.codehaus.org/browse/plexus/plexus-components/tags/plexus-interpolation-1.14</url>
|
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/ |
TweenPath.java | 12 * Computes the next value of the interpolation, based on its waypoints and 15 * @param t The progress of the interpolation, between 0 and 1. May be out 19 * @return The next value of the interpolation.
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/ |
MultivariateRealInterpolator.java | 17 package org.apache.commons.math.analysis.interpolation; 33 * @param xval the arguments for the interpolation points. 34 * {@code xval[i][0]} is the first component of interpolation point 36 * until {@code xval[i][d-1]}, the last component of that interpolation 38 * @param yval the values for the interpolation points 41 * interpolation algorithm or some dimension mismatch occurs
|
BivariateRealGridInterpolator.java | 17 package org.apache.commons.math.analysis.interpolation; 32 * @param xval All the x-coordinates of the interpolation points, sorted 34 * @param yval All the y-coordinates of the interpolation points, sorted 36 * @param fval The values of the interpolation points on all the grid knots: 40 * interpolation algorithm.
|
TrivariateRealGridInterpolator.java | 17 package org.apache.commons.math.analysis.interpolation; 33 * @param xval All the x-coordinates of the interpolation points, sorted 35 * @param yval All the y-coordinates of the interpolation points, sorted 37 * @param zval All the z-coordinates of the interpolation points, sorted 39 * @param fval the values of the interpolation points on all the grid knots: 45 * interpolation algorithm.
|
UnivariateRealInterpolator.java | 17 package org.apache.commons.math.analysis.interpolation; 31 * @param xval the arguments for the interpolation points 32 * @param yval the values for the interpolation points 35 * interpolation algorithm
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/ |
Actions.java | 20 import com.badlogic.gdx.math.Interpolation;
74 static public MoveToAction moveTo (float x, float y, float duration, Interpolation interpolation) {
78 action.setInterpolation(interpolation);
90 static public MoveToAction moveToAligned (float x, float y, int alignment, float duration, Interpolation interpolation) {
94 action.setInterpolation(interpolation);
107 static public MoveByAction moveBy (float amountX, float amountY, float duration, Interpolation interpolation) {
111 action.setInterpolation(interpolation);
[all...] |
/frameworks/av/media/libeffects/loudness/dsp/core/ |
interpolator_base.h | 26 // Interpolation base-class that provides the interface, while it is the derived 27 // class that provides the specific interpolation algorithm. The following list 28 // of interpolation algorithms are currently present: 30 // InterpolationSine<T>: weighted interpolation between y_data[n] and 33 // InterpolationLinear<T>: linear interpolation 34 // InterpolationSplines<T>: spline-based interpolation 36 // Example (using derived spline-based interpolation class): 46 // Generic random-access interpolation with arbitrary spaced x-axis samples. 57 // y_data: [(data_length)x1] y-axis coordinates (interpolation axis)
|
/external/libgdx/gdx/src/com/badlogic/gdx/math/ |
Interpolation.java | 21 public abstract class Interpolation {
32 static public final Interpolation linear = new Interpolation() {
38 static public final Interpolation fade = new Interpolation() {
62 static public final Interpolation sine = new Interpolation() {
68 static public final Interpolation sineIn = new Interpolation() {
74 static public final Interpolation sineOut = new Interpolation() { [all...] |
/external/opencv3/modules/cudawarping/src/cuda/ |
warp.cu | 276 void warp_caller(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzb dst, int interpolation, 306 funcs[interpolation][borderMode](static_cast< PtrStepSz<T> >(src), static_cast< PtrStepSz<T> >(srcWhole), xoff, yoff, 310 template <typename T> void warpAffine_gpu(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, 315 warp_caller<AffineTransform, T>(src, srcWhole, xoff, yoff, dst, interpolation, borderMode, borderValue, stream, cc20); 318 template void warpAffine_gpu<uchar >(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 319 //template void warpAffine_gpu<uchar2>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 320 template void warpAffine_gpu<uchar3>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 321 template void warpAffine_gpu<uchar4>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 323 //template void warpAffine_gpu<schar>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 324 //template void warpAffine_gpu<char2>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20) [all...] |
remap.cu | 207 PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20) 237 callers[interpolation][borderMode](static_cast< PtrStepSz<T> >(src), static_cast< PtrStepSz<T> >(srcWhole), xoff, yoff, xmap, ymap, 241 template void remap_gpu<uchar >(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 242 //template void remap_gpu<uchar2>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 243 template void remap_gpu<uchar3>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 244 template void remap_gpu<uchar4>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 246 //template void remap_gpu<schar>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 247 //template void remap_gpu<char2>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 248 //template void remap_gpu<char3>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 249 //template void remap_gpu<char4>(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20) [all...] |
/external/opencv3/modules/cudawarping/test/ |
test_resize.cpp | 76 void resizeGold(const cv::Mat& src, cv::Mat& dst, double fx, double fy, int interpolation) 113 funcs[interpolation][src.depth()](src, dst, fx, fy); 120 PARAM_TEST_CASE(Resize, cv::cuda::DeviceInfo, cv::Size, MatType, double, Interpolation, UseRoi) 125 int interpolation; local 135 interpolation = GET_PARAM(4); 147 cv::cuda::resize(loadMat(src, useRoi), dst, cv::Size(), coeff, coeff, interpolation); local 150 resizeGold(src, dst_gold, coeff, coeff, interpolation); 160 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)) 170 int interpolation; local 193 cv::cuda::resize(loadMat(src, useRoi), dst, cv::Size(), coeff, coeff, interpolation); local [all...] |
test_warp_affine.cpp | 89 int interpolation = cv::INTER_NEAREST; local 91 int flags = interpolation; 96 cv::remap(src, dst, cv::Mat(xmap), cv::Mat(ymap), interpolation, borderMode); 133 void warpAffineGold(const cv::Mat& src, const cv::Mat& M, bool inverse, cv::Size dsize, cv::Mat& dst, int interpolation, int borderType, cv::Scalar borderVal) 170 funcs[interpolation][src.depth()](src, M, dsize, dst, borderType, borderVal); 175 funcs[interpolation][src.depth()](src, iM, dsize, dst, borderType, borderVal); 183 PARAM_TEST_CASE(WarpAffine, cv::cuda::DeviceInfo, cv::Size, MatType, Inverse, Interpolation, BorderType, UseRoi) 189 int interpolation; local 199 interpolation = GET_PARAM(4); 211 int flags = interpolation; 242 int interpolation; local [all...] |
test_warp_perspective.cpp | 90 int interpolation = cv::INTER_NEAREST; local 92 int flags = interpolation; 97 cv::remap(src, dst, cv::Mat(xmap), cv::Mat(ymap), interpolation, borderMode); 136 void warpPerspectiveGold(const cv::Mat& src, const cv::Mat& M, bool inverse, cv::Size dsize, cv::Mat& dst, int interpolation, int borderType, cv::Scalar borderVal) 173 funcs[interpolation][src.depth()](src, M, dsize, dst, borderType, borderVal); 178 funcs[interpolation][src.depth()](src, iM, dsize, dst, borderType, borderVal); 186 PARAM_TEST_CASE(WarpPerspective, cv::cuda::DeviceInfo, cv::Size, MatType, Inverse, Interpolation, BorderType, UseRoi) 192 int interpolation; local 202 interpolation = GET_PARAM(4); 214 int flags = interpolation; 245 int interpolation; local [all...] |
test_remap.cpp | 72 void remapGold(const cv::Mat& src, const cv::Mat& xmap, const cv::Mat& ymap, cv::Mat& dst, int interpolation, int borderType, cv::Scalar borderVal) 108 funcs[interpolation][src.depth()](src, xmap, ymap, dst, borderType, borderVal); 115 PARAM_TEST_CASE(Remap, cv::cuda::DeviceInfo, cv::Size, MatType, Interpolation, BorderType, UseRoi) 120 int interpolation; local 132 interpolation = GET_PARAM(3); 164 cv::cuda::remap(loadMat(src, useRoi), dst, loadMat(xmap, useRoi), loadMat(ymap, useRoi), interpolation, borderType, val); local 167 remapGold(src, xmap, ymap, dst_gold, interpolation, borderType, val); 176 testing::Values(Interpolation(cv::INTER_NEAREST), Interpolation(cv::INTER_LINEAR), Interpolation(cv::INTER_CUBIC)) [all...] |
/external/opencv3/modules/imgproc/test/ocl/ |
test_warp.cpp | 70 PARAM_TEST_CASE(WarpTestBase, MatType, Interpolation, bool, bool) 72 int type, interpolation; local 83 interpolation = GET_PARAM(1); 89 interpolation |= WARP_INVERSE_MAP; 130 OCL_OFF(cv::warpAffine(src_roi, dst_roi, M, dsize, interpolation)); 131 OCL_ON(cv::warpAffine(usrc_roi, udst_roi, M, dsize, interpolation)); 157 OCL_OFF(cv::warpPerspective(src_roi, dst_roi, M, dsize, interpolation)); 158 OCL_ON(cv::warpPerspective(usrc_roi, udst_roi, M, dsize, interpolation)); 168 PARAM_TEST_CASE(Resize, MatType, double, double, Interpolation, bool, int) 170 int type, interpolation; [all...] |
/external/skia/src/svg/parser/ |
SkSVGFeColorMatrix.cpp | 14 SVG_LITERAL_ATTRIBUTE(color-interpolation-filters, f_color_interpolation_filters),
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/ |
DragScrollListener.java | 19 import com.badlogic.gdx.math.Interpolation; 30 Interpolation interpolation = Interpolation.exp5In; field in class:DragScrollListener 57 return interpolation.apply(minSpeed, maxSpeed, Math.min(1, (System.currentTimeMillis() - startTime) / (float)rampTime));
|
/external/libavc/common/armv8/ |
ih264_inter_pred_luma_vert_qpel_av8.s | 26 //* Contains function definitions for inter prediction vertical quarter pel interpolation. 53 //* sec 8.4.2.2.1 titled "Luma sample interpolation process" 165 ld1 {v20.2s, v21.2s}, [x7], x2 // Load for interpolation row 0 166 urhadd v30.16b, v20.16b , v30.16b // Interpolation to obtain qpel value 167 urhadd v31.16b, v21.16b , v31.16b // Interpolation to obtain qpel value 182 ld1 {v14.2s, v15.2s}, [x7], x2 // Load for interpolation row 1 184 urhadd v30.16b, v14.16b , v30.16b // Interpolation to obtain qpel value 185 urhadd v31.16b, v15.16b , v31.16b // Interpolation to obtain qpel value 199 ld1 {v16.2s, v17.2s}, [x7], x2 // Load for interpolation row 2 201 urhadd v30.16b, v16.16b , v30.16b // Interpolation to obtain qpel valu [all...] |
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/ |
InterpolationTest.java | 27 import com.badlogic.gdx.math.Interpolation;
59 /** @return the {@link #position} with the {@link #selectedInterpolation interpolation} applied */
68 /** @return the {@link #selectedInterpolation selected} interpolation */
69 private Interpolation getInterpolation (String name) {
71 return (Interpolation)ClassReflection.getField(Interpolation.class, name).get(null);
87 Field[] interpolationFields = ClassReflection.getFields(Interpolation.class);
92 if (ClassReflection.isAssignableFrom(Interpolation.class, interpolationFields[i].getDeclaringClass()))
95 // get interpolation names
98 if (ClassReflection.isAssignableFrom(Interpolation.class, interpolationFields[i].getDeclaringClass())) 159 Interpolation interpolation = getInterpolation(selectedInterpolation); local [all...] |
/external/libopus/silk/float/ |
find_LPC_FLP.c | 47 /* Used only for NLSF interpolation */ 55 /* Default: No interpolation */ 69 /* Search over interpolation indices to find the one with lowest residual energy */ 78 /* Calculate residual energy with LSF interpolation */ 86 /* Interpolation has lower residual energy */ 98 /* NLSF interpolation is currently inactive, calculate NLSFs from full frame AR coefficients */
|
/external/webrtc/webrtc/modules/audio_processing/vad/ |
pitch_internal.cc | 15 // A 4-to-3 linear interpolation. 16 // The interpolation constants are derived as following: 37 // Gain interpolation is in log-domain, also returned in log-domain.
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
armVCM4P10_InterpolateHalfHor_Luma.c | 27 * This functions will help to calculate Half Pel luma interpolation 42 * This function performs interpolation for horizontal 1/2-pel positions 49 * [in] iDstStep Step of the destination(interpolation) buffer. 52 * [out] pDst Pointer to the interpolation buffer of the 1/2-pel
|