[go: nahoru, domu]

Searched defs:history (Results 1 - 7 of 7) 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/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/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/services/core/java/com/android/server/net/
H A DNetworkStatsCollection.java188 throw new SecurityException("Network stats history of uid " + uid
266 final NetworkStatsHistory history = findOrCreateHistory(ident, uid, set, tag);
267 history.recordData(start, end, entry);
268 noteRecordedHistory(history.getStart(), history.getEnd(), entry.rxBytes + entry.txBytes);
274 private void recordHistory(Key key, NetworkStatsHistory history) { argument
275 if (history.size() == 0) return;
276 noteRecordedHistory(history.getStart(), history.getEnd(), 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];

Completed in 572 milliseconds