Searched refs:history (Results 1 - 14 of 14) 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/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSuppServiceNotification.java39 public String[] history; field in class:SuppServiceNotification
70 + " history: " + history
/frameworks/base/telephony/java/com/android/ims/
H A DImsSuppServiceNotification.java45 public String[] history; field in class:ImsSuppServiceNotification
61 ", history=" + Arrays.toString(history) +
77 out.writeStringArray(history);
86 history = in.createStringArray();
/frameworks/base/services/usage/java/com/android/server/usage/
H A DAppIdleHistory.java51 for (byte[] history : userHistory.values()) {
53 System.arraycopy(history, diff, history, 0, HISTORY_SIZE - diff);
56 history[HISTORY_SIZE - i - 1] =
57 (byte) (history[HISTORY_SIZE - diff - 1] & FLAG_LAST_STATE);
104 final byte[] history = userHistory.valueAt(p);
106 idpw.print(history[i] == 0 ? '.' : 'A');
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsCollection.java173 throw new SecurityException("Network stats history of uid " + uid
240 final NetworkStatsHistory history = findOrCreateHistory(ident, uid, set, tag);
241 history.recordData(start, end, entry);
242 noteRecordedHistory(history.getStart(), history.getEnd(), entry.rxBytes + entry.txBytes);
248 private void recordHistory(Key key, NetworkStatsHistory history) { argument
249 if (history.size() == 0) return;
250 noteRecordedHistory(history.getStart(), history.getEnd(), history
[all...]
/frameworks/base/core/java/android/app/usage/
H A DNetworkStats.java336 * Collects history results for uid and resets history enumeration index.
360 // Filtering of uids with empty history.
364 NetworkStatsHistory history = mSession.getHistoryIntervalForUid(mTemplate, uid,
367 if (history != null && history.size() > 0) {
371 Log.w(TAG, "Error while getting history of uid " + uid, e);
380 * Steps to next uid in enumeration and collects history for that.
436 * Getting the next item in a history enumeration.
/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.java197 // verify service has empty history for wifi
213 // verify service recorded history
230 // verify service recorded history
251 // verify service has empty history for wifi
277 // verify service recorded history
326 NetworkStatsHistory history = null;
355 // verify service recorded history
356 history = mSession.getHistoryForNetwork(sTemplateWifi, FIELD_ALL);
357 assertValues(history, Long.MIN_VALUE, Long.MAX_VALUE, 512L, 4L, 512L, 4L, 0);
358 assertEquals(HOUR_IN_MILLIS, history
[all...]
/frameworks/native/include/input/
H A DInputTransport.h390 History history[2]; member in struct:android::InputConsumer::TouchState
407 history[historyCurrent].initializeFrom(msg);
411 return &history[(historyCurrent + index) & 1];
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DMobileDataControllerImpl.java121 final NetworkStatsHistory history = mSession.getHistoryForNetwork(template, FIELDS);
146 final NetworkStatsHistory.Entry entry = history.getValues(start, end, now, null);
148 if (DEBUG) Log.d(TAG, String.format("history call from %s to %s now=%s took %sms: %s",
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCallTracker.java1339 supp.history = suppServiceInfo.history;

Completed in 1145 milliseconds