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

1 2 3 4 5

  /frameworks/base/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/gtest/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon3869
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:__anon5701
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/bluetooth/glib/tests/gobject/
ifacecheck.c 44 GString *history; member in struct:_TestIfaceClass
50 iface->history = g_string_new (iface->history ? iface->history->str : NULL);
109 g_string_append (iface->history, check_data);
129 g_assert (strcmp (iface->history->str, "A") == 0);
138 g_assert (strcmp (iface->history->str, "AB") == 0);
147 g_assert (strcmp (iface->history->str, "B") == 0);
163 g_assert (strcmp (iface->history->str, "B") == 0);
  /external/chromium/base/
linked_ptr_unittest.cc 17 std::string history; member in namespace:__anon2351
21 A(): mynum(num++) { history += StringPrintf("A%d ctor\n", mynum); }
22 virtual ~A() { history += StringPrintf("A%d dtor\n", mynum); }
23 virtual void Use() { history += StringPrintf("A%d use\n", mynum); }
29 B() { history += StringPrintf("B%d ctor\n", mynum); }
30 ~B() { history += StringPrintf("B%d dtor\n", mynum); }
31 virtual void Use() { history += StringPrintf("B%d use\n", mynum); }
88 ASSERT_EQ(history,
  /external/webkit/WebCore/bindings/v8/custom/
V8HistoryCustom.cpp 35 #include "History.h"
60 History* history = V8History::toNative(args.Holder()); local
61 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectPush, ec);
81 History* history = V8History::toNative(args.Holder()); local
82 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectReplace, ec);
88 ASSERT(V8ClassIndex::FromInt(data->Int32Value()) == V8ClassIndex::HISTORY);
90 History* history = V8History::toNative(host); local
98 History* history = V8History::toNative(host); local
    [all...]
  /external/webkit/WebKit/qt/docs/webkitsnippets/
qtwebkit_qwebview_snippet.cpp 6 view->page()->history();
  /build/tools/droiddoc/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);
  /system/core/liblinenoise/
linenoise.c 49 * - History search like Ctrl+r in readline?
91 char **history = NULL; variable
107 if (history) {
111 free(history[j]);
112 free(history);
224 /* The latest history entry is always our current buffer, that
295 /* up and down arrow: history */
297 /* Update the current history entry before to
299 free(history[history_len-1-history_index]);
300 history[history_len-1-history_index] = strdup(buf)
    [all...]
  /external/v8/src/
d8-readline.cc 31 #include <readline/history.h> // NOLINT
  /development/scripts/app_engine_server/gae_shell/static/
shell.js 36 * The shell history. history is an array of strings, ordered oldest to
37 * newest. historyCursor is the current history element that the user is on.
39 * The last history element is the statement that the user is currently
40 * typing. When a statement is run, it's frozen in the history, a new history
46 shell.history = [''];
49 * See {shell.history}
81 * was pressed, it will run the statement, navigate the history, or update the
82 * current statement in the history
    [all...]
  /packages/apps/Calculator/src/com/android/calculator2/
Persist.java 35 History history = new History(); field in class:Persist
50 history = new History(version, in);
64 history.write(out);
HistoryAdapter.java 35 HistoryAdapter(Context context, History history, Logic evaluator) {
36 mEntries = history.mEntries;
  /system/core/sh/
histedit.c 50 * Editline and history functions (and glue).
68 History *hist; /* history cookie */
80 * Set history and editing status. Called whenever the status may
93 * turn history on
102 out2str("sh: can't initialize history\n");
133 el_set(el, EL_HIST, history, hist);
179 history(hist, &he, H_SETSIZE, histsize);
251 error("history not active");
254 error("missing history argument")
    [all...]
  /external/qemu/
readline.c 185 if (rs->history[idx] == NULL)
193 rs->history[rs->hist_entry]);
203 rs->history[++rs->hist_entry] != NULL) {
205 rs->history[rs->hist_entry]);
222 /* We were editing an existing history entry: replace it */
223 hist_entry = rs->history[rs->hist_entry];
229 /* Search cmdline in history buffers */
231 hist_entry = rs->history[idx];
237 /* Put this entry at the end of history */
238 memmove(&rs->history[idx], &rs->history[idx + 1]
    [all...]
readline.h 25 char *history[READLINE_MAX_CMDS]; member in struct:ReadLineState
  /external/webkit/WebKit/qt/Api/
qwebhistory.h 112 QWEBKIT_EXPORT QDataStream& operator<<(QDataStream& stream, const QWebHistory& history);
113 QWEBKIT_EXPORT QDataStream& operator>>(QDataStream& stream, QWebHistory& history);
qwebhistory.cpp 42 \brief The QWebHistoryItem class represents one item in the history of a QWebPage
46 Each QWebHistoryItem instance represents an entry in the history stack of a Web page,
49 The following table shows the properties of the page held by the history item, and
59 \row \o userData() \o The user specific data that was stored with the history item.
66 \sa QWebHistory, QWebPage::history(), QWebHistoryInterface
70 Constructs a history item from \a other. The new item and \a other
80 Assigns the \a other history item to this. This item and \a other
91 Destroys the history item.
98 Returns the original URL associated with the history item.
111 Returns the URL associated with the history item
    [all...]
  /external/webkit/WebKit/mac/History/
WebHistory.h 37 @discussion Notifications sent when history is modified.
67 @abstract Returns a shared WebHistory instance initialized with the default history file.
74 @param history The history to use for the global WebHistory.
76 + (void)setOptionalSharedHistory:(WebHistory *)history;
89 @discussion Save history to URL. It is the client's responsibility to call this at appropriate times.
116 or more history items, ordered from most recent to oldest.
117 @result Returns an array of NSCalendarDates for which history items exist in the WebHistory.
133 @param URL The URL of the history item to search for
154 stored history
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebHistory.idl 27 @discussion Notifications sent when history is modified.
70 @abstract Returns a shared WebHistory instance initialized with the default history file.
74 HRESULT optionalSharedHistory([out, retval] IWebHistory** history);
78 @param history The history to use for the global WebHistory.
79 + (void)setOptionalSharedHistory:(WebHistory *)history;
81 HRESULT setOptionalSharedHistory([in] IWebHistory* history);
95 @discussion Save history to URL. It is the client's responsibility to call this at appropriate times.
126 or more history items, ordered from most recent to oldest.
127 @result Returns an array of NSCalendarDates for which history items exist in the WebHistory
    [all...]
  /external/webkit/WebCore/page/
History.cpp 27 #include "History.h"
38 History::History(Frame* frame)
43 Frame* History::frame() const
48 void History::disconnectFrame()
53 unsigned History::length() const
62 void History::back()
69 void History::forward()
76 void History::go(int distance)
83 KURL History::urlForState(const String& urlString
    [all...]
  /external/webkit/WebKit/qt/tests/qwebhistory/
tst_qwebhistory.cpp 69 QEventLoop waitForLoadFinished; //operation on history are asynchronous!
90 hist = page->history();
134 //rewind history :-)
195 * Check history state after serialization (pickle, persistent..) method
196 * Checks history size, history order
208 //check size of history
224 * Check history state after serialization (pickle, persistent..) method
225 * Checks history currentIndex value
254 * Check history state after serialization (pickle, persistent..) metho
298 save << *history; local
304 load >> *history; local
    [all...]

Completed in 1026 milliseconds

1 2 3 4 5