Home
last modified time | relevance | path

Searched refs:new_sg (Results 1 – 5 of 5) sorted by relevance

/drivers/gpu/drm/i915/
Di915_scatterlist.c12 struct scatterlist *sg, *new_sg; in i915_sg_trim() local
21 new_sg = new_st.sgl; in i915_sg_trim()
23 sg_set_page(new_sg, sg_page(sg), sg->length, 0); in i915_sg_trim()
24 sg_dma_address(new_sg) = sg_dma_address(sg); in i915_sg_trim()
25 sg_dma_len(new_sg) = sg_dma_len(sg); in i915_sg_trim()
27 new_sg = sg_next(new_sg); in i915_sg_trim()
29 GEM_BUG_ON(new_sg); /* Should walk exactly nents and hit the end */ in i915_sg_trim()
/drivers/crypto/
Domap-crypto.c18 struct scatterlist *new_sg, u16 flags) in omap_crypto_copy_sg_lists() argument
24 new_sg = kmalloc_array(n, sizeof(*sg), GFP_KERNEL); in omap_crypto_copy_sg_lists()
25 if (!new_sg) in omap_crypto_copy_sg_lists()
28 sg_init_table(new_sg, n); in omap_crypto_copy_sg_lists()
31 tmp = new_sg; in omap_crypto_copy_sg_lists()
50 *sg = new_sg; in omap_crypto_copy_sg_lists()
56 struct scatterlist *new_sg, u16 flags) in omap_crypto_copy_sgs() argument
79 sg_init_table(new_sg, 1); in omap_crypto_copy_sgs()
81 sg_set_buf(new_sg, buf, new_len); in omap_crypto_copy_sgs()
83 *sg = new_sg; in omap_crypto_copy_sgs()
[all …]
Domap-crypto.h28 struct scatterlist *new_sg, u16 flags,
/drivers/staging/android/ion/
Dion_dma_buf.c20 struct scatterlist *sg, *new_sg; in dup_sg_table() local
32 new_sg = new_table->sgl; in dup_sg_table()
34 memcpy(new_sg, sg, sizeof(*sg)); in dup_sg_table()
35 new_sg->dma_address = 0; in dup_sg_table()
36 new_sg = sg_next(new_sg); in dup_sg_table()
/drivers/dma-buf/heaps/
Dsystem_heap.c72 struct scatterlist *sg, *new_sg; in dup_sg_table() local
84 new_sg = new_table->sgl; in dup_sg_table()
86 sg_set_page(new_sg, sg_page(sg), sg->length, sg->offset); in dup_sg_table()
87 new_sg = sg_next(new_sg); in dup_sg_table()