HomeSort by relevance Sort by last modified time
    Searched refs:norm_shift (Results 1 - 7 of 7) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/neteq/
background_noise.cc 245 int16_t norm_shift = WebRtcSpl_NormW32(residual_energy) - 1;
246 if (norm_shift & 0x1) {
247 norm_shift -= 1; // Even number of shifts required.
249 residual_energy = WEBRTC_SPL_SHIFT_W32(residual_energy, norm_shift);
257 static_cast<int16_t>(13 + ((kLogResidualLength + norm_shift) / 2));
merge.cc 336 int norm_shift = std::max(0, 17 - WebRtcSpl_NormW32(max_correlation)); local
338 correlation, norm_shift);
expand.cc 812 int16_t norm_shift = 16 - WebRtcSpl_NormW32(max_value); local
    [all...]
  /external/boringssl/src/crypto/fipsmodule/bn/
div.c 199 int norm_shift, loop; local
233 norm_shift = BN_BITS2 - (BN_num_bits(divisor) % BN_BITS2);
234 if (!BN_lshift(sdiv, divisor, norm_shift)) {
238 norm_shift += BN_BITS2;
239 if (!BN_lshift(snum, numerator, norm_shift)) {
380 if (!BN_rshift(rem, snum, norm_shift)) {
  /external/tensorflow/tensorflow/contrib/rnn/python/ops/
rnn_cell.py 144 norm_shift=0.0):
174 norm_shift: float, The layer normalization shift initial value. If
194 self._norm_shift = norm_shift
    [all...]
  /external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/
core_rnn_cell_test.py 418 norm_shift=0.0)
    [all...]
rnn_cell_test.py     [all...]

Completed in 248 milliseconds