Searched refs:new_sg (Results 1 – 4 of 4) sorted by relevance
/drivers/crypto/ |
D | omap-crypto.c | 18 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 …]
|
D | omap-crypto.h | 28 struct scatterlist *new_sg, u16 flags,
|
/drivers/gpu/drm/i915/ |
D | i915_scatterlist.c | 19 struct scatterlist *sg, *new_sg; in i915_sg_trim() local 28 new_sg = new_st.sgl; in i915_sg_trim() 30 sg_set_page(new_sg, sg_page(sg), sg->length, 0); in i915_sg_trim() 31 sg_dma_address(new_sg) = sg_dma_address(sg); in i915_sg_trim() 32 sg_dma_len(new_sg) = sg_dma_len(sg); in i915_sg_trim() 34 new_sg = sg_next(new_sg); in i915_sg_trim() 36 GEM_BUG_ON(new_sg); /* Should walk exactly nents and hit the end */ in i915_sg_trim()
|
/drivers/dma-buf/heaps/ |
D | system_heap.c | 70 struct scatterlist *sg, *new_sg; in dup_sg_table() local 82 new_sg = new_table->sgl; in dup_sg_table() 84 sg_set_page(new_sg, sg_page(sg), sg->length, sg->offset); in dup_sg_table() 85 new_sg = sg_next(new_sg); in dup_sg_table()
|