/external/ceres-solver/internal/ceres/ |
levenberg_marquardt_strategy_test.cc | 121 double residual = 1.0; local 152 lms.ComputeStep(pso, &dsm, &residual, x);
|
gradient_checking_cost_function_test.cc | 149 double residual; local 154 // Since residual is one dimensional the jacobians have the same 174 &residual, 176 EXPECT_EQ(original_residual, residual); 205 double residual; local 208 // Since residual is one dimensional the jacobians have the same size as the 233 &residual, 251 &residual,
|
autodiff_test.cc | 517 double residual = 0; local 532 functor, parameters, 1, &residual, jacobians))); 533 EXPECT_EQ(residual, pow(2, num_variables + 1) - 2); 543 functor, parameters, 1, &residual, jacobians))); 544 EXPECT_EQ(residual, pow(2, num_variables + 1) - 2); 554 functor, parameters, 1, &residual, jacobians))); 555 EXPECT_EQ(residual, pow(2, num_variables + 1) - 2); 565 functor, parameters, 1, &residual, jacobians))); 566 EXPECT_EQ(residual, pow(2, num_variables + 1) - 2); 576 functor, parameters, 1, &residual, jacobians))) [all...] |
/external/compiler-rt/lib/ |
divsf3.c | 123 // In either case, we are going to compute a residual of the form 135 rep_t residual; local 137 residual = (aSignificand << 24) - quotient * bSignificand; 141 residual = (aSignificand << 23) - quotient * bSignificand; 158 const bool round = (residual << 1) > bSignificand;
|
divdf3.c | 138 // In either case, we are going to compute a residual of the form 150 rep_t residual; local 152 residual = (aSignificand << 53) - quotient * bSignificand; 156 residual = (aSignificand << 52) - quotient * bSignificand; 173 const bool round = (residual << 1) > bSignificand;
|
/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/eigen/Eigen/src/IterativeLinearSolvers/ |
ConjugateGradient.h | 43 VectorType residual = rhs - mat * x; //initial residual local 46 p = precond.solve(residual); //initial search direction 49 RealScalar absNew = internal::real(residual.dot(p)); // the square of the absolute value of r scaled by invM 60 residual -= alpha * tmp; // update residue 62 residualNorm2 = residual.squaredNorm(); 66 z = precond.solve(residual); // approximately solve for "A z = residual" 69 absNew = internal::real(residual.dot(z)); // update the absolute value of r
|
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
IterationController.h | 81 double m_resmax; ///< maximum residual 84 double m_res; ///< last computed residual 112 double residual() const { return m_res; } function in class:Eigen::IterationController
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/ |
vl_mpeg12_bitstream.c | 639 int residual = vl_vlc_get_uimsbf(&bs->vlc, r_size) + 1; local 640 delta[t] = ((abs(motion_code) - 1) << r_size) + residual;
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
vl_mpeg12_bitstream.c | 639 int residual = vl_vlc_get_uimsbf(&bs->vlc, r_size) + 1; local 640 delta[t] = ((abs(motion_code) - 1) << r_size) + residual;
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
GraphicsContext3D.cpp | 681 unsigned int residual = validRowSize % alignment; local 682 if (residual) { 683 padding = alignment - residual; [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
h264bsd_macroblock_layer.h | 158 residual_t residual; member in struct:__anon32593
|
/external/flac/include/FLAC/ |
format.h | 195 /**< Residual is coded by partitioning into contexts, each with it's own 199 /**< Residual is coded by partitioning into contexts, each with it's own 211 /** Contents of a Rice partitioned residual 230 /** Header for a Rice partitioned residual. (c.f. <A HREF="../format.html#partitioned_rice">format specification</A>) 252 /** Header for the entropy coding method. (c.f. <A HREF="../format.html#residual">format specification</A>) 299 /**< The residual coding method. */ 307 const FLAC__int32 *residual; member in struct:__anon20998 308 /**< The residual signal, length == (blocksize minus order) samples. */ 316 /**< The residual coding method. */ 333 const FLAC__int32 *residual; member in struct:__anon20999 [all...] |
/external/flac/libFLAC/ |
stream_decoder.c | 125 static FLAC__bool read_residual_partitioned_rice_(FLAC__StreamDecoder *decoder, unsigned predictor_order, unsigned partition_order, FLAC__EntropyCodingMethod_PartitionedRiceContents *partitioned_rice_contents, FLAC__int32 *residual, FLAC__bool is_extended); 163 void (*local_lpc_restore_signal)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]); 165 void (*local_lpc_restore_signal_64bit)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]); 167 void (*local_lpc_restore_signal_16bit)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]); 169 void (*local_lpc_restore_signal_16bit_order8)(const FLAC__int32 residual[], unsigned data_len, const FLAC__int32 qlp_coeff[], unsigned order, int lp_quantization, FLAC__int32 data[]); 175 FLAC__int32 *residual[FLAC__MAX_CHANNELS]; /* WATCHOUT: these are the aligned pointers; the real pointers that should be free()'d are residual_unaligned[] below */ member in struct:FLAC__StreamDecoderPrivate 323 decoder->private_->residual_unaligned[i] = decoder->private_->residual[i] = 0; 703 decoder->private_->residual_unaligned[i] = decoder->private_->residual[i] = 0; 2700 FLAC__int32 x, *residual = decoder->private_->residual[channel]; local [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
vlc_encode.cpp | 175 Void ScaleMVD(Int f_code, Int diff_vector, Int *residual, Int *vlc_code_mag); 2734 Int residual, vlc_code_mag, bits, entry; local [all...] |