Searched refs:new_sg (Results 1 – 5 of 5) sorted by relevance
/linux/drivers/crypto/ |
A 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 …]
|
A D | omap-crypto.h | 28 struct scatterlist *new_sg, u16 flags,
|
/linux/drivers/gpu/drm/i915/ |
A 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()
|
/linux/drivers/dma-buf/heaps/ |
A D | system_heap.c | 62 struct scatterlist *sg, *new_sg; in dup_sg_table() local 74 new_sg = new_table->sgl; in dup_sg_table() 76 sg_set_page(new_sg, sg_page(sg), sg->length, sg->offset); in dup_sg_table() 77 new_sg = sg_next(new_sg); in dup_sg_table()
|
/linux/lib/ |
A D | scatterlist.c | 388 struct scatterlist *new_sg, *next_sg; in get_next_sg() local 399 new_sg = sg_kmalloc(alloc_size, gfp_mask); in get_next_sg() 400 if (!new_sg) in get_next_sg() 402 sg_init_table(new_sg, alloc_size); in get_next_sg() 405 __sg_chain(next_sg, new_sg); in get_next_sg() 407 table->sgt.sgl = new_sg; in get_next_sg() 410 return new_sg; in get_next_sg()
|
Completed in 11 milliseconds