OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WEBRTC_SPL_RSHIFT_U32
(Results
1 - 7
of
7
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.c
294
reductionFactor =
WEBRTC_SPL_RSHIFT_U32
(0x01000000 | (exponent & 0x00FFFFFF),
295
WEBRTC_SPL_RSHIFT_U32
(exponent, 24));
298
reductionFactor =
WEBRTC_SPL_RSHIFT_U32
(reductionFactor, 11);
389
tempUpper =
WEBRTC_SPL_RSHIFT_U32
(byteSecondsPerBit, 15);
396
tempLower =
WEBRTC_SPL_RSHIFT_U32
(tempLower, 15);
399
currBwInv =
WEBRTC_SPL_RSHIFT_U32
(currBwInv, 4);
414
bweStr->recBwInv =
WEBRTC_SPL_RSHIFT_U32
(bweStr->recBwInv, 13);
433
arrTimeProj =
WEBRTC_SPL_RSHIFT_U32
(arrTimeProj, 4);
437
arrTimeProj =
WEBRTC_SPL_RSHIFT_U32
(arrTimeProj, 12);
525
bweStr->recBw =
WEBRTC_SPL_RSHIFT_U32
(bweStr->recBw, 10)
[
all
...]
arith_routines_logist.c
78
qtmp2 = (uint16_t)
WEBRTC_SPL_RSHIFT_U32
(
151
W_upper_MSB = (uint16_t)
WEBRTC_SPL_RSHIFT_U32
(W_upper, 16);
189
*streamPtr++ += (uint16_t)
WEBRTC_SPL_RSHIFT_U32
(
296
W_upper_MSB = (uint16_t)
WEBRTC_SPL_RSHIFT_U32
(W_upper, 16);
arith_routines_hist.c
320
W_upper_MSB =
WEBRTC_SPL_RSHIFT_U32
(W_upper, 16);
entropy_coding.c
403
shft = (int16_t)(
WEBRTC_SPL_RSHIFT_U32
(seed, 25) & 15);
438
shft = (int16_t)(
WEBRTC_SPL_RSHIFT_U32
(seed, 25) & 1); /* either 0 or 1 */
564
PSpec[k>>2] =
WEBRTC_SPL_RSHIFT_U32
(sum, 2);
[
all
...]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
crc.c
103
crc_tbl_indx = (
WEBRTC_SPL_RSHIFT_U32
(crc_state, 24) ^
/external/webrtc/webrtc/common_audio/signal_processing/include/
signal_processing_library.h
92
#define
WEBRTC_SPL_RSHIFT_U32
(x, c) ((uint32_t)(x) >> (c))
[
all
...]
/external/webrtc/webrtc/common_audio/signal_processing/
signal_processing_unittest.cc
70
EXPECT_EQ(8191u,
WEBRTC_SPL_RSHIFT_U32
(a, 1));
Completed in 921 milliseconds