HomeSort by relevance Sort by last modified time
    Searched full:residual (Results 51 - 75 of 404) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/opus/src/silk/float/
schur_FLP.c 34 silk_float silk_schur_FLP( /* O returns residual energy */
67 /* Return residual energy */
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
residu.c 20 * Description: Compute the LPC residual by filtering *
31 Word16 y[], /* (o) x2 : residual signal */
  /external/flac/libFLAC/ppc/as/
lpc_asm.s 38 ; r3: residual[]
52 ; has only one load from memory (the residual)
225 lvsl v18,r10,r3 ; v18: residual shift back vector
274 lvewx v21,0,r3 ; v21[n]: *residual
275 vperm v21,v21,v21,v18 ; v21[3]: *residual
276 vaddsws v20,v21,v20 ; v20[3]: *residual + (sum >> lp_quantization)
297 ; r3: residual[]
390 lvsl v6,r10,r3 ; v6: residual shift back vector
409 lvewx v9,0,r3 ; v9[n]: *residual
410 vperm v9,v9,v9,v6 ; v9[3]: *residual
    [all...]
  /external/flac/libFLAC/ppc/gas/
lpc_asm.s 40 # r3: residual[]
54 # has only one load from memory (the residual)
227 lvsl v18,r10,r3 # v18: residual shift back vector
276 lvewx v21,0,r3 # v21[n]: *residual
277 vperm v21,v21,v21,v18 # v21[3]: *residual
278 vaddsws v20,v21,v20 # v20[3]: *residual + (sum >> lp_quantization)
299 # r3: residual[]
392 lvsl v6,r10,r3 # v6: residual shift back vector
411 lvewx v9,0,r3 # v9[n]: *residual
412 vperm v9,v9,v9,v6 # v9[3]: *residual
    [all...]
  /external/ceres-solver/examples/
circle_fit.cc 71 // The cost for a single sample. The returned residual is related to the
82 T* residual) const {
92 // residual[0] = r - sqrt(xp*xp + yp*yp);
100 residual[0] = r*r - xp*xp - yp*yp;
  /external/ceres-solver/include/ceres/
cost_function.h 33 // residual and Jacobian of the least squares problem. Users are expected to
36 // It is recommended that users define templated residual functors for use as
54 // This class implements the computation of the cost (a.k.a. residual) terms as
90 // d residual[r] / d parameters[i][c]
  /external/ceres-solver/internal/ceres/
program.h 50 // between (residual, parameter) pairs and a position in the jacobian of the
60 // The ordered parameter and residual blocks for the program.
95 // If a parameter appears in a residual but not in the parameter block, then
115 // TODO(keir): If necessary, also dump the residual blocks.
parameter_block.h 66 // residual block from a problem where all the residual blocks depend on one
210 << "Ceres bug: There is already a residual block collection "
217 << "Ceres bug: The residual block collection is null for parameter "
224 << "Ceres bug: The residual block collection is null for parameter "
227 << "Ceres bug: Missing residual for parameter block: " << ToString();
312 // If non-null, contains the residual blocks this parameter block is in.
program_evaluator.h 31 // The ProgramEvaluator runs the cost functions contained in each residual block
43 // residual jacobians are written directly into their final position in the
68 // // Write the block jacobians from a residual block evaluation to the
133 ? "Evaluator::Residual"
290 // Per-thread scratch space needed to evaluate and store each residual block.
310 // Enough space to store the residual for the largest residual block.
block_jacobian_writer.cc 46 // Given the residual block ordering, build a lookup table to determine which
62 // Iterate over all the active residual blocks and determine how many E blocks
72 // Advance f_block_pos over each E block for this residual.
86 // blocks are laid out starting at f_block_pos. Iterate over the residual
178 // Size the row by the number of active parameters in this residual.
residual_block_test.cc 111 // Verify cost and residual evaluation.
119 // Verify cost, residual, and jacobian evaluation.
147 // Verify cost, residual, and partial jacobian evaluation.
250 // Verify cost and residual evaluation.
258 // Verify cost, residual, and jacobian evaluation.
305 // Verify cost, residual, and partial jacobian evaluation.
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,
  /external/libvpx/libvpx/vp8/decoder/
error_concealment.h 36 /* Conceal a macroblock with corrupt residual.
  /frameworks/av/media/libstagefright/codecs/avc/enc/
Android.mk 15 src/residual.cpp \
  /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/compiler-rt/lib/
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;
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;
  /external/ceres-solver/docs/source/
tutorial.rst 63 bool operator()(const T* const x, T* residual) const {
64 residual[0] = T(10.0) - x[0];
73 residual is needed, and with a special type ``T=Jet`` when the
77 Once we have a way of computing the residual function, it is now time
93 // Set up the only cost function (also known as residual). This uses
175 for example when the evaluation of the residual involves a call to a
178 functor which computes the residual value and construct a
185 bool operator()(const double* const x, double* residual) const {
186 residual[0] = 10.0 - x[0];
228 In such cases, it is possible to supply your own residual and jacobia
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_image.c 152 and the residual are given separately and will be combined while
159 residual pointer to residual data, 16 16-element arrays for luma
172 i32 residual[][16])
214 pRes = residual[block];
230 /* Residual is zero => copy prediction block to output */
245 /* Calculate image = prediction + residual
279 pRes = residual[block];
304 /* Residual is zero => copy prediction block to output */
h264bsd_util.h 71 /* macro to mark a residual block empty, i.e. contain zero coefficients */
72 #define MARK_RESIDUAL_EMPTY(residual) ((residual)[0] = EMPTY_RESIDUAL_INDICATOR)
73 /* macro to check if residual block is empty */
74 #define IS_RESIDUAL_EMPTY(residual) ((residual)[0] == EMPTY_RESIDUAL_INDICATOR)
  /external/ceres-solver/data/nist/
Lanczos1.dat 48 Residual Sum of Squares: 1.4307867721E-25
49 Residual Standard Deviation: 8.9156129349E-14
Lanczos2.dat 48 Residual Sum of Squares: 2.2299428125E-11
49 Residual Standard Deviation: 1.1130395851E-06
Lanczos3.dat 48 Residual Sum of Squares: 1.6117193594E-08
49 Residual Standard Deviation: 2.9923229172E-05
MGH17.dat 47 Residual Sum of Squares: 5.4648946975E-05
48 Residual Standard Deviation: 1.3970497866E-03
  /external/chromium_org/third_party/opus/src/silk/fixed/
LTP_analysis_filter_FIX.c 35 opus_int16 *LTP_res, /* O LTP residual signal of length MAX_NB_SUBFR * ( pre_length + subfr_length ) */
74 /* Scale residual */

Completed in 353 milliseconds

1 23 4 5 6 7 8 91011>>