Home
last modified time | relevance | path

Searched refs:state32 (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/src/common_audio/vad/
Dvad_filterbank.c87 int32_t state32 = WEBRTC_SPL_LSHIFT_W32((int32_t) (*filter_state), 16); // Q31 in WebRtcVad_Allpass() local
90 tmp32 = state32 + WEBRTC_SPL_MUL_16_16(filter_coefficients, (*in_vector)); in WebRtcVad_Allpass()
94 state32 = in32 - WEBRTC_SPL_MUL_16_16(filter_coefficients, tmp16); in WebRtcVad_Allpass()
95 state32 = WEBRTC_SPL_LSHIFT_W32(state32, 1); in WebRtcVad_Allpass()
99 *filter_state = (int16_t) WEBRTC_SPL_RSHIFT_W32(state32, 16); in WebRtcVad_Allpass()
/external/skia/src/views/
DSkWidgetViews.cpp249 int32_t state32; in GetWidgetEventCheckState() local
251 if (evt.findS32(gCheckStateSlotName, &state32)) in GetWidgetEventCheckState()
254 *state = (CheckState)state32; in GetWidgetEventCheckState()