Searched refs:history (Results 1 - 8 of 8) sorted by relevance

/frameworks/av/media/libstagefright/codecs/mp3dec/src/
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_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_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...]
H A Dpvmp3_mdct_18.h92 void pvmp3_mdct_18(int32 vec[], int32 *history, const int32 *window);
/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/native/include/input/
H A DInputTransport.h380 History history[2]; member in struct:android::InputConsumer::TouchState
397 history[historyCurrent].initializeFrom(msg);
401 return &history[(historyCurrent + index) & 1];
/frameworks/base/core/tests/coretests/src/android/net/
H A DNetworkStatsHistoryTest.java71 final NetworkStatsHistory history = new NetworkStatsHistory(in);
72 assertEquals(15 * SECOND_IN_MILLIS, history.getBucketDuration());
74 entry = history.getValues(0, entry);
78 entry = history.getValues(history.size() - 1, entry);
82 entry = history.getValues(Long.MIN_VALUE, Long.MAX_VALUE, entry);
210 // create history just over hour bucket boundary
345 final NetworkStatsHistory history = new NetworkStatsHistory(
348 history.recordData(0, MINUTE_IN_MILLIS,
350 history
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkStatsServiceTest.java196 // verify service has empty history for wifi
212 // verify service recorded history
229 // verify service recorded history
250 // verify service has empty history for wifi
276 // verify service recorded history
325 NetworkStatsHistory history = null;
354 // verify service recorded history
355 history = mSession.getHistoryForNetwork(sTemplateWifi, FIELD_ALL);
356 assertValues(history, Long.MIN_VALUE, Long.MAX_VALUE, 512L, 4L, 512L, 4L, 0);
357 assertEquals(HOUR_IN_MILLIS, history
[all...]

Completed in 170 milliseconds