/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
armVCM4P10_InterpolateHalfVer_Luma.c | 27 * This functions will help to calculate Half Pel luma interpolation 42 * This function performs interpolation for vertical 1/2-pel positions 50 * [in] iDstStep Step of the destination(interpolation) buffer. 53 * [out] pDst Pointer to the interpolation buffer of the 1/2-pel
|
omxVCM4P10_InterpolateHalfHor_Luma.c | 27 * This function will calculate Half horizontal luma interpolation 42 * This function performs interpolation for two horizontal 1/2-pel positions 50 * iDstStep - Step of the destination(interpolation) buffer; must be a 57 * pDstLeft -Pointer to the interpolation buffer of the left -pel position 62 * pDstRight -Pointer to the interpolation buffer of the right -pel
|
/prebuilts/tools/common/m2/repository/org/apache/maven/maven-model-builder/3.3.9/ |
maven-model-builder-3.3.9-sources.jar | |
/external/vulkan-validation-layers/libs/glm/gtx/ |
simd_quat.hpp | 216 /// Spherical linear interpolation of two quaternions. 217 /// The interpolation is oriented and the rotation is performed at constant speed. 218 /// For short path spherical linear interpolation, use the slerp function. 222 /// @param a Interpolation factor. The interpolation is defined beyond the range [0, 1]. 231 /// Linear interpolation of two quaternions. 232 /// The interpolation is oriented. 236 /// @param a Interpolation factor. The interpolation is defined in the range [0, 1]. 244 /// Spherical linear interpolation of two quaternions [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/ |
MicrosphereInterpolatingFunction.java | 17 package org.apache.commons.math.analysis.interpolation; 45 * Internal accounting data for the interpolation algorithm. 130 * @param xval the arguments for the interpolation points. 131 * {@code xval[i][0]} is the first component of interpolation point 133 * until {@code xval[i][d-1]}, the last component of that interpolation 136 * @param yval the values for the interpolation points 142 * {@code xval} (equal to {@code n}, the number of interpolation points) 185 * @param point Interpolation point. 200 // Vector between interpolation point and current sample point. 205 // No need to interpolate, as the interpolation point i [all...] |
LinearInterpolator.java | 17 package org.apache.commons.math.analysis.interpolation; 27 * Implements a linear function for interpolation of real univariate functions. 34 * @param x the arguments for the interpolation points 35 * @param y the values for the interpolation points
|
/external/libavc/common/arm/ |
ih264_inter_pred_luma_vert_qpel_a9q.s | 26 @* Contains function definitions for inter prediction vertical quarter pel interpolation. 51 @* sec 8.4.2.2.1 titled "Luma sample interpolation process" 158 vld1.u32 {q10}, [r7], r2 @ Load for interpolation row 0 159 vrhadd.u8 q15, q10, q15 @ Interpolation to obtain qpel value 176 vld1.u32 {q7}, [r7], r2 @ Load for interpolation row 1 178 vrhadd.u8 q15, q7, q15 @ Interpolation to obtain qpel value 191 vld1.u32 {q8}, [r7], r2 @ Load for interpolation row 2 193 vrhadd.u8 q15, q8, q15 @ Interpolation to obtain qpel value 202 vld1.u32 {q9}, [r7], r2 @ Load for interpolation row 3 204 vrhadd.u8 q15, q9, q15 @ Interpolation to obtain qpel valu [all...] |
/external/opencv3/modules/cudawarping/src/ |
resize.cpp | 54 void resize(const PtrStepSzb& src, const PtrStepSzb& srcWhole, int yoff, int xoff, const PtrStepSzb& dst, float fy, float fx, int interpolation, cudaStream_t stream); 57 void cv::cuda::resize(InputArray _src, OutputArray _dst, Size dsize, double fx, double fy, int interpolation, Stream& stream) 61 typedef void (*func_t)(const PtrStepSzb& src, const PtrStepSzb& srcWhole, int yoff, int xoff, const PtrStepSzb& dst, float fy, float fx, int interpolation, cudaStream_t stream); 73 CV_Assert( interpolation == INTER_NEAREST || interpolation == INTER_LINEAR || interpolation == INTER_CUBIC || interpolation == INTER_AREA ); 105 func(src, wholeSrc, ofs.y, ofs.x, dst, static_cast<float>(1.0 / fy), static_cast<float>(1.0 / fx), interpolation, StreamAccessor::getStream(stream));
|
warp.cpp | 67 void warpAffine_gpu(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[2 * 3], PtrStepSzb dst, int interpolation, 73 void warpPerspective_gpu(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, float coeffs[3 * 3], PtrStepSzb dst, int interpolation, 144 int interpolation); 151 static void call(const cv::cuda::GpuMat& src, cv::cuda::GpuMat& dst, double coeffs[][3], int interpolation, cudaStream_t stream) 175 coeffs, npp_inter[interpolation]) ); 190 const int interpolation = flags & INTER_MAX; 193 CV_Assert( interpolation == INTER_NEAREST || interpolation == INTER_LINEAR || interpolation == INTER_CUBIC ); 243 bool useNpp = borderMode == BORDER_CONSTANT && ofs.x == 0 && ofs.y == 0 && useNppTab[src.depth()][src.channels() - 1][interpolation]; [all...] |
remap.cpp | 57 int interpolation, int borderMode, const float* borderValue, cudaStream_t stream, bool cc20); 61 void cv::cuda::remap(InputArray _src, OutputArray _dst, InputArray _xmap, InputArray _ymap, int interpolation, int borderMode, Scalar borderValue, Stream& stream) 65 typedef void (*func_t)(PtrStepSzb src, PtrStepSzb srcWhole, int xoff, int yoff, PtrStepSzf xmap, PtrStepSzf ymap, PtrStepSzb dst, int interpolation, 83 CV_Assert( interpolation == INTER_NEAREST || interpolation == INTER_LINEAR || interpolation == INTER_CUBIC ); 101 dst, interpolation, borderMode, borderValueFloat.val, StreamAccessor::getStream(stream), deviceSupports(FEATURE_SET_COMPUTE_20));
|
/external/webrtc/webrtc/common_video/libyuv/include/ |
scaler.h | 27 kScalePoint, // no interpolation 37 // Set interpolation properties:
|
/external/opencv3/modules/cudawarping/include/opencv2/ |
cudawarping.hpp | 71 @param interpolation Interpolation method (see resize ). INTER_NEAREST , INTER_LINEAR and 82 Values of pixels with non-integer coordinates are computed using the bilinear interpolation. 87 int interpolation, int borderMode = BORDER_CONSTANT, Scalar borderValue = Scalar(), 102 @param interpolation Interpolation method. INTER_NEAREST , INTER_LINEAR and INTER_CUBIC are 108 CV_EXPORTS void resize(InputArray src, OutputArray dst, Size dsize, double fx=0, double fy=0, int interpolation = INTER_LINEAR, Stream& stream = Stream::Null()); 117 @param flags Combination of interpolation methods (see resize) and the optional flag 119 INTER_NEAREST , INTER_LINEAR , and INTER_CUBIC interpolation methods are supported. 149 @param flags Combination of interpolation methods (see resize ) and the optional fla [all...] |
/external/opencv3/modules/cudawarping/src/cuda/ |
resize.cu | 181 // callers for nearest interpolation 208 // callers for linear interpolation 252 // callers for cubic interpolation 447 template <typename T> void resize(const PtrStepSzb& src, const PtrStepSzb& srcWhole, int yoff, int xoff, const PtrStepSzb& dst, float fy, float fx, int interpolation, cudaStream_t stream) 458 // change to linear if area interpolation upscaling 459 if (interpolation == 3 && (fx <= 1.f || fy <= 1.f)) 460 interpolation = 1; 462 funcs[interpolation](static_cast< PtrStepSz<T> >(src), static_cast< PtrStepSz<T> >(srcWhole), yoff, xoff, static_cast< PtrStepSz<T> >(dst), fy, fx, stream); 465 template void resize<uchar >(const PtrStepSzb& src, const PtrStepSzb& srcWhole, int yoff, int xoff, const PtrStepSzb& dst, float fy, float fx, int interpolation, cudaStream_t stream); 466 template void resize<uchar3>(const PtrStepSzb& src, const PtrStepSzb& srcWhole, int yoff, int xoff, const PtrStepSzb& dst, float fy, float fx, int interpolation, cudaStream_t stream) [all...] |
/external/libopus/silk/fixed/ |
find_LPC_FIX.c | 50 /* Used only for LSF interpolation */ 59 /* Default: no interpolation */ 89 /* Search over interpolation indices to find the one with lowest residual energy */ 97 /* Calculate residual energy with NLSF interpolation */ 114 /* Compare with first half energy without NLSF interpolation, or best interpolated value so far */ 136 /* Interpolation has lower residual energy */ 145 /* NLSF interpolation is currently inactive, calculate NLSFs from full frame AR coefficients */
|
/external/mesa3d/src/gallium/drivers/radeon/ |
SIAssignInterpRegs.cpp | 1 //===-- SIAssignInterpRegs.cpp - Assign interpolation registers -----------===// 10 // This pass maps the pseudo interpolation registers to the correct physical 11 // registers. Prior to executing a fragment shader, the GPU loads interpolation 13 // interpolation parameter ends up in depends on the type of the interpolation 14 // parameter as well as how many interpolation parameters are used by the 92 /* First pass, mark the interpolation values that are used. */
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/ |
Slider.java | 21 import com.badlogic.gdx.math.Interpolation;
41 private Interpolation visualInterpolationInverse = Interpolation.linear;
157 /** Sets the inverse interpolation to use for display. This should perform the inverse of the
158 * {@link #setVisualInterpolation(Interpolation) visual interpolation}. */
159 public void setVisualInterpolationInverse (Interpolation interpolation) {
160 this.visualInterpolationInverse = interpolation;
|
/external/opencv3/modules/imgproc/test/ |
test_imgwarp_strict.cpp | 94 int interpolation; member in class:CV_ImageWarpBaseTest 101 BaseTest(), interpolation(-1), 134 return str.empty() ? "Unsupported/Unkown interpolation type" : str; 181 // generating an interpolation type 182 interpolation = rng.uniform(0, CV_INTER_LANCZOS4 + 1); 186 if (interpolation == INTER_AREA) 216 if (interpolation == INTER_AREA && (scale_x < 1.0 || scale_y < 1.0)) 217 interpolation = INTER_LINEAR; 246 if (interpolation == INTER_CUBIC) 248 else if (interpolation == INTER_LANCZOS4 [all...] |
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/ |
Tween.java | 8 * Core class of the Tween Engine. A Tween is basically an interpolation 10 * Tween is that you can apply an easing formula on this interpolation, in 177 * Factory creating a new standard interpolation. This is the most common 178 * type of interpolation. The starting values are retrieved automatically 182 * <b>You need to set the target values of the interpolation by using one 183 * of the target() methods</b>. The interpolation will run from the 202 * @param target The target object of the interpolation. 203 * @param tweenType The desired type of interpolation. 204 * @param duration The duration of the interpolation, in milliseconds. 216 * Factory creating a new reversed interpolation. The ending values ar [all...] |
TweenEquation.java | 13 * Computes the next value of the interpolation.
|
/external/pdfium/third_party/lcms2-2.6/src/ |
cmsintrp.c | 29 // This module incorporates several interpolation routines, for 1 to 8 channels on input and 30 // up to 65535 channels on output. The user may change those by using the interpolation plug-in 32 // Interpolation routines by default 38 // The interpolation plug-in memory chunk allocator/dup 77 // Set the interpolation method 82 p ->Interpolation.Lerp16 = NULL; 86 p ->Interpolation = ptr->Interpolators(p -> nInputs, p ->nOutputs, p ->dwFlags); 90 if (p ->Interpolation.Lerp16 == NULL) 91 p ->Interpolation = DefaultInterpolatorsFactory(p ->nInputs, p ->nOutputs, p ->dwFlags); 94 if (p ->Interpolation.Lerp16 == NULL) [all...] |
/external/deqp/android/cts/master/src/ |
gles3-pixelformat.txt | 7 dEQP-GLES3.functional.rasterization.interpolation.*
|
/external/deqp/android/cts/mnc/src/ |
gles3-pixelformat.txt | 7 dEQP-GLES3.functional.rasterization.interpolation.*
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_bld_interp.h | 30 * Position and shader input interpolation. 32 * Special attention is given to the interpolation of side by side quads. 33 * Multiplications are made only for the first quad. Interpolation of 50 * Describes how to compute the interpolation coefficients (a0, dadx, dady)
|
/external/webrtc/webrtc/modules/audio_processing/aec/ |
aec_resampler.h | 31 // Resamples input using linear interpolation.
|
/external/webrtc/webrtc/modules/video_processing/include/ |
video_processing_defines.h | 35 kBiLinear, // Bi-linear interpolation.
|