Home
last modified time | relevance | path

Searched refs:coeff4 (Results 1 – 5 of 5) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/mips/msa/
Dencodeopt_msa.c50 v8i16 coeff, coeff0, coeff1, coeff2, coeff3, coeff4; in vp8_mbblock_error_msa() local
82 coeff4 = LD_SH(coeff_ptr); in vp8_mbblock_error_msa()
100 ILVRL_H2_SH(coeff4, dq_coeff4, coeff0, coeff1); in vp8_mbblock_error_msa()
119 v8i16 coeff, coeff0, coeff1, coeff2, coeff3, coeff4; in vp8_mbuverror_msa() local
144 coeff4 = LD_SH(coeff_ptr); in vp8_mbuverror_msa()
163 ILVRL_H2_SH(coeff4, dq_coeff4, coeff0, coeff1); in vp8_mbuverror_msa()
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DClassicalRungeKuttaStepInterpolator.java94 final double coeff4 = s * ((-fourTheta - 1) * theta - 1); in computeInterpolatedStateAndDerivatives() local
103 currentState[i] + coeff1 * yDot1 + coeff23 * yDot23 + coeff4 * yDot4; in computeInterpolatedStateAndDerivatives()
DThreeEighthesStepInterpolator.java96 final double coeff4 = s * (1 + theta + fourTheta2); in computeInterpolatedStateAndDerivatives() local
108 currentState[i] - coeff1 * yDot1 - coeff2 * yDot2 - coeff3 * yDot3 - coeff4 * yDot4; in computeInterpolatedStateAndDerivatives()
DGillStepInterpolator.java105 final double coeff4 = s * (1 + theta * (1 + fourTheta)); in computeInterpolatedStateAndDerivatives() local
118 currentState[i] - coeff1 * yDot1 - coeff2 * yDot2 - coeff3 * yDot3 - coeff4 * yDot4; in computeInterpolatedStateAndDerivatives()
/external/opencv3/modules/features2d/src/
Dbrisk.cpp1937 int coeff4 = -3 * (tmp4 + s_1_0 - s_1_2); in subpixel2D() local
1954 int tmp_max = coeff3 + coeff4 + coeff5; in subpixel2D()
1958 int tmp = -coeff3 + coeff4 - coeff5; in subpixel2D()
1965 tmp = coeff3 - coeff4 - coeff5; in subpixel2D()
1972 tmp = -coeff3 - coeff4 + coeff5; in subpixel2D()
1983 delta_x = float(2 * coeff2 * coeff3 - coeff4 * coeff5) / float(-H_det); in subpixel2D()
1984 delta_y = float(2 * coeff1 * coeff4 - coeff3 * coeff5) / float(-H_det); in subpixel2D()
2006 delta_y1 = -float(coeff4 + coeff5) / float(2 * coeff2); in subpixel2D()
2015 delta_y1 = -float(coeff4 - coeff5) / float(2 * coeff2); in subpixel2D()
2040 …coeff1 * delta_x1 * delta_x1 + coeff2 * delta_y1 * delta_y1 + coeff3 * delta_x1 + coeff4 * delta_y1 in subpixel2D()
[all …]