/Linux-v6.1/drivers/misc/echo/ |
D | fir.h | 21 history sample offsets that are 16 bit aligned - the dual MAC needs 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() [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-v6.1/drivers/macintosh/ |
D | windfarm_pid.h | 22 * but could be implemented (with necessary adjustment of the history 27 int history_len; /* Size of history buffer */ 38 s32 samples[WF_PID_MAX_HISTORY]; /* samples history buffer */ 39 s32 errors[WF_PID_MAX_HISTORY]; /* error history buffer */ 56 * but could be implemented (with necessary adjustment of the history 61 int history_len; /* Size of history buffer */ 75 s32 powers[WF_PID_MAX_HISTORY]; /* power history buffer */ 76 s32 errors[WF_PID_MAX_HISTORY]; /* error history buffer */ 77 s32 temps[2]; /* temp. history buffer */
|
/Linux-v6.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-v6.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. 48 - History that has been exposed to the world beyond your private system 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 [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-v6.1/drivers/acpi/acpica/ |
D | dbhistry.c | 4 * Module Name: dbhistry - debugger HISTORY command 39 * DESCRIPTION: Add a command line to the history buffer. 108 * DESCRIPTION: Display the contents of the history buffer 119 /* Dump entire history buffer */ in acpi_db_display_history() 146 * DESCRIPTION: Get a command from the history buffer 169 * PARAMETERS: cmd_num - Index of the desired history entry. 174 * DESCRIPTION: Get a command from the history buffer 183 /* Search history buffer */ in acpi_db_get_history_by_index() 194 /* History buffer is circular */ in acpi_db_get_history_by_index() 202 acpi_os_printf("Invalid history number: %u\n", history_index); in acpi_db_get_history_by_index()
|
/Linux-v6.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 | 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 | 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 | 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 | 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.
|
/Linux-v6.1/net/dccp/ccids/lib/ |
D | packet_history.h | 3 * Packet RX/TX history data structures and routines for TFRC-based protocols. 31 * tfrc_tx_hist_entry - Simple singly-linked TX history list 75 * tfrc_rx_hist - RX history structure for TFRC-based protocols 76 * @ring: Packet history for RTT sampling and loss detection 77 * @loss_count: Number of entries in circular history 106 * tfrc_rx_hist_entry - return the n-th history entry after loss_start
|
D | packet_history.c | 29 * Transmitter History Routines 77 * Receiver History Routines 150 * of loss_prev; and it must not equal that of any valid history entry. 190 * Reorder history to insert S2 between S0 and S1 in __one_after_loss() 217 * Reorder history to insert S3 between S1 and S2 in __two_after_loss() 252 * Reorder history to insert S3 between S0 and S1. in __two_after_loss() 262 /* recycle RX history records to continue loss detection if necessary */ 297 * @h: The non-empty RX history object 308 * records accordingly, the caller should not perform any more RX history 368 * @h: The non-empty RX history object [all …]
|
D | loss_interval.h | 15 * Number of loss intervals (RFC 4342, 8.6.1). The history size is one more than 22 * tfrc_loss_interval - Loss history record for TFRC-based protocols
|
/Linux-v6.1/drivers/s390/net/ |
D | fsm.c | 96 printk(KERN_DEBUG "fsm(%s): History:\n", fi->name); in fsm_print_history() 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-v6.1/drivers/crypto/cavium/zip/ |
D | zip_device.h | 93 * @history: Decompression history pointer 100 union zip_zptr_s *history; member
|
D | common.h | 98 * @history: Pointer to the history buffer 110 * @history_len: Size of the history data 125 u64 history; member
|
/Linux-v6.1/LICENSES/deprecated/ |
D | GFDL-1.2 | 130 "Dedications", "Endorsements", or "History".) To "Preserve the Title" 207 (which should, if there were any, be listed in the History section 226 I. Preserve the section Entitled "History", Preserve its Title, and add 229 there is no section Entitled "History" in the Document, create one 236 it was based on. These may be placed in the "History" section. 299 In the combination, you must combine any sections Entitled "History" 301 "History"; likewise combine any sections Entitled "Acknowledgements", 356 "Dedications", or "History", the requirement (section 4) to Preserve
|
/Linux-v6.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-v6.1/tools/testing/selftests/powerpc/nx-gzip/ |
D | gunz_test.c | 27 * histlen: history/dictionary length 28 * history: sliding window of up to 32KB of data 406 /* Leave unused space due to history rounding rules */ in decompress_file() 548 * dictionary (history) to NX, which is basically in decompress_file() 556 /* Round up the history size to quadword. Section 2.10 */ in decompress_file() 562 /* Chain in the history buffer to the DDE list */ in decompress_file() 572 /* Up to 32KB history wraps around fifo_out */ in decompress_file() 621 /* Reduce output free space amount not to overwrite the history */ in decompress_file() 648 /* source_sz includes history */ in decompress_file() 755 /* History length error when CE(1)=1 CE(0)=0. */ in decompress_file() [all …]
|
/Linux-v6.1/drivers/staging/rtl8192u/ |
D | r819xU_cmdpkt.c | 20 * History: 139 * Revised History: 203 * Revised History: 264 * Revised History: 326 * Revised History: 344 * Overview: Firmware add a new tx rate history 352 * Revised History: 425 * Revised History:
|
/Linux-v6.1/drivers/staging/rtl8723bs/core/ |
D | rtw_efuse.c | 70 * Revised History: 95 * Revised History: 189 * Revised History: 357 * Revised History: 410 * Revised History: 447 * Revised History: 493 * Revised History: 526 * Revised History:
|