HomeSort by relevance Sort by last modified time
    Searched refs:coeff2 (Results 1 - 19 of 19) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
MidpointStepInterpolator.java 87 final double coeff2 = oneMinusThetaH * (1.0 + theta); local
94 interpolatedState[i] = currentState[i] + coeff1 * yDot1 - coeff2 * yDot2;
ThreeEighthesStepInterpolator.java 94 final double coeff2 = 3 * s * (1 + theta - fourTheta2); local
108 currentState[i] - coeff1 * yDot1 - coeff2 * yDot2 - coeff3 * yDot3 - coeff4 * yDot4;
GillStepInterpolator.java 103 final double coeff2 = c23 * TWO_MINUS_SQRT_2; local
118 currentState[i] - coeff1 * yDot1 - coeff2 * yDot2 - coeff3 * yDot3 - coeff4 * yDot4;
  /external/libvpx/libvpx/vp8/encoder/mips/msa/
encodeopt_msa.c 47 v8i16 coeff, coeff0, coeff1, coeff2, coeff3, coeff4; local
67 coeff2 = LD_SH(coeff_ptr);
83 ILVRL_H2_SH(coeff2, dq_coeff2, coeff0, coeff1);
113 v8i16 coeff, coeff0, coeff1, coeff2, coeff3, coeff4; local
127 coeff2 = LD_SH(coeff_ptr);
144 ILVRL_H2_SH(coeff2, dq_coeff2, coeff0, coeff1);
  /bionic/libm/x86_64/
s_log1p.S 203 movapd coeff2(%rip), %xmm1
205 movapd 16+coeff2(%rip), %xmm2
207 movapd 32+coeff2(%rip), %xmm3
793 coeff2: label
806 .type coeff2,@object
807 .size coeff2,48
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_blur.rs 57 float coeff2 = - 1.0f / (2.0f * sigma * sigma);
62 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
threshold.rs 55 float coeff2 = - 1.0f / (2.0f * sigma * sigma);
61 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
threshold.rs 55 float coeff2 = - 1.0f / (2.0f * sigma * sigma);
61 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
threshold.rs 55 float coeff2 = - 1.0f / (2.0f * sigma * sigma);
61 gaussian[r + radius] = coeff1 * pow(e, floatR * floatR * coeff2);
threshold_half.rs 55 half coeff2 = - 1.0f / (2.0f * sigma * sigma);
61 gaussian[r + radius] = coeff1 * pow(e, halfR * halfR * coeff2);
  /frameworks/base/libs/hwui/utils/
Blur.cpp 78 float coeff2 = - 1.0f / (2.0f * sigma * sigma); local
83 weights[r + intRadius] = coeff1 * pow(e, floatR * floatR * coeff2);
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_metrics.h 42 double one_plus_r2s,half_dfu_dx,half_dfu_dy,coeff,coeff2,coeff3; local
96 coeff2=one_over_r_fu*half_dfu_dx;
99 J[0]=coeff2*f[0]+r_fu;
101 J[2]=coeff2*f[1];
  /external/libvpx/libvpx/vpx_dsp/mips/
fwd_txfm_msa.c 25 v8i16 coeff2 = { local
79 cnst0 = __msa_splati_h(coeff2, 0);
91 cnst1 = __msa_splati_h(coeff2, 2);
114 cnst0 = __msa_splati_h(coeff2, 1);
127 cnst1 = __msa_splati_h(coeff2, 3);
  /external/libvpx/libvpx/vpx_dsp/x86/
avg_intrin_sse2.c 261 __m128i coeff2 = load_tran_low(coeff + 128); local
266 __m128i b2 = _mm_add_epi16(coeff2, coeff3);
267 __m128i b3 = _mm_sub_epi16(coeff2, coeff3);
279 coeff2 = _mm_sub_epi16(b0, b2);
281 store_tran_low(coeff2, coeff + 128);
  /external/skia/src/opts/
SkBitmapFilter_opts.h 447 int16x4_t coeffs, coeff0, coeff1, coeff2, coeff3;
451 coeff2 = vreinterpret_s16_u8(vtbl1_u8(vreinterpret_u8_s16(coeffs), coeff_mask2));
466 int32x4_t p2 = vmull_s16(p2_src, coeff2);
528 int16x4_t coeffs, coeff0, coeff1, coeff2, coeff3;
533 coeff2 = vreinterpret_s16_u8(vtbl1_u8(vreinterpret_u8_s16(coeffs), coeff_mask2));
546 p2 = vmull_s16(vget_low_s16(p23_16), coeff2); \
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
LevenbergMarquardtEstimator.java 400 double coeff2 = lmPar * lmNorm * lmNorm / pc2; local
401 double preRed = coeff1 + 2 * coeff2;
402 double dirDer = -(coeff1 + coeff2);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
LevenbergMarquardtOptimizer.java 401 double coeff2 = lmPar * lmNorm * lmNorm / pc2; local
402 double preRed = coeff1 + 2 * coeff2;
403 double dirDer = -(coeff1 + coeff2);
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicBlur.cpp 80 float coeff2 = - 1.0f / (2.0f * sigma * sigma); local
88 mFp[r + mIradius] = coeff1 * powf(e, floatR * floatR * coeff2);
  /external/libvpx/libvpx/vp8/common/mips/msa/
vp8_macros_msa.h     [all...]

Completed in 398 milliseconds