OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inLevel
(Results
1 - 3
of
3
) sorted by null
/external/webrtc/src/modules/audio_processing/agc/
digital_agc.c
69
WebRtc_Word32
inLevel
, limiterLvl;
141
//
inLevel
= fix((-constLog10_2*(compRatio-1)*(1-i)+fix(compRatio/2))/compRatio)
144
inLevel
= WebRtcSpl_DivW32W16(tmp32, kCompRatio); // Q14
146
// Calculate diffGain-
inLevel
, to map using the genFuncTable
147
inLevel
= WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)diffGain, 14) -
inLevel
; // Q14
149
// Make calculations on abs(
inLevel
) and compensate for the sign afterwards.
150
absInLevel = (WebRtc_UWord32)WEBRTC_SPL_ABS_W32(
inLevel
); // Q14
161
if (
inLevel
< 0)
/external/mdnsresponder/mDNSShared/
DebugServices.c
83
static OSStatus DebugPrint( DebugLevel
inLevel
, char *inData, size_t inSize );
128
static void DebugWindowsEventLogPrint( DebugLevel
inLevel
, char *inData, size_t inSize );
503
DEBUG_EXPORT size_t DebugPrintF( DebugLevel
inLevel
, const char *inFormat, ... )
510
if( (
inLevel
< gDebugPrintLevelMin ) || (
inLevel
> gDebugPrintLevelMax ) )
517
n = DebugPrintFVAList(
inLevel
, inFormat, args );
528
DEBUG_EXPORT size_t DebugPrintFVAList( DebugLevel
inLevel
, const char *inFormat, va_list inArgs )
535
if( (
inLevel
< gDebugPrintLevelMin ) || (
inLevel
> gDebugPrintLevelMax ) )
542
DebugPrint(
inLevel
, buffer, (size_t) n )
[
all
...]
DebugServices.h
[
all
...]
Completed in 634 milliseconds