/external/libvpx/libvpx/vpx_dsp/arm/ |
D | variance_halfpixvar16x16_hv_media.asm | 45 ; x = (a + b + 1) >> 1, interpolate pixels horizontally on row N 49 ; y = (c + d + 1) >> 1, interpolate pixels horizontally on row N+1 53 ; z = (x + y + 1) >> 1, interpolate half pixel values vertically 88 ; x = (a + b + 1) >> 1, interpolate pixels horizontally on row N 92 ; y = (c + d + 1) >> 1, interpolate pixels horizontally on row N+1 96 ; z = (x + y + 1) >> 1, interpolate half pixel values vertically 130 ; x = (a + b + 1) >> 1, interpolate pixels horizontally on row N 134 ; y = (c + d + 1) >> 1, interpolate pixels horizontally on row N+1 138 ; z = (x + y + 1) >> 1, interpolate half pixel values vertically 170 ; x = (a + b + 1) >> 1, interpolate pixels horizontally on row N [all …]
|
/external/webrtc/talk/media/base/ |
D | videoframe.cc | 157 bool interpolate, in StretchToPlanes() argument 200 static_cast<int>(width), static_cast<int>(height), interpolate); in StretchToPlanes() 204 bool interpolate, bool vert_crop) const { in StretchToFrame() argument 213 interpolate, vert_crop); in StretchToFrame() 220 bool interpolate, bool vert_crop) const { in Stretch() argument 226 StretchToFrame(dest, interpolate, vert_crop); in Stretch()
|
D | videoframe.h | 178 bool interpolate, 185 virtual void StretchToFrame(VideoFrame *target, bool interpolate, 192 virtual VideoFrame *Stretch(size_t w, size_t h, bool interpolate,
|
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/voxel/ |
D | PerlinNoiseGenerator.java | 37 public static float interpolate (float x0, float x1, float alpha) { in interpolate() method in PerlinNoiseGenerator 57 …float top = interpolate(baseNoise[sample_i0][sample_j0], baseNoise[sample_i1][sample_j0], horizont… in generateSmoothNoise() 58 …float bottom = interpolate(baseNoise[sample_i0][sample_j1], baseNoise[sample_i1][sample_j1], horiz… in generateSmoothNoise() 59 smoothNoise[i][j] = interpolate(top, bottom, vertical_blend); in generateSmoothNoise()
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | MovementComponent.java | 44 float offsetX = sInterpolator.interpolate(timeDelta); in update() 50 float offsetY = sInterpolator.interpolate(timeDelta); in update()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/ |
D | BicubicSplineInterpolator.java | 37 public BicubicSplineInterpolatingFunction interpolate(final double[] xval, in interpolate() method in BicubicSplineInterpolator 75 ySplineX[j] = spInterpolator.interpolate(xval, fX[j]); in interpolate() 82 xSplineY[i] = spInterpolator.interpolate(yval, fval[i]); in interpolate()
|
D | TricubicSplineInterpolator.java | 35 public TricubicSplineInterpolatingFunction interpolate(final double[] xval, in interpolate() method in TricubicSplineInterpolator 84 xSplineYZ[i] = bsi.interpolate(yval, zval, fval[i]); in interpolate() 91 ySplineZX[j] = bsi.interpolate(zval, xval, fvalZX[j]); in interpolate() 98 zSplineXY[k] = bsi.interpolate(xval, yval, fvalXY[k]); in interpolate()
|
D | SmoothingBicubicSplineInterpolator.java | 50 public BivariateRealFunction interpolate(final double[] xval, in interpolate() method in SmoothingBicubicSplineInterpolator 88 ySplineX[j] = spInterpolator.interpolate(xval, zX[j]); in interpolate() 105 xSplineY[i] = spInterpolator.interpolate(yval, zY_1[i]); in interpolate()
|
D | SmoothingPolynomialBicubicSplineInterpolator.java | 74 public BicubicSplineInterpolatingFunction interpolate(final double[] xval, in interpolate() method in SmoothingPolynomialBicubicSplineInterpolator 141 return super.interpolate(xval, yval, fval_2); in interpolate()
|
D | UnivariateRealInterpolator.java | 37 UnivariateRealFunction interpolate(double xval[], double yval[]) in interpolate() method
|
D | MultivariateRealInterpolator.java | 44 MultivariateRealFunction interpolate(double[][] xval, double[] yval) in interpolate() method
|
D | BivariateRealGridInterpolator.java | 42 BivariateRealFunction interpolate(double[] xval, double[] yval, double[][] fval) in interpolate() method
|
D | TrivariateRealGridInterpolator.java | 47 … TrivariateRealFunction interpolate(double[] xval, double[] yval, double[] zval, double[][][] fval) in interpolate() method
|
D | NevilleInterpolator.java | 50 public PolynomialFunctionLagrangeForm interpolate(double x[], double y[]) in interpolate() method in NevilleInterpolator
|
/external/ImageMagick/MagickCore/ |
D | resample-private.h | 43 const MagickBooleanType interpolate,ExceptionInfo *exception) in AcquireResampleFilterThreadSet() argument 67 if (interpolate != MagickFalse) in AcquireResampleFilterThreadSet()
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
D | scale.h | 85 LIBYUV_BOOL interpolate); 91 LIBYUV_BOOL interpolate);
|
/external/libyuv/files/include/libyuv/ |
D | scale.h | 85 LIBYUV_BOOL interpolate); 91 LIBYUV_BOOL interpolate);
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
D | AnimationFactory.java | 388 interpolate(keyFramesTranslation, Type.Translation); in buildAnimation() 389 interpolate(keyFramesRotation, Type.Rotation); in buildAnimation() 390 interpolate(keyFramesScale, Type.Scale); in buildAnimation() 415 private void interpolate(Object[] keyFrames, Type type) { in interpolate() method in AnimationFactory
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
D | Curve.java | 112 spline.interpolate((float) j / nbSubSegments, cptCP, temp); in createCatmullRomMesh() 165 spline.interpolate((float) j / nbSubSegments, currentControlPoint, temp); in createBezierMesh() 209 spline.interpolate(u, 0, interpolationResult); in createNurbMesh()
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_state_draw.c | 121 if (shader->shader.input[i].interpolate == TGSI_INTERPOLATE_CONSTANT || in si_pipe_shader_ps() 122 (shader->shader.input[i].interpolate == TGSI_INTERPOLATE_COLOR && in si_pipe_shader_ps() 125 if (shader->shader.input[i].interpolate == TGSI_INTERPOLATE_LINEAR) in si_pipe_shader_ps() 127 if (shader->shader.input[i].interpolate == TGSI_INTERPOLATE_PERSPECTIVE) in si_pipe_shader_ps() 328 ps->input[i].interpolate == TGSI_INTERPOLATE_CONSTANT || in si_update_spi_map() 329 (ps->input[i].interpolate == TGSI_INTERPOLATE_COLOR && in si_update_spi_map()
|
D | radeonsi_shader.h | 36 unsigned interpolate; member
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_shader.h | 34 unsigned interpolate; member
|
/external/libmpeg2/common/armv8/ |
D | ideint_spatial_filter_av8.s | 191 b interpolate 201 interpolate: label
|
/external/skia/src/animator/ |
D | SkDrawExtraPathEffect.cpp | 114 apply->interpolate(*fMaker, SkScalarRoundToInt(distance * 1000)); in next() 127 apply->interpolate(*fMaker, SkScalarRoundToInt(distance * 1000)); in next() 270 apply->interpolate(*fMaker, v); in addPath() 282 apply->interpolate(*fMaker, v); in addPath()
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | Transform.java | 185 this.translation.interpolate(t1.translation,t2.translation,delta); in interpolateTransforms() 186 this.scale.interpolate(t1.scale,t2.scale,delta); in interpolateTransforms()
|