/linux-6.6.21/drivers/misc/echo/ |
D | fir.h | 45 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 …]
|
D | echo.c | 126 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-6.6.21/Documentation/hwmon/ |
D | ltc3815.rst | 44 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.
|
D | ltc2947.rst | 46 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
|
D | ltc2945.rst | 61 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
|
D | adm1275.rst | 99 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.
|
D | max8688.rst | 62 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.
|
D | ina209.rst | 43 in0_reset_history reset shunt voltage history 56 in1_reset_history reset bus voltage history 68 power1_reset_history reset power history
|
D | max16064.rst | 62 in[1-4]_reset_history Write any value to reset history. 74 temp1_reset_history Write any value to reset history.
|
D | ltc2978.rst | 281 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.
|
D | max34440.rst | 128 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-6.6.21/Documentation/process/ |
D | 7.AdvancedTopics.rst | 41 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-6.6.21/drivers/s390/net/ |
D | fsm.c | 98 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-6.6.21/Documentation/maintainer/ |
D | rebasing-and-merging.rst | 17 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 …]
|
D | messy-diffstat.rst | 11 complicated development history will yield a massive diffstat containing a 20 A Git development history proceeds as a series of commits. In a simplified 30 Here, there are two clear points in the history; Git will essentially 36 result in the simplest case is a history that looks like:: 46 consider a slightly more complex development history::
|
/linux-6.6.21/drivers/gpu/drm/msm/adreno/ |
D | a6xx_hfi.c | 39 queue->history[(queue->history_idx++) % HFI_HISTORY_SZ] = index; in a6xx_hfi_queue_read() 80 queue->history[(queue->history_idx++) % HFI_HISTORY_SZ] = index; in a6xx_hfi_queue_write() 702 memset(&queue->history, 0xff, sizeof(queue->history)); in a6xx_hfi_stop() 716 memset(&queue->history, 0xff, sizeof(queue->history)); in a6xx_hfi_queue_init()
|
/linux-6.6.21/drivers/gpu/drm/i915/gt/ |
D | selftest_timeline.c | 68 struct intel_timeline **history; member 81 tl = xchg(&state->history[idx], tl); in __mock_hwsp_record() 127 i915_prandom_shuffle(state->history, in __mock_hwsp_timeline() 128 sizeof(*state->history), in __mock_hwsp_timeline() 171 state.max = PAGE_SIZE / sizeof(*state.history); in mock_hwsp_freelist() 173 state.history = kcalloc(state.max, sizeof(*state.history), GFP_KERNEL); in mock_hwsp_freelist() 174 if (!state.history) { in mock_hwsp_freelist() 191 kfree(state.history); in mock_hwsp_freelist()
|
D | selftest_rps.c | 153 u8 history[64], i; in wait_for_freq() local 158 memset(history, freq, sizeof(history)); in wait_for_freq() 175 if (!memchr_inv(history, act, sizeof(history))) in wait_for_freq() 178 history[i] = act; in wait_for_freq() 179 i = (i + 1) % ARRAY_SIZE(history); in wait_for_freq()
|
/linux-6.6.21/drivers/crypto/cavium/zip/ |
D | zip_device.h | 100 union zip_zptr_s *history; member
|
/linux-6.6.21/Documentation/filesystems/ |
D | ocfs2-online-filecheck.rst | 54 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-6.6.21/include/trace/events/ |
D | writeback.h | 182 unsigned int history), 184 TP_ARGS(inode, wbc, history), 190 __field(unsigned int, history) 197 __entry->history = history; 204 __entry->history
|
/linux-6.6.21/Documentation/arch/arm/omap/ |
D | omap.rst | 2 OMAP history
|
/linux-6.6.21/drivers/infiniband/hw/cxgb4/ |
D | cm.c | 154 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() 931 set_bit(ACT_OPEN_REQ, &ep->com.history); in send_connect() 1246 set_bit(ACT_ESTAB, &ep->com.history); in act_establish() 1280 set_bit(CLOSE_UPCALL, &ep->com.history); in close_complete_upcall() 1295 set_bit(DISCONN_UPCALL, &ep->com.history); in peer_close_upcall() 1312 set_bit(ABORT_UPCALL, &ep->com.history); in peer_abort_upcall() 1352 set_bit(CONN_RPL_UPCALL, &ep->com.history); in connect_reply_upcall() [all …]
|
/linux-6.6.21/tools/perf/ |
D | CREDITS | 30 The full history of the files can be found in the upstream Git commits.
|
/linux-6.6.21/security/apparmor/ |
D | match.c | 684 if (wb->history[pos] < state) in is_loop() 688 if (wb->history[pos] == state) { in is_loop() 728 wb->history[wb->pos] = state; in leftmatch_fb() 747 wb->history[wb->pos] = state; in leftmatch_fb()
|