Lines Matching defs:entries

3220 		entry = &rxba->entries[i];
3303 struct iwx_reorder_buf_entry *entries = &rxba->entries[0];
3323 if (ml_empty(&entries[index].frames)) {
3331 timeradd(&entries[index].reorder_time, &timeout, &expiry);
4838 struct iwx_reorder_buf_entry *entries = &rxba->entries[0];
4853 chanidx = entries[index].chanidx;
4854 rx_pkt_status = entries[index].rx_pkt_status;
4855 is_shortpre = entries[index].is_shortpre;
4856 rate_n_flags = entries[index].rate_n_flags;
4857 device_timestamp = entries[index].device_timestamp;
4858 rxi = &entries[index].rxi;
4865 while ((m = ml_dequeue(&entries[index].frames)) != NULL) {
4962 struct iwx_reorder_buf_entry *entries;
5011 entries = &rxba->entries[0];
5089 if (!ml_empty(&entries[index].frames)) {
5100 entries[index].chanidx = chanidx;
5101 entries[index].is_shortpre = is_shortpre;
5102 entries[index].rate_n_flags = rate_n_flags;
5103 entries[index].device_timestamp = device_timestamp;
5104 memcpy(&entries[index].rxi, rxi, sizeof(entries[index].rxi));
5108 ml_enqueue(&entries[index].frames, m);
5110 getmicrouptime(&entries[index].reorder_time);
10490 * entries contain dummy values for data defined only for "new" entries.
10491 * As of 2022, Linux developers are still in the process of moving entries
10494 * entries from "old" to "new" have at times been reverted due to regressions.
10498 * Our table below contains mostly "new" entries declared in iwlwifi
10503 * Some "old"-style entries are required to identify the firmware image to use.
10506 * correctly in the absence of their entries. So we include them just in case.
10536 * When adding entries to this table keep in mind that entries must
11392 for (j = 0; j < nitems(rxba->entries); j++)
11393 ml_init(&rxba->entries[j].frames);