Home
last modified time | relevance | path

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

1234

/linux/drivers/misc/echo/
A Dfir.h45 int16_t *history; member
57 int16_t *history; member
68 float *history; member
78 return fir->history; in fir16_create()
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()
120 return fir->history; in fir32_create()
130 kfree(fir->history); in fir32_free()
[all …]
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()
/linux/Documentation/hwmon/
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.
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
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
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.
A Dmax8688.rst62 in1_reset_history Write any value to reset history.
72 curr1_reset_history Write any value to reset history.
84 temp1_reset_history Write any value to reset history.
A Dina209.rst43 in0_reset_history reset shunt voltage history
56 in1_reset_history reset bus voltage history
68 power1_reset_history reset power history
A Dmax16064.rst62 in[1-4]_reset_history Write any value to reset history.
74 temp1_reset_history Write any value to reset history.
A Dltc2978.rst281 in1_reset_history Reset input voltage history.
318 in[N]_reset_history Reset output voltage history.
371 temp[N]_reset_history Reset temperature history.
409 curr1_reset_history Reset input current history.
448 curr[N]_reset_history Reset output current history.
A Dmax34440.rst128 in[1-6]_reset_history Write any value to reset history.
146 curr[1-6]_reset_history Write any value to reset history.
181 temp[1-8]_reset_history Write any value to reset history.
/linux/Documentation/process/
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 …]
/linux/Documentation/maintainer/
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
132 history into your tree, you cannot rebase that branch, even if you
[all …]
/linux/drivers/s390/net/
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()
/linux/drivers/gpu/drm/i915/gt/
A Dselftest_timeline.c66 struct intel_timeline **history; member
79 tl = xchg(&state->history[idx], tl); in __mock_hwsp_record()
125 i915_prandom_shuffle(state->history, in __mock_hwsp_timeline()
126 sizeof(*state->history), in __mock_hwsp_timeline()
169 state.max = PAGE_SIZE / sizeof(*state.history); in mock_hwsp_freelist()
171 state.history = kcalloc(state.max, sizeof(*state.history), GFP_KERNEL); in mock_hwsp_freelist()
172 if (!state.history) { in mock_hwsp_freelist()
189 kfree(state.history); in mock_hwsp_freelist()
A Dselftest_rps.c149 u8 history[64], i; in wait_for_freq() local
154 memset(history, freq, sizeof(history)); in wait_for_freq()
171 if (!memchr_inv(history, act, sizeof(history))) in wait_for_freq()
174 history[i] = act; in wait_for_freq()
175 i = (i + 1) % ARRAY_SIZE(history); in wait_for_freq()
/linux/include/trace/events/
A Dwriteback.h182 unsigned int history),
184 TP_ARGS(inode, wbc, history),
190 __field(unsigned int, history)
197 __entry->history = history;
204 __entry->history
/linux/Documentation/filesystems/
A Docfs2-online-filecheck.rst54 inode, fixing inode and setting the size of result record history.
83 3. The record cache is used to store the history of check/fix results. It's
96 The inode and the result history will be maintained temporarily in a
/linux/drivers/infiniband/hw/cxgb4/
A Dcm.c154 set_bit(CM_ID_DEREFED, &epc->history); in deref_cm_id()
159 set_bit(CM_ID_REFED, &epc->history); in ref_cm_id()
167 set_bit(QP_DEREFED, &ep->com.history); in deref_qp()
173 set_bit(QP_REFED, &ep->com.history); in ref_qp()
1246 set_bit(ACT_ESTAB, &ep->com.history); in act_establish()
2698 set_bit(PASS_ESTAB, &ep->com.history); in pass_establish()
2725 set_bit(PEER_CLOSE, &ep->com.history); in peer_close()
2844 set_bit(PEER_ABORT, &ep->com.history); in peer_abort()
3103 set_bit(ULP_REJECT, &ep->com.history); in c4iw_reject_cr()
3139 set_bit(ULP_ACCEPT, &ep->com.history); in c4iw_accept_cr()
[all …]
/linux/drivers/crypto/cavium/zip/
A Dzip_device.h100 union zip_zptr_s *history; member
/linux/security/apparmor/
A Dmatch.c686 if (wb->history[pos] < state) in is_loop()
690 if (wb->history[pos] == state) { in is_loop()
730 wb->history[wb->pos] = state; in leftmatch_fb()
749 wb->history[wb->pos] = state; in leftmatch_fb()
/linux/Documentation/arm/omap/
A Domap.rst2 OMAP history
/linux/tools/perf/
A DCREDITS30 The full history of the files can be found in the upstream Git commits.
/linux/fs/
A Dfs-writeback.c763 u16 history; in wbc_detach_inode() local
769 history = inode->i_wb_frn_history; in wbc_detach_inode()
813 history <<= slots; in wbc_detach_inode()
815 history |= (1U << slots) - 1; in wbc_detach_inode()
817 if (history) in wbc_detach_inode()
818 trace_inode_foreign_history(inode, wbc, history); in wbc_detach_inode()
827 if (hweight32(history) > WB_FRN_HIST_THR_SLOTS) in wbc_detach_inode()
837 inode->i_wb_frn_history = history; in wbc_detach_inode()
/linux/Documentation/devicetree/bindings/powerpc/opal/
A Dsensor-groups.txt17 operations like clearing the min/max history of all

Completed in 50 milliseconds

1234