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

/frameworks/av/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/include/androidfw/
H A DInputTransport.h377 History history[2]; member in struct:android::InputConsumer::TouchState
394 history[historyCurrent].initializeFrom(msg);
398 return &history[(historyCurrent + index) & 1];
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsCollection.java176 final NetworkStatsHistory history = mapEntry.getValue();
177 historyEntry = history.getValues(start, end, now, historyEntry);
203 final NetworkStatsHistory history = findOrCreateHistory(ident, uid, set, tag);
204 history.recordData(start, end, entry);
205 noteRecordedHistory(history.getStart(), history.getEnd(), entry.rxBytes + entry.txBytes);
211 private void recordHistory(Key key, NetworkStatsHistory history) { argument
212 if (history.size() == 0) return;
213 noteRecordedHistory(history.getStart(), history
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewCore.java716 * Provide WebCore with the previously visted links from the history database
720 String[] history);
719 nativeProvideVisitedHistory(int nativeClass, String[] history) argument

Completed in 2999 milliseconds