/linux-6.12.1/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.12.1/arch/x86/kernel/cpu/mce/ |
D | threshold.c | 46 storm->banks[bank].history = ~0ull; in mce_inherit_storm() 89 storm->banks[bank].history = 0; in cmci_storm_end() 102 u64 history = 0; in mce_track_storm() local 123 history = storm->banks[mce->bank].history << shift; in mce_track_storm() 129 history |= 1; in mce_track_storm() 131 storm->banks[mce->bank].history = history; in mce_track_storm() 134 if (history & GENMASK_ULL(STORM_END_POLL_THRESHOLD, 0)) in mce_track_storm() 140 if (hweight64(history) < STORM_BEGIN_THRESHOLD) in mce_track_storm()
|
/linux-6.12.1/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 | 107 The following attributes are supported. Limits are read-write, history reset 120 inX_reset_history Write any value to reset history. 135 curr1_reset_history Write any value to reset history. 141 power1_reset_history Write any value to reset history. 152 temp1_reset_history Write any value to reset history.
|
D | ltc4282.rst | 51 in0_reset_history Write 1 to reset in0 history. 64 in1_reset_history Write 1 to reset in1 history. 78 in2_reset_history Write 1 to reset in2 history 88 curr1_reset_history Write 1 to reset curr1 history. 100 power1_reset_history Write 1 to reset power1 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.12.1/lib/ |
D | dynamic_queue_limits.c | 60 dql->history)) in dql_check_stall() 76 now, dql->history); in dql_check_stall() 205 memset(dql->history, 0, sizeof(dql->history)); in dql_reset()
|
/linux-6.12.1/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.12.1/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.12.1/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.12.1/include/linux/ |
D | dynamic_queue_limits.h | 45 #define DQL_HIST_ENT(dql, idx) ((dql)->history[(idx) % DQL_HIST_LEN]) 58 unsigned long history[DQL_HIST_LEN]; member
|
/linux-6.12.1/drivers/gpu/drm/msm/adreno/ |
D | a6xx_hfi.c | 41 queue->history[(queue->history_idx++) % HFI_HISTORY_SZ] = index; in a6xx_hfi_queue_read() 82 queue->history[(queue->history_idx++) % HFI_HISTORY_SZ] = index; in a6xx_hfi_queue_write() 790 memset(&queue->history, 0xff, sizeof(queue->history)); in a6xx_hfi_stop() 804 memset(&queue->history, 0xff, sizeof(queue->history)); in a6xx_hfi_queue_init()
|
/linux-6.12.1/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()
|
/linux-6.12.1/drivers/crypto/cavium/zip/ |
D | zip_device.h | 100 union zip_zptr_s *history; member
|
/linux-6.12.1/include/trace/events/ |
D | writeback.h | 190 unsigned int history), 192 TP_ARGS(inode, wbc, history), 198 __field(unsigned int, history) 205 __entry->history = history; 212 __entry->history
|
/linux-6.12.1/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.12.1/Documentation/arch/arm/omap/ |
D | omap.rst | 2 OMAP history
|