Home
last modified time | relevance | path

Searched refs:first_entry (Results 1 - 25 of 38) sorted by relevance

12

/kernel/linux/linux-5.10/tools/perf/trace/beauty/
H A Dx86_arch_prctl.sh12 local first_entry=$3
14 printf "#define x86_arch_prctl_codes_%d_offset %s\n" $idx $first_entry
17 fmt="\t[%#x - ${first_entry}]= \"%s\",\n"
/kernel/linux/linux-6.6/tools/perf/trace/beauty/
H A Dx86_arch_prctl.sh12 first_entry=$3
14 printf "#define x86_arch_prctl_codes_%d_offset %s\n" $idx $first_entry
17 fmt="\t[%#x - ${first_entry}]= \"%s\",\n"
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/gt/
H A Dgen6_ppgtt.c83 const unsigned int first_entry = start / I915_GTT_PAGE_SIZE; in gen6_ppgtt_clear_range() local
85 unsigned int pde = first_entry / GEN6_PTES; in gen6_ppgtt_clear_range()
86 unsigned int pte = first_entry % GEN6_PTES; in gen6_ppgtt_clear_range()
123 unsigned int first_entry = vma->node.start / I915_GTT_PAGE_SIZE; in gen6_ppgtt_insert_entries() local
124 unsigned int act_pt = first_entry / GEN6_PTES; in gen6_ppgtt_insert_entries()
125 unsigned int act_pte = first_entry % GEN6_PTES; in gen6_ppgtt_insert_entries()
H A Dintel_ggtt.c302 unsigned int first_entry = start / I915_GTT_PAGE_SIZE; in gen8_ggtt_clear_range() local
306 (gen8_pte_t __iomem *)ggtt->gsm + first_entry; in gen8_ggtt_clear_range()
307 const int max_entries = ggtt_total_entries(ggtt) - first_entry; in gen8_ggtt_clear_range()
312 first_entry, num_entries, max_entries)) in gen8_ggtt_clear_range()
390 unsigned int first_entry = start / I915_GTT_PAGE_SIZE; in gen6_ggtt_clear_range() local
393 (gen6_pte_t __iomem *)ggtt->gsm + first_entry; in gen6_ggtt_clear_range()
394 const int max_entries = ggtt_total_entries(ggtt) - first_entry; in gen6_ggtt_clear_range()
399 first_entry, num_entries, max_entries)) in gen6_ggtt_clear_range()
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gt/
H A Dgen6_ppgtt.c78 const unsigned int first_entry = start / I915_GTT_PAGE_SIZE; in gen6_ppgtt_clear_range() local
80 unsigned int pde = first_entry / GEN6_PTES; in gen6_ppgtt_clear_range()
81 unsigned int pte = first_entry % GEN6_PTES; in gen6_ppgtt_clear_range()
117 unsigned int first_entry = vma_res->start / I915_GTT_PAGE_SIZE; in gen6_ppgtt_insert_entries() local
118 unsigned int act_pt = first_entry / GEN6_PTES; in gen6_ppgtt_insert_entries()
119 unsigned int act_pte = first_entry % GEN6_PTES; in gen6_ppgtt_insert_entries()
H A Dintel_ggtt.c337 unsigned int first_entry = start / I915_GTT_PAGE_SIZE; in gen8_ggtt_clear_range() local
341 (gen8_pte_t __iomem *)ggtt->gsm + first_entry; in gen8_ggtt_clear_range()
342 const int max_entries = ggtt_total_entries(ggtt) - first_entry; in gen8_ggtt_clear_range()
347 first_entry, num_entries, max_entries)) in gen8_ggtt_clear_range()
486 unsigned int first_entry = start / I915_GTT_PAGE_SIZE; in gen6_ggtt_clear_range() local
489 (gen6_pte_t __iomem *)ggtt->gsm + first_entry; in gen6_ggtt_clear_range()
490 const int max_entries = ggtt_total_entries(ggtt) - first_entry; in gen6_ggtt_clear_range()
495 first_entry, num_entries, max_entries)) in gen6_ggtt_clear_range()
/kernel/linux/linux-5.10/include/drm/
H A Dintel-gtt.h28 void intel_gtt_clear_range(unsigned int first_entry, unsigned int num_entries);
/kernel/linux/linux-6.6/include/drm/
H A Dintel-gtt.h30 void intel_gmch_gtt_clear_range(unsigned int first_entry, unsigned int num_entries);
/kernel/linux/linux-6.6/drivers/net/ethernet/microchip/sparx5/
H A Dsparx5_fdma.c304 ((unsigned long)tx->first_entry + FDMA_DCB_MAX * sizeof(*dcb))) in sparx5_fdma_next_dcb()
305 next_dcb = tx->first_entry; in sparx5_fdma_next_dcb()
326 (unsigned long)tx->first_entry); in sparx5_fdma_xmit()
404 tx->first_entry = tx->curr_entry; in sparx5_fdma_tx_alloc()
/kernel/linux/linux-5.10/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp_mip.c25 __le32 first_entry; member
/kernel/linux/linux-6.6/drivers/net/ethernet/netronome/nfp/nfpcore/
H A Dnfp_mip.c25 __le32 first_entry; member
/kernel/linux/linux-5.10/drivers/char/agp/
H A Dintel-gtt.c884 static void intel_gtt_insert_pages(unsigned int first_entry, in intel_gtt_insert_pages() argument
891 for (i = 0, j = first_entry; i < num_entries; i++, j++) { in intel_gtt_insert_pages()
951 void intel_gtt_clear_range(unsigned int first_entry, unsigned int num_entries) in intel_gtt_clear_range() argument
955 for (i = first_entry; i < (first_entry + num_entries); i++) { in intel_gtt_clear_range()
/kernel/linux/linux-6.6/drivers/char/agp/
H A Dintel-gtt.c882 static void intel_gmch_gtt_insert_pages(unsigned int first_entry, in intel_gmch_gtt_insert_pages() argument
889 for (i = 0, j = first_entry; i < num_entries; i++, j++) { in intel_gmch_gtt_insert_pages()
949 void intel_gmch_gtt_clear_range(unsigned int first_entry, unsigned int num_entries) in intel_gmch_gtt_clear_range() argument
953 for (i = first_entry; i < (first_entry + num_entries); i++) { in intel_gmch_gtt_clear_range()
/kernel/linux/linux-5.10/drivers/net/ethernet/stmicro/stmmac/
H A Dstmmac_main.c3180 unsigned int first_entry, tx_packets; in stmmac_tso_xmit() local
3242 first_entry = tx_q->cur_tx; in stmmac_tso_xmit()
3243 WARN_ON(tx_q->tx_skbuff[first_entry]); in stmmac_tso_xmit()
3246 desc = &tx_q->dma_entx[first_entry].basic; in stmmac_tso_xmit()
3248 desc = &tx_q->dma_tx[first_entry]; in stmmac_tso_xmit()
3260 tx_q->tx_skbuff_dma[first_entry].buf = des; in stmmac_tso_xmit()
3261 tx_q->tx_skbuff_dma[first_entry].len = skb_headlen(skb); in stmmac_tso_xmit()
3363 1, tx_q->tx_skbuff_dma[first_entry].last_segment, in stmmac_tso_xmit()
3385 __func__, tx_q->cur_tx, tx_q->dirty_tx, first_entry, in stmmac_tso_xmit()
3421 unsigned int first_entry, tx_packet in stmmac_xmit() local
[all...]
/kernel/linux/linux-6.6/net/sunrpc/
H A Dxprtmultipath.c302 struct rpc_xprt *first_entry(struct list_head *head), in _xprt_iter_current_entry()
313 return first_entry(head); in _xprt_iter_current_entry()
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dml/dcn321/
H A Ddcn321_fpu.c251 static void swap_table_entries(struct _vcs_dpi_voltage_scaling_st *first_entry, in swap_table_entries() argument
254 struct _vcs_dpi_voltage_scaling_st temp_entry = *first_entry; in swap_table_entries()
255 *first_entry = *second_entry; in swap_table_entries()
/kernel/linux/linux-6.6/drivers/accel/habanalabs/common/
H A Dhw_queue.c634 bool first_entry; in hl_hw_queue_schedule_cs() local
750 first_entry = list_first_entry(&hdev->cs_mirror_list, in hl_hw_queue_schedule_cs()
753 first_entry && cs_needs_timeout(cs)) { in hl_hw_queue_schedule_cs()
/kernel/linux/linux-6.6/drivers/net/ethernet/sun/
H A Dsunhme.c1953 u32 first_len, u32 first_entry, u32 entry) in unmap_partial_tx_skb()
1959 first_entry = NEXT_TX(first_entry); in unmap_partial_tx_skb()
1960 while (first_entry != entry) { in unmap_partial_tx_skb()
1961 struct happy_meal_txd *this = &txbase[first_entry]; in unmap_partial_tx_skb()
2015 int frag, first_entry = entry; in happy_meal_start_xmit() local
2036 first_entry, entry); in happy_meal_start_xmit()
2047 hme_write_txd(hp, &hp->happy_block->happy_meal_txd[first_entry], in happy_meal_start_xmit()
1952 unmap_partial_tx_skb(struct happy_meal *hp, u32 first_mapping, u32 first_len, u32 first_entry, u32 entry) unmap_partial_tx_skb() argument
/kernel/linux/linux-5.10/drivers/media/pci/intel/ipu3/
H A Dipu3-cio2.c150 entry[0].first_entry.ctrl = CIO2_FBPT_CTRL_VALID | in cio2_fbpt_entry_enable()
161 entry[0].first_entry.first_page_offset = 0; in cio2_fbpt_entry_init_dummy()
181 entry[0].first_entry.first_page_offset = b->offset; in cio2_fbpt_entry_init_buf()
182 remaining = length + entry[0].first_entry.first_page_offset; in cio2_fbpt_entry_init_buf()
551 if (entry->first_entry.ctrl & CIO2_FBPT_CTRL_VALID) { in cio2_buffer_done()
584 } while (!(entry->first_entry.ctrl & CIO2_FBPT_CTRL_VALID)); in cio2_buffer_done()
H A Dipu3-cio2.h397 /* cio2 fbpt first_entry ctrl status */
416 } first_entry; member
/kernel/linux/linux-6.6/drivers/media/pci/intel/ipu3/
H A Dipu3-cio2.c167 entry[0].first_entry.ctrl = CIO2_FBPT_CTRL_VALID | in cio2_fbpt_entry_enable()
178 entry[0].first_entry.first_page_offset = 0; in cio2_fbpt_entry_init_dummy()
198 entry[0].first_entry.first_page_offset = b->offset; in cio2_fbpt_entry_init_buf()
199 remaining = length + entry[0].first_entry.first_page_offset; in cio2_fbpt_entry_init_buf()
552 if (entry->first_entry.ctrl & CIO2_FBPT_CTRL_VALID) { in cio2_buffer_done()
585 } while (!(entry->first_entry.ctrl & CIO2_FBPT_CTRL_VALID)); in cio2_buffer_done()
/kernel/linux/linux-6.6/drivers/net/ethernet/stmicro/stmmac/
H A Dstmmac_main.c4131 unsigned int first_entry, tx_packets; in stmmac_tso_xmit() local
4196 first_entry = tx_q->cur_tx; in stmmac_tso_xmit()
4197 WARN_ON(tx_q->tx_skbuff[first_entry]); in stmmac_tso_xmit()
4200 desc = &tx_q->dma_entx[first_entry].basic; in stmmac_tso_xmit()
4202 desc = &tx_q->dma_tx[first_entry]; in stmmac_tso_xmit()
4214 tx_q->tx_skbuff_dma[first_entry].buf = des; in stmmac_tso_xmit()
4215 tx_q->tx_skbuff_dma[first_entry].len = skb_headlen(skb); in stmmac_tso_xmit()
4216 tx_q->tx_skbuff_dma[first_entry].map_as_page = false; in stmmac_tso_xmit()
4217 tx_q->tx_skbuff_dma[first_entry].buf_type = STMMAC_TXBUF_T_SKB; in stmmac_tso_xmit()
4325 1, tx_q->tx_skbuff_dma[first_entry] in stmmac_tso_xmit()
4393 unsigned int first_entry, tx_packets, enh_desc; stmmac_xmit() local
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/realtek/
H A D8139cp.c805 int frag, first_entry = entry; in cp_start_xmit() local
831 unwind_tx_frag_mapping(cp, skb, first_entry, entry); in cp_start_xmit()
854 txd = &cp->tx_ring[first_entry]; in cp_start_xmit()
863 cp->tx_opts[first_entry] = ctrl; in cp_start_xmit()
865 first_entry, entry, skb->len); in cp_start_xmit()
/kernel/linux/linux-6.6/drivers/net/ethernet/realtek/
H A D8139cp.c805 int frag, first_entry = entry; in cp_start_xmit() local
831 unwind_tx_frag_mapping(cp, skb, first_entry, entry); in cp_start_xmit()
854 txd = &cp->tx_ring[first_entry]; in cp_start_xmit()
863 cp->tx_opts[first_entry] = ctrl; in cp_start_xmit()
865 first_entry, entry, skb->len); in cp_start_xmit()
/kernel/linux/linux-5.10/drivers/net/ethernet/sun/
H A Dsunhme.c2267 u32 first_len, u32 first_entry, u32 entry) in unmap_partial_tx_skb()
2273 first_entry = NEXT_TX(first_entry); in unmap_partial_tx_skb()
2274 while (first_entry != entry) { in unmap_partial_tx_skb()
2275 struct happy_meal_txd *this = &txbase[first_entry]; in unmap_partial_tx_skb()
2330 int frag, first_entry = entry; in happy_meal_start_xmit() local
2351 first_entry, entry); in happy_meal_start_xmit()
2362 hme_write_txd(hp, &hp->happy_block->happy_meal_txd[first_entry], in happy_meal_start_xmit()
2266 unmap_partial_tx_skb(struct happy_meal *hp, u32 first_mapping, u32 first_len, u32 first_entry, u32 entry) unmap_partial_tx_skb() argument

Completed in 74 milliseconds

12