Searched defs:energy (Results 1 - 12 of 12) sorted by relevance

/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Daccess-nbody.js128 NBodySystem.prototype.energy = function(){
163 ret = bodies.energy();
167 ret = bodies.energy();
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Daccess-nbody.js128 NBodySystem.prototype.energy = function(){
163 ret = bodies.energy();
167 ret = bodies.energy();
/external/aac/libAACenc/src/
H A Dgrp_data.cpp199 FIXP_DBL energy = sfbEnergy->Short[wnd][sfb]; local
202 energy = nrgAddSaturate(energy, sfbEnergy->Short[wnd+j][sfb]);
204 sfbEnergy->Long[i++] = energy;
217 FIXP_DBL energy = sfbEnergyMS->Short[wnd][sfb]; local
220 energy = nrgAddSaturate(energy, sfbEnergyMS->Short[wnd+j][sfb]);
222 sfbEnergyMS->Long[i++] = energy;
235 FIXP_DBL energy = sfbSpreadEnergy->Short[wnd][sfb]; local
238 energy
[all...]
H A Dquantize.cpp343 description: calculates energy and distortion of quantized values
347 output: energy, distortion
361 FIXP_DBL energy = FL2FXCONST_DBL(0.0f); local
375 /* energy */
376 energy += fPow2(invQuantSpec);
392 *en = CalcLdData(energy)+FL2FXCONST_DBL(0.03125f);
/external/webrtc/src/common_audio/vad/
H A Dvad_filterbank.c234 int32_t energy = WebRtcSpl_Energy(vector, vector_length, &shfts); local
236 if (energy > 0) {
238 shfts2 = 16 - WebRtcSpl_NormW32(energy);
242 energy_s16 = (int16_t) WEBRTC_SPL_SHIFT_W32(energy, -shfts2);
/external/opencv/cv/src/
H A Dcvsnakes.cpp58 // alpha - pointer to coefficient of continuity energy,
59 // beta - pointer to coefficient of curvature energy,
60 // gamma - pointer to coefficient of image energy,
64 // scheme - image energy scheme
65 // if _CV_SNAKE_IMAGE - image intensity is energy
66 // if _CV_SNAKE_GRAD - magnitude of gradient is energy
216 float energy; local
228 Econt[(j + centery) * win.width + k + centerx] = energy =
232 maxEcont = MAX( maxEcont, energy );
233 minEcont = MIN( minEcont, energy );
251 float energy; local
286 float energy; local
[all...]
/external/speex/libspeex/
H A Dltp.c185 spx_word32_t *energy; local
191 energy = corr;
194 VARDECL(spx_word32_t *energy);
197 ALLOC(energy, end-start+2, spx_word32_t);
200 ener16 = energy;
230 energy[0]=inner_prod(sw-start, sw-start, len);
234 /* Update energy for next pitch*/
235 energy[i-start+1] = SUB32(ADD32(energy[i-start],SHR32(MULT16_16(sw[-i-1],sw[-i-1]),6)), SHR32(MULT16_16(sw[-i+len-1],sw[-i+len-1]),6));
236 if (energy[
[all...]
/external/webrtc/src/modules/audio_processing/test/
H A Dunit_test.cc801 uint32_t energy = frame_->_energy; // Save default to restore below. local
806 frame_->_energy = energy;
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_core.c878 // Filter energy
894 // Measure energy in each filter partition to determine delay.
1116 // losing half the energy on the average. We take care of the first
1317 // Do the energy calculation in the frequency domain. The FFT is performed on
1318 // a segment of PART_LEN2 samples due to overlap, but we only want the energy
1320 // that the energy is preserved according to
1325 // where N = PART_LEN2. Since we are only interested in calculating the energy
1339 // TODO(bjornv): Investigate reusing energy calculations performed at other
1343 float energy = (in[0][0] * in[0][0]) / 2; local
1344 energy
[all...]
/external/aac/libSBRenc/src/
H A Denv_est.cpp109 \brief Calculates energy form real and imaginary part of
152 Calculate energy of each time slot pair, max energy
166 FIXP_DBL energy; local
175 energy = fPow2AddDiv2(fPow2Div2(tr0), ti0) >> 1;
179 energy += fPow2AddDiv2(fPow2Div2(tr1), ti1) >> 1;
181 /* Write timeslot pair energy to scratch */
182 *nrgValues++ = energy;
183 max_val = fixMax(max_val, energy);
245 Calculate energy o
257 FIXP_DBL energy; local
[all...]
/external/opencv/cvaux/src/
H A Dcvvecfacetracking.cpp420 // energy
792 int energy = 0; local
799 energy += ppNew[i]->iEnergy - 2 * ppNew[i]->nRectsInThis;
808 energy +=
817 return energy;
837 int energy = ppNew[element[0]]->iEnergy + ppNew[element[1]]->iEnergy + local
846 return energy;
/external/webrtc/src/modules/interface/
H A Dmodule_common_types.h38 WebRtc_UWord8 arrOfEnergy[kRtpCsrcSize]; // one energy byte (0-9) per channel
743 const WebRtc_Word32 energy = -1);
802 const WebRtc_Word32 energy)
811 _energy = energy;
792 UpdateFrame( const WebRtc_Word32 id, const WebRtc_UWord32 timeStamp, const WebRtc_Word16* payloadData, const WebRtc_UWord16 payloadDataLengthInSamples, const int frequencyInHz, const SpeechType speechType, const VADActivity vadActivity, const WebRtc_UWord8 audioChannel, const WebRtc_Word32 volume, const WebRtc_Word32 energy) argument

Completed in 180 milliseconds