Searched refs:inLevel (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_processing/agc/
H A Ddigital_agc.c69 int32_t inLevel, limiterLvl; local
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((int32_t)diffGain, 14) - inLevel; // Q14
149 // Make calculations on abs(inLevel) and compensate for the sign afterwards.
150 absInLevel = (uint32_t)WEBRTC_SPL_ABS_W32(inLevel); // Q14
161 if (inLevel < 0)
/external/webrtc/src/modules/audio_processing/agc/
H A Ddigital_agc.c69 WebRtc_Word32 inLevel, limiterLvl; local
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/
H A DDebugServices.c83 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, ... ) argument
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 ) argument
535 if( ( inLevel < gDebugPrintLevelMin ) || ( inLevel > gDebugPrintLevelMax ) )
542 DebugPrint( inLevel, buffe
552 DebugPrint( DebugLevel inLevel, char *inData, size_t inSize ) argument
1061 DebugWindowsEventLogPrint( DebugLevel inLevel, char *inData, size_t inSize ) argument
2022 DebugHexDump( DebugLevel inLevel, int inIndent, const char * inLabel, size_t inLabelSize, int inLabelMinWidth, const char * inType, size_t inTypeSize, const void * inDataStart, const void * inData, size_t inDataSize, DebugFlags inFlags, char * outBuffer, size_t inBufferSize ) argument
[all...]
H A DDebugServices.h1261 if( ( inLevel >= gDebugPrintLevelMin ) || ( inLevel <= gDebugPrintLevelMax ) ) \
1394 @param inLevel Error that generated this assert or noErr.
1406 DEBUG_EXPORT size_t DebugPrintF( DebugLevel inLevel, const char *inFormat, ... );
1416 DEBUG_EXPORT size_t DebugPrintFVAList( DebugLevel inLevel, const char *inFormat, va_list inArgs );
1540 DebugLevel inLevel,

Completed in 82 milliseconds