HomeSort by relevance Sort by last modified time
    Searched full:residual_energy (Results 1 - 3 of 3) sorted by null

  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
isacfix_unittest.cc 31 int32_t residual_energy = 0; local
33 // Test the code path where (residual_energy >= 0x10000).
34 residual_energy = CalculateResidualEnergyFunction(kIntOrder,
36 EXPECT_EQ(1789023310, residual_energy);
39 // Test the code path where (residual_energy < 0x10000)
45 residual_energy = CalculateResidualEnergyFunction(kIntOrder,
47 EXPECT_EQ(1595279092, residual_energy);
50 // Test the code path where (residual_energy <= 0x7fff).
54 residual_energy = CalculateResidualEnergyFunction(kIntOrder,
56 EXPECT_EQ(2029266944, residual_energy);
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model.c 482 int32_t tmp32 = 0, word32_high = 0, word32_low = 0, residual_energy = 0; local
487 /* For the case of i == 0: residual_energy +=
489 * For the case of i != 0: residual_energy +=
520 residual_energy = (int32_t)(sum64 >> shift_norm);
524 residual_energy = (uint32_t)word32_low >> 1;
527 residual_energy = word32_low << shift_norm;
538 return residual_energy;
    [all...]
lpc_masking_model_neon.S 158 vmov.s32 r0, d0[1] @ residual_energy

Completed in 97 milliseconds