Searched defs:history (Results 1 - 10 of 10) 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[])
133 void pvmp3_mdct_18(int32 vec[], int32 *history, const int32 *window) argument
195 tmp = history[ i];
201 history[i ] = -(tmp2 + tmp1);
205 tmp = history[ 6];
210 tmp = history[ 7];
211 history[6] = -(tmp2 + tmp1);
212 history[7] = -(tmp1 + vec[8]);
214 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/telephony/java/android/telephony/ims/
H A DImsSuppServiceNotification.java47 public final String[] history; field in class:ImsSuppServiceNotification
51 String number, String[] history) {
57 this.history = history;
67 history = in.createStringArray();
77 ", history=" + Arrays.toString(history) +
93 out.writeStringArray(history);
50 ImsSuppServiceNotification(int notificationType, int code, int index, int type, String number, String[] history) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DSuppServiceNotification.java39 public String[] history; field in class:SuppServiceNotification
203 + " history: " + history
/frameworks/native/libs/gui/tests/
H A DBufferQueue_test.cpp954 std::vector<OccupancyTracker::Segment> history; local
955 ASSERT_EQ(OK, mConsumer->getOccupancyHistory(false, &history));
960 ASSERT_EQ(2u, history.size());
962 // The first segment (which will be history[1], since the newest segment
966 const auto& firstSegment = history[1];
975 const auto& secondSegment = history[0];
983 ASSERT_EQ(OK, mConsumer->getOccupancyHistory(false, &history));
984 ASSERT_EQ(0u, history.size());
988 ASSERT_EQ(OK, mConsumer->getOccupancyHistory(true, &history));
989 ASSERT_EQ(1u, history
[all...]
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsCollection.java246 throw new SecurityException("Network stats history of uid " + uid
250 // 180 days of history should be enough for anyone; if we end up needing
251 // more, we'll dynamically grow the history object.
403 final NetworkStatsHistory history = findOrCreateHistory(ident, uid, set, tag);
404 history.recordData(start, end, entry);
405 noteRecordedHistory(history.getStart(), history.getEnd(), entry.rxBytes + entry.txBytes);
411 private void recordHistory(Key key, NetworkStatsHistory history) { argument
412 if (history.size() == 0) return;
413 noteRecordedHistory(history
[all...]
/frameworks/native/include/input/
H A DInputTransport.h408 History history[2]; member in struct:android::InputConsumer::TouchState
425 history[historyCurrent].initializeFrom(msg);
429 return &history[(historyCurrent + index) & 1];
/frameworks/native/services/surfaceflinger/
H A DBufferLayer.cpp349 std::vector<OccupancyTracker::Segment> history; local
350 status_t result = mConsumer->getOccupancyHistory(forceFlush, &history);
352 ALOGW("[%s] Failed to obtain occupancy history (%d)", mName.string(), result);
355 return history;
H A DSurfaceFlinger.cpp4042 std::vector<OccupancyTracker::Segment>&& history) {
4045 for (const auto& segment : history) {
4041 recordBufferingStats(const char* layerName, std::vector<OccupancyTracker::Segment>&& history) argument

Completed in 217 milliseconds