Home
last modified time | relevance | path

Searched refs:history (Results 1 – 25 of 226) sorted by relevance

12345678910

/OK3568_Linux_fs/kernel/drivers/misc/echo/
H A Dfir.h45 int16_t *history; member
57 int16_t *history; member
68 float *history; member
77 fir->history = kcalloc(taps, sizeof(int16_t), GFP_KERNEL); in fir16_create()
78 return fir->history; in fir16_create()
83 memset(fir->history, 0, fir->taps * sizeof(int16_t)); in fir16_flush()
88 kfree(fir->history); in fir16_free()
98 fir->history[fir->curr_pos] = sample; in fir16()
104 y += fir->coeffs[i] * fir->history[i - offset1]; in fir16()
106 y += fir->coeffs[i] * fir->history[i + offset2]; in fir16()
[all …]
H A Decho.c126 exp = (ec->fir_state_bg.history[i - offset1] * factor); in lms_adapt_bg()
130 exp = (ec->fir_state_bg.history[i + offset2] * factor); in lms_adapt_bg()
147 const int16_t *history; in oslec_create() local
167 history = fir16_create(&ec->fir_state, ec->fir_taps16[0], ec->taps); in oslec_create()
168 if (!history) in oslec_create()
170 history = fir16_create(&ec->fir_state_bg, ec->fir_taps16[1], ec->taps); in oslec_create()
171 if (!history) in oslec_create()
334 old = (int)ec->fir_state.history[ec->fir_state.curr_pos] * in oslec_update()
335 (int)ec->fir_state.history[ec->fir_state.curr_pos]; in oslec_update()
/OK3568_Linux_fs/external/xserver/hw/dmx/input/
H A Ddmxmotion.c87 if (!dmxLocal->history) in dmxPointerGetMotionEvents()
90 if (dmxLocal->history[OFFSET(i, 0)] >= stop) in dmxPointerGetMotionEvents()
92 if (dmxLocal->history[OFFSET(i, 0)] >= start) { in dmxPointerGetMotionEvents()
94 c[OFFSET(count, j)] = dmxLocal->history[OFFSET(i, j)]; in dmxPointerGetMotionEvents()
115 if (!dmxLocal->history) { in dmxPointerPutMotionEvent()
116 dmxLocal->history = xallocarray(numAxes + 1, in dmxPointerPutMotionEvent()
117 sizeof(*dmxLocal->history) * DMX_MOTION_SIZE); in dmxPointerPutMotionEvent()
130 dmxLocal->history[OFFSET(dmxLocal->tail, 0)] = time; in dmxPointerPutMotionEvent()
137 dmxLocal->history[OFFSET(dmxLocal->tail, i + 1)] in dmxPointerPutMotionEvent()
140 dmxLocal->history[OFFSET(dmxLocal->tail, i + 1)] = 0; in dmxPointerPutMotionEvent()
[all …]
/OK3568_Linux_fs/buildroot/package/readline/
H A Dinputrc21 #"\e[5~": beginning-of-history
22 #"\e[6~": end-of-history
28 #"\e[1~": history-search-backward
32 "\e[5~": history-search-backward
33 "\e[6~": history-search-forward
38 "\eOA": previous-history
40 "\eOB": next-history
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/libedit/
H A Dlibedit_20210910-3.1.bb3 history, and tokenization functions"
23 ALTERNATIVE:${PN}-doc = "history.3"
24 ALTERNATIVE_LINK_NAME[history.3] = "${mandir}/man3/history.3"
/OK3568_Linux_fs/kernel/Documentation/hwmon/
H A Dltc3815.rst44 in1_reset_history Reset input voltage history.
50 in2_reset_history Reset output voltage history.
55 temp1_reset_history Reset temperature history.
60 curr1_reset_history Reset input current history.
66 curr2_reset_history Reset output current history.
H A Dltc2947.rst46 in0_reset_history Write 1 to reset in1 history
56 in1_reset_history Write 1 to reset in2 history
66 curr1_reset_history Write 1 to reset curr1 history
76 power1_reset_history Write 1 to reset power1 history
86 temp1_reset_history Write 1 to reset temp1 history
H A Dltc2945.rst61 in1_reset_history Write 1 to reset in1 history
70 in2_reset_history Write 1 to reset in2 history
79 curr1_reset_history Write 1 to reset curr1 history
89 power1_reset_history Write 1 to reset power1 history
H A Dadm1275.rst99 The following attributes are supported. Limits are read-write, history reset
112 inX_reset_history Write any value to reset history.
127 curr1_reset_history Write any value to reset history.
133 power1_reset_history Write any value to reset history.
144 temp1_reset_history Write any value to reset history.
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/readline/files/
H A Dinputrc35 # of the history
36 # "\e[5~": beginning-of-history
37 # "\e[6~": end-of-history
39 # alternate mappings for "page up" and "page down" to search the history
40 # "\e[5~": history-search-backward
41 # "\e[6~": history-search-forward
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/
H A Dtinfoil.py202 history = tinfoil.config_data.varhistory.variable('DL_DIR')
203 for entry in history:
208 … self.fail('Did not find history entry setting DL_DIR in bitbake.conf. History: %s' % history)
212 history = rd.varhistory.variable('LICENSE')
215 for i, entry in enumerate(history):
223 …tory entry setting LICENSE in bitbake.conf parsing %s recipe. History: %s' % (testrecipe, history))
225 …ail('Did not find history entry setting LICENSE in %s recipe. History: %s' % (testrecipe, history))
227 …ting LICENSE in %s recipe and in bitbake.conf in wrong order. History: %s' % (testrecipe, history))
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/video/
H A Dbackground_segm.hpp98 CV_WRAP virtual void setHistory(int history) = 0;
221 createBackgroundSubtractorMOG2(int history=500, double varThreshold=16,
237 CV_WRAP virtual void setHistory(int history) = 0;
310 createBackgroundSubtractorKNN(int history=500, double dist2Threshold=400.0,
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/video/
H A Dbackground_segm.hpp98 CV_WRAP virtual void setHistory(int history) = 0;
221 createBackgroundSubtractorMOG2(int history=500, double varThreshold=16,
237 CV_WRAP virtual void setHistory(int history) = 0;
310 createBackgroundSubtractorKNN(int history=500, double dist2Threshold=400.0,
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/browser/
H A Dbrowsermainwindow.cpp863 QWebHistory *history = currentTab()->history(); in slotAboutToShowBackMenu() local
864 int historyCount = history->count(); in slotAboutToShowBackMenu()
865 for (int i = history->backItems(historyCount).count() - 1; i >= 0; --i) { in slotAboutToShowBackMenu()
866 QWebHistoryItem item = history->backItems(history->count()).at(i); in slotAboutToShowBackMenu()
881 QWebHistory *history = currentTab()->history(); in slotAboutToShowForwardMenu() local
882 int historyCount = history->count(); in slotAboutToShowForwardMenu()
883 for (int i = 0; i < history->forwardItems(history->count()).count(); ++i) { in slotAboutToShowForwardMenu()
884 QWebHistoryItem item = history->forwardItems(historyCount).at(i); in slotAboutToShowForwardMenu()
930 QWebHistory *history = currentTab()->history(); in slotOpenActionUrl() local
932 history->goToItem(history->backItems(-1*offset).first()); // back in slotOpenActionUrl()
[all …]
H A Dbrowser.pro15 history.ui \
30 history.h \
52 history.cpp \
H A Dhistory.cpp91 QList<HistoryItem> HistoryManager::history() const in history() function in HistoryManager
110 void HistoryManager::setHistory(const QList<HistoryItem> &history, bool loadedAndSorted) in setHistory() argument
112 m_history = history; in setHistory()
357 HistoryModel::HistoryModel(HistoryManager *history, QObject *parent) in HistoryModel() argument
359 , m_history(history) in HistoryModel()
405 QList<HistoryItem> lst = m_history->history(); in data()
450 return (parent.isValid()) ? 0 : m_history->history().count(); in rowCount()
459 QList<HistoryItem> lst = m_history->history(); in removeRows()
620 if (m_history->history().count() > 0) in postPopulated()
662 HistoryManager *history = setHistory; in HistoryDialog() local
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/src/
H A Ddither.h15 p->history = (p->history << 1) + in NAME()
17 if (p->history && p->dither_off) { in NAME()
20 } else if (!p->history && !p->dither_off) { in NAME()
H A Ddither.c262 int32_t history, ranqd1, r; member
303 p->history = (p->history << 1) + in flow_no_shape()
305 if (p->history && p->dither_off) { in flow_no_shape()
308 } else if (!p->history && !p->dither_off) { in flow_no_shape()
/OK3568_Linux_fs/external/xserver/dix/
H A Dtouch.c253 free(ti->history); in TouchFreeTouchPoint()
254 ti->history = NULL; in TouchFreeTouchPoint()
382 if (ti->history) in TouchEventHistoryAllocate()
385 ti->history = calloc(TOUCH_HISTORY_SIZE, sizeof(*ti->history)); in TouchEventHistoryAllocate()
387 if (ti->history) in TouchEventHistoryAllocate()
389 return ti->history != NULL; in TouchEventHistoryAllocate()
395 free(ti->history); in TouchEventHistoryFree()
396 ti->history = NULL; in TouchEventHistoryFree()
412 if (!ti->history) in TouchEventHistoryPush()
433 ti->history[ti->history_elements++] = *ev; in TouchEventHistoryPush()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/readline/
H A Dreadline.inc5 lines, and perform csh-like history expansion on previous commands."
51 ALTERNATIVE:${PN}-doc = "history.3"
52 ALTERNATIVE_LINK_NAME[history.3] = "${mandir}/man3/history.3"
/OK3568_Linux_fs/kernel/Documentation/process/
H A D7.AdvancedTopics.rst41 of the mainline repository, explore the revision history, commit changes to
43 rewriting of history (such as rebase) is also useful. Git comes with its
70 development history. An inconvenient patch (one which breaks bisection,
72 made to disappear from the history entirely. A patch series can be
76 ability to revise history can help in the creation of clean patch sets with
80 a simple obsession for the creation of the perfect project history.
81 Rewriting history will rewrite the changes contained in that history,
84 view of the project history; if you rewrite history which other developers
86 for those developers. So a simple rule of thumb applies here: history
93 (i.e. changes which do not share the same history). It is possible to
[all …]
/OK3568_Linux_fs/kernel/Documentation/maintainer/
H A Drebasing-and-merging.rst17 development history. Indeed, given the scale of the project, avoiding
25 "Rebasing" is the process of changing the history of a series of commits
36 - Changing the history of a set of patches by fixing (or deleting) broken
39 type of operation will be referred to as "history modification"
43 history; used improperly, it can obscure that history and introduce bugs.
61 - Do not rebase a branch that contains history created by others. If you
63 custodian of their history. You should not change it. With few
65 explicitly reverted rather than disappeared via history modification.
78 - Realize that reparenting a patch series (or making significant history
105 current trunk so that no merge commits appear in the history. The kernel
[all …]
/OK3568_Linux_fs/kernel/drivers/s390/net/
H A Dfsm.c98 int e = fi->history[idx].event; in fsm_print_history()
99 int s = fi->history[idx++].state; in fsm_print_history()
115 fi->history[fi->history_index].state = state; in fsm_record_history()
116 fi->history[fi->history_index++].event = event; in fsm_record_history()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/hstr/
H A Dhstr_2.5.0.bb1 SUMMARY = "bash and zsh shell history suggest box - easily view, navigate, search and manage your c…
/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gt/
H A Dselftest_timeline.c44 struct intel_timeline **history; member
57 tl = xchg(&state->history[idx], tl); in __mock_hwsp_record()
95 i915_prandom_shuffle(state->history, in __mock_hwsp_timeline()
96 sizeof(*state->history), in __mock_hwsp_timeline()
139 state.max = PAGE_SIZE / sizeof(*state.history); in mock_hwsp_freelist()
141 state.history = kcalloc(state.max, sizeof(*state.history), GFP_KERNEL); in mock_hwsp_freelist()
142 if (!state.history) { in mock_hwsp_freelist()
159 kfree(state.history); in mock_hwsp_freelist()

12345678910