HomeSort by relevance Sort by last modified time
    Searched refs:history (Results 1 - 25 of 146) sorted by null

1 2 3 4 5 6

  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_mdct_18.cpp 29 REVISION HISTORY
39 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)
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])
    [all...]
pvmp3_mdct_6.cpp 28 REVISION HISTORY
38 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)
148 history[3] = tmp;
149 history[2] = tmp;
153 history[4] = tmp;
154 history[1] = tmp;
157 history[5] = tmp;
158 history[0] = tmp
    [all...]
pvmp3_imdct_synth.cpp 29 REVISION HISTORY
244 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])
335 int32 * history = overlap + (band * FILTERBANK_BANDS); local
    [all...]
pvmp3_mdct_18.h 29 REVISION HISTORY
92 void pvmp3_mdct_18(int32 vec[], int32 *history, const int32 *window);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/delta/
DeltaDecoder.java 20 buf[i] += history[(distance + pos) & DISTANCE_MASK];
21 history[pos-- & DISTANCE_MASK] = buf[i];
DeltaEncoder.java 19 byte tmp = history[(distance + pos) & DISTANCE_MASK];
20 history[pos-- & DISTANCE_MASK] = in[in_off + i];
DeltaCoder.java 18 final byte[] history = new byte[DISTANCE_MAX]; field in class:DeltaCoder
  /external/google-breakpad/src/testing/gtest/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon11509
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /external/gtest/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon11621
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /external/protobuf/gtest/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon21772
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon26082
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon35825
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/evalexception/media/
debug.js 49 var history = input.form.history;
51 if (! history) {
52 history = input.form.history = [];
54 history.push(input.value);
122 var history = input.form.history;
123 if (! history) {
124 history = input.form.history = []
    [all...]
  /external/libchrome/base/memory/
linked_ptr_unittest.cc 15 std::string history; member in namespace:__anon14281
19 A(): mynum(num++) { history += base::StringPrintf("A%d ctor\n", mynum); }
20 virtual ~A() { history += base::StringPrintf("A%d dtor\n", mynum); }
21 virtual void Use() { history += base::StringPrintf("A%d use\n", mynum); }
27 B() { history += base::StringPrintf("B%d ctor\n", mynum); }
28 ~B() override { history += base::StringPrintf("B%d dtor\n", mynum); }
29 void Use() override { history += base::StringPrintf("B%d use\n", mynum); }
86 ASSERT_EQ(history,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SuppServiceNotification.java 39 public String[] history; field in class:SuppServiceNotification
70 + " history: " + history
  /frameworks/base/telephony/java/com/android/ims/
ImsSuppServiceNotification.java 45 public String[] history; field in class:ImsSuppServiceNotification
61 ", history=" + Arrays.toString(history) +
77 out.writeStringArray(history);
86 history = in.createStringArray();
  /build/tools/droiddoc/templates-pdk/assets/
jquery-history.js 2 * jQuery history event v0.1
32 var current = $.history.getCurrent();
33 $.event.trigger('history', [current, previousNav]);
38 $.history = {
42 var previous = $.history.getCurrent();
47 $.event.trigger('historyadd', [$.history.getCurrent(), previous]);
62 $.fn.history = function(fn) {
63 $(this).bind('history', fn);
  /external/doclava/res/assets/templates/assets/
jquery-history.js 2 * jQuery history event v0.1
32 var current = $.history.getCurrent();
33 $.event.trigger('history', [current, previousNav]);
38 $.history = {
42 var previous = $.history.getCurrent();
47 $.event.trigger('historyadd', [$.history.getCurrent(), previous]);
62 $.fn.history = function(fn) {
63 $(this).bind('history', fn);
  /platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
GraphicsStatsMonitor.java 120 * Takes a snapshot of the graphics stats and incorporates them into the process stats history
127 List<JankStat> history; local
129 history = mGraphicsStatsRecords.get(procStats.packageName);
131 if (procStats.isContinuedFrom(history.get(history.size() - 1))) {
133 history.set(history.size() - 1, procStats);
138 history.add(procStats);
143 // Initialize the process stats history list
144 history = new ArrayList<>()
164 List<JankStat> history = record.getValue(); local
    [all...]
  /external/v8/test/cctest/
test-random-number-generator.cc 79 uint32_t history[kHistory]; local
81 // history.
88 // Enter the new random value into the history
90 history[i] = bit_cast<uint32_t>(rng->NextInt());
98 for (int j = ago - 1; j >= 0; j--) history[j + 1] = history[j];
99 history[0] = random;
103 predicted = (history[ago] >> predictor_bit) & 1;
  /external/opencv3/modules/video/include/opencv2/video/
background_segm.hpp 98 CV_WRAP virtual void setHistory(int history) = 0;
111 If a foreground pixel keeps semi-constant value for about backgroundRatio\*history frames, it's
202 @param history Length of the history.
210 createBackgroundSubtractorMOG2(int history=500, double varThreshold=16,
226 CV_WRAP virtual void setHistory(int history) = 0;
292 @param history Length of the history.
299 createBackgroundSubtractorKNN(int history=500, double dist2Threshold=400.0,
  /external/v8/test/mjsunit/
random-bit-correlations.js 10 var history = new Uint32Array(kHistory);
29 // Enter the new random value into the history
31 history[i] = random();
36 for (var j = ago - 1; j >= 0; j--) history[j + 1] = history[j];
37 history[0] = random();
40 predicted = (history[ago] >> predictor_bit) & 1;
44 var bit = (history[0] >> random_bit) & 1;
  /external/opencv3/modules/java/src/
video+BackgroundSubtractorKNN.java 31 // C++: void setHistory(int history)
34 //javadoc: BackgroundSubtractorKNN::setHistory(history)
35 public void setHistory(int history)
38 setHistory_0(nativeObj, history);
222 // C++: void setHistory(int history)
223 private static native void setHistory_0(long nativeObj, int history);
  /external/libedit/examples/
tc1.c 137 History *hist;
146 hist = history_init(); /* Init the builtin history */
148 history(hist, &ev, H_SETSIZE, 100);
159 /* Tell editline to use this history interface */
160 el_set(el, EL_HIST, history, hist);
170 * of previous and next history.
220 * moved around in history.
222 if (history(hist, &ev, H_SET, lastevent) == -1)
224 history(hist, &ev, H_ADD , buf);
226 history(hist, &ev, H_ENTER, buf)
    [all...]
  /external/libedit/src/
readline.c 165 static History *h = NULL;
194 * generic function for moving around history
202 if (history(h, &ev, op) != 0)
249 (void)snprintf(path, sizeof(path), "%s/.history", p->pw_dir);
316 history(h, &ev, H_SETSIZE, INT_MAX); /* unlimited */
319 el_set(e, EL_HIST, history, h);
434 history(h, &ev, H_GETSIZE);
441 * history functions
446 * history expansion functions
522 if (history(h, &ev, H_FIRST) != 0
    [all...]

Completed in 2031 milliseconds

1 2 3 4 5 6