Lines Matching refs:state

30     WebRtc_Word32 *state;
37 state = filtState; // filter state array; length = 8
43 diff = in32 - state[1];
44 tmp1 = WEBRTC_SPL_SCALEDIFF32( kResampleAllpass2[0], diff, state[0] );
45 state[0] = in32;
46 diff = tmp1 - state[2];
47 tmp2 = WEBRTC_SPL_SCALEDIFF32( kResampleAllpass2[1], diff, state[1] );
48 state[1] = tmp1;
49 diff = tmp2 - state[3];
50 state[3] = WEBRTC_SPL_SCALEDIFF32( kResampleAllpass2[2], diff, state[2] );
51 state[2] = tmp2;
55 diff = in32 - state[5];
56 tmp1 = WEBRTC_SPL_SCALEDIFF32( kResampleAllpass1[0], diff, state[4] );
57 state[4] = in32;
58 diff = tmp1 - state[6];
59 tmp2 = WEBRTC_SPL_SCALEDIFF32( kResampleAllpass1[1], diff, state[5] );
60 state[5] = tmp1;
61 diff = tmp2 - state[7];
62 state[7] = WEBRTC_SPL_SCALEDIFF32( kResampleAllpass1[2], diff, state[6] );
63 state[6] = tmp2;
66 out32 = (state[3] + state[7] + 1024) >> 11;
83 WebRtc_Word32 *state;
90 state = filtState; // filter state array; length = 8
96 diff = in32 - state[1];
97 tmp1 = WEBRTC_SPL_SCALEDIFF32( kResampleAllpass1[0], diff, state[0] );
98 state[0] = in32;
99 diff = tmp1 - state[2];
100 tmp2 = WEBRTC_SPL_SCALEDIFF32( kResampleAllpass1[1], diff, state[1] );
101 state[1] = tmp1;
102 diff = tmp2 - state[3];
103 state[3] = WEBRTC_SPL_SCALEDIFF32( kResampleAllpass1[2], diff, state[2] );
104 state[2] = tmp2;
107 out32 = (state[3] + 512) >> 10;
116 diff = in32 - state[5];
117 tmp1 = WEBRTC_SPL_SCALEDIFF32( kResampleAllpass2[0], diff, state[4] );
118 state[4] = in32;
119 diff = tmp1 - state[6];
120 tmp2 = WEBRTC_SPL_SCALEDIFF32( kResampleAllpass2[1], diff, state[5] );
121 state[5] = tmp1;
122 diff = tmp2 - state[7];
123 state[7] = WEBRTC_SPL_SCALEDIFF32( kResampleAllpass2[2], diff, state[6] );
124 state[6] = tmp2;
127 out32 = (state[7] + 512) >> 10;