Searched defs:history (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_mdct_6.cpp38 int32 *history input for overlap and add, vector updated with
48 vector for next iteration ( on history[])
122 void pvmp3_mdct_6(int32 vec[], int32 *history) argument
148 history[3] = tmp;
149 history[2] = tmp;
153 history[4] = tmp;
154 history[1] = tmp;
157 history[5] = tmp;
158 history[0] = tmp;
H A Dpvmp3_mdct_18.cpp39 int32 *history input for overlap and add, vector updated with
51 vector for next iteration ( on history[])
132 void pvmp3_mdct_18(int32 vec[], int32 *history, const int32 *window) argument
194 tmp = history[ i];
200 history[i ] = -(tmp2 + tmp1);
204 tmp = history[ 6];
209 tmp = history[ 7];
210 history[6] = -(tmp2 + tmp1);
211 history[7] = -(tmp1 + vec[8]);
213 tmp1 = history[
[all...]
H A Dpvmp3_imdct_synth.cpp244 int32 * history = overlap + (band * FILTERBANK_BANDS); local
250 pvmp3_mdct_18(out, history, normal_win);
256 pvmp3_mdct_18(out, history, start_win);
262 pvmp3_mdct_18(out, history, stop_win);
284 int32 temp = history[i];
286 history[i] = fxp_mul32_Q32(tmp_prev_ovr[ 6+i] << 1, short_win[6+i]);
287 history[i] += fxp_mul32_Q32(Scratch_mem[12+i] << 1, short_win[ i]);
294 out[i+6] += history[i+6];
296 history[i+6] = fxp_mul32_Q32(tmp_prev_ovr[12+i] << 1, short_win[6+i]);
303 out[i+12] += history[
335 int32 * history = overlap + (band * FILTERBANK_BANDS); local
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewCore.java648 * Provide WebCore with the previously visted links from the history database
650 private native void nativeProvideVisitedHistory(String[] history); argument

Completed in 280 milliseconds