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

  /external/chromium_org/third_party/webrtc/common_audio/vad/
vad_filterbank.c 95 int32_t state32 = ((int32_t) (*filter_state) << 16); // Q15 local
98 tmp32 = state32 + WEBRTC_SPL_MUL_16_16(filter_coefficient, *data_in);
101 state32 = (((int32_t) (*data_in)) << 14); // Q14
102 state32 -= WEBRTC_SPL_MUL_16_16(filter_coefficient, tmp16); // Q14
103 state32 <<= 1; // Q15.
107 *filter_state = (int16_t) (state32 >> 16); // Q(-1)
  /external/webrtc/src/common_audio/vad/
vad_filterbank.c 87 int32_t state32 = WEBRTC_SPL_LSHIFT_W32((int32_t) (*filter_state), 16); // Q31 local
90 tmp32 = state32 + WEBRTC_SPL_MUL_16_16(filter_coefficients, (*in_vector));
94 state32 = in32 - WEBRTC_SPL_MUL_16_16(filter_coefficients, tmp16);
95 state32 = WEBRTC_SPL_LSHIFT_W32(state32, 1);
99 *filter_state = (int16_t) WEBRTC_SPL_RSHIFT_W32(state32, 16);
  /external/chromium_org/third_party/skia/src/views/animated/
SkWidgetViews.cpp 235 int32_t state32; local
237 if (evt.findS32(gCheckStateSlotName, &state32))
240 *state = (CheckState)state32;
  /external/skia/src/views/animated/
SkWidgetViews.cpp 235 int32_t state32; local
237 if (evt.findS32(gCheckStateSlotName, &state32))
240 *state = (CheckState)state32;

Completed in 590 milliseconds