OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:state32
(Results
1 - 2
of
2
) sorted by null
/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/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)
Completed in 311 milliseconds