HomeSort by relevance Sort by last modified time
    Searched defs:residual (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
overuse_estimator.cc 74 const double residual = t_ts_delta - slope_*h[0] - offset_; local
80 if (fabs(residual) < max_residual) {
81 UpdateNoiseEstimate(residual, min_frame_period, in_stable_state);
83 UpdateNoiseEstimate(residual < 0 ? -max_residual : max_residual,
112 slope_ = slope_ + K[0] * residual;
114 offset_ = offset_ + K[1] * residual;
130 void OveruseEstimator::UpdateNoiseEstimate(double residual,
147 + (1 - beta) * residual;
149 + (1 - beta) * (avg_noise_ - residual) * (avg_noise_ - residual);
    [all...]
  /external/compiler-rt/lib/builtins/
divsf3.c 124 // In either case, we are going to compute a residual of the form
136 rep_t residual; local
138 residual = (aSignificand << 24) - quotient * bSignificand;
142 residual = (aSignificand << 23) - quotient * bSignificand;
159 const bool round = (residual << 1) > bSignificand;
divdf3.c 139 // In either case, we are going to compute a residual of the form
151 rep_t residual; local
153 residual = (aSignificand << 53) - quotient * bSignificand;
157 residual = (aSignificand << 52) - quotient * bSignificand;
174 const bool round = (residual << 1) > bSignificand;
divtf3.c 153 // In either case, we are going to compute a residual of the form
165 rep_t residual; local
170 residual = (aSignificand << 113) - qb;
175 residual = (aSignificand << 112) - qb;
190 const bool round = (residual << 1) >= bSignificand;
  /external/webrtc/webrtc/system_wrappers/source/
timestamp_extrapolator.cc 106 double residual = local
109 if (DelayChangeDetection(residual) &&
127 _w[0] = _w[0] + K[0] * residual;
128 _w[1] = _w[1] + K[1] * residual;
  /device/google/contexthub/firmware/os/algos/common/math/
levenberg_marquardt.h 35 // Function pointer for computing residual, f(X), and Jacobian, J = df(X)/dX
43 // residual will be computed and returned.
46 float *residual, float *jacobian);
75 float residual[MAX_LM_MEAS_DIMENSION]; member in struct:LmData
103 // Function for computing residual (f(x)) and jacobian (df(x)/dx).
146 * residual: f(x) for the current state x.
154 float computeGainRatio(const float *residual, const float *residual_new,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
GaussNewtonOptimizer.java 86 final double residual = objective[i] - targetValues[i]; local
89 final double wr = weight * residual;
AbstractLeastSquaresOptimizer.java 228 final double residual = targetValues[i] - objective[i]; local
229 residuals[i] = residual;
230 wresiduals[i]= residual*FastMath.sqrt(residualsWeights[i]);
231 cost += residualsWeights[i] * residual * residual;
  /external/eigen/test/
svd_common.h 124 RealScalar residual = (m*x-rhs).norm(); local
126 if(!test_isMuchSmallerThan(residual,rhs.norm()))
128 // ^^^ If the residual is very small, then we have an exact solution, so we are already good.
151 VERIFY( test_isMuchSmallerThan(abs(residual_y-residual), rhs_norm) || residual < residual_y );
153 VERIFY( test_isApprox(residual_y,residual) || residual < residual_y );
158 VERIFY( test_isMuchSmallerThan(abs(residual_y-residual), rhs_norm) || residual < residual_y );
160 VERIFY( test_isApprox(residual_y,residual) || residual < residual_y )
    [all...]
  /external/aac/libFDK/include/
FDK_trigFcts.h 142 * Returns delta x residual.
146 FIXP_DBL residual; local
152 residual = fMult(x, FL2FXCONST_DBL(1.0/M_PI));
153 s = ((LONG)residual) >> shift;
155 residual &= ( (1<<shift) - 1 );
156 residual = fMult(residual, FL2FXCONST_DBL(M_PI/4.0)) << 2;
157 residual <<= scale;
202 return residual;
215 FIXP_DBL residual, error0, error1, sine, cosine local
    [all...]
  /external/aac/libFDK/src/
FDK_trigFcts.cpp 298 FIXP_DBL residual, error, sine, cosine; local
300 residual = fixp_sin_cos_residual_inline(x, scale, &sine, &cosine);
301 error = fMult(sine, residual);
308 FIXP_DBL residual, error, sine, cosine; local
310 residual = fixp_sin_cos_residual_inline(x, scale, &sine, &cosine);
311 error = fMult(cosine, residual);
318 FIXP_DBL residual, error0, error1, sine, cosine; local
320 residual = fixp_sin_cos_residual_inline(x, scale, &sine, &cosine);
321 error0 = fMult(sine, residual);
322 error1 = fMult(cosine, residual);
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
GaussNewtonEstimator.java 184 double residual = measurements[i].getResidual(); local
189 bDecrementData[j] = weight * residual * grad[j];
AbstractEstimator.java 163 double residual = wm.getResidual(); local
164 residuals[i] = FastMath.sqrt(wm.getWeight()) * residual;
165 cost += wm.getWeight() * residual * residual;
186 double residual = wm[i].getResidual(); local
187 criterion += wm[i].getWeight() * residual * residual;
201 double residual = wm[i].getResidual(); local
202 chiSquare += residual * residual / wm[i].getWeight()
    [all...]
  /external/eigen/Eigen/src/IterativeLinearSolvers/
ConjugateGradient.h 43 VectorType residual = rhs - mat * x; //initial residual local
54 RealScalar residualNorm2 = residual.squaredNorm();
63 p = precond.solve(residual); // initial search direction
66 RealScalar absNew = numext::real(residual.dot(p)); // the square of the absolute value of r scaled by invM
74 residual -= alpha * tmp; // update residual
76 residualNorm2 = residual.squaredNorm();
80 z = precond.solve(residual); // approximately solve for "A z = residual"
    [all...]
LeastSquareConjugateGradient.h 43 VectorType residual = rhs - mat * x; local
44 VectorType normal_residual = mat.adjoint() * residual;
75 residual -= alpha * tmp; // update residual
76 normal_residual = mat.adjoint() * residual; // update residual of the normal equation
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IterationController.h 77 double m_resmax; ///< maximum residual
80 double m_res; ///< last computed residual
108 double residual() const { return m_res; } function in class:Eigen::IterationController
  /external/webrtc/webrtc/common_audio/signal_processing/
min_max_operations_neon.c 77 size_t residual = length & 0x7; local
86 for (i = 0; i < length - residual; i += 8) {
110 for (i = residual; i > 0; i--) {
129 size_t residual = length & 0x7; local
137 for (i = 0; i < length - residual; i += 8) {
154 for (i = residual; i > 0; i--) {
167 size_t residual = length & 0x7; local
176 for (i = 0; i < length - residual; i += 8) {
196 for (i = residual; i > 0; i--) {
209 size_t residual = length & 0x7 local
247 size_t residual = length & 0x7; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
encode.c 56 int16_t *residual; local
80 residual = &iLBCenc_inst->lpc_buffer[LPC_LOOKBACK+BLOCKL_MAX-iLBCenc_inst->blockl];
82 decresidual = residual; /* Already encoded residual is overwritten by the decoded version */
84 reverseDecresidual = reverseResidual; /* Already encoded residual is overwritten by the decoded version */
125 /* high pass filtering of input signal and scale down the residual (*0.5) */
137 /* inverse filter to get residual */
140 &data[n*SUBL], &residual[n*SUBL],
150 iLBCbits_inst->startIdx = WebRtcIlbcfix_FrameClassify(iLBCenc_inst,residual);
156 max=WebRtcSpl_MaxAbsValueW16(&residual[index], 2*SUBL)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
virtio_blk.h 74 __u32 residual; member in struct:virtio_scsi_inhdr
  /bionic/libc/kernel/uapi/linux/
virtio_blk.h 92 __virtio32 residual; member in struct:virtio_scsi_inhdr
  /development/ndk/platforms/android-21/include/linux/
virtio_blk.h 79 __u32 residual; member in struct:virtio_scsi_inhdr
  /external/kernel-headers/original/uapi/linux/
virtio_blk.h 141 __virtio32 residual; member in struct:virtio_scsi_inhdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
virtio_blk.h 115 __u32 residual; member in struct:virtio_scsi_inhdr
  /prebuilts/go/darwin-x86/src/runtime/
asm_s390x.s 891 residual: label
895 CMPBNE R7, R5, residual
942 CMPBGE R3, R7, residual
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
asm_s390x.s 891 residual: label
895 CMPBNE R7, R5, residual
942 CMPBGE R3, R7, residual
    [all...]

Completed in 508 milliseconds

1 2 3