Lines Matching refs:chunk
90 * A chunk is collection of contiguous bytes to be transferred.
91 * The gap(in bytes) between two chunks is called inter-chunk-gap(ICG).
93 * A FRAME is the smallest series of contiguous {chunk,icg} pairs,
115 * chunk and before first src/dst address for next chunk.
119 * chunk and before the first dst address for next chunk.
122 * chunk and before the first src address for next chunk.
135 * @src_start: Bus address of source for the first chunk.
136 * @dst_start: Bus address of destination for the first chunk.
148 * @sgl: Array of {chunk,icg} pairs that make up a frame.
1285 static inline size_t dmaengine_get_dst_icg(struct dma_interleaved_template *xt, struct data_chunk *chunk)
1287 return dmaengine_get_icg(xt->dst_inc, xt->dst_sgl, chunk->icg, chunk->dst_icg);
1290 static inline size_t dmaengine_get_src_icg(struct dma_interleaved_template *xt, struct data_chunk *chunk)
1292 return dmaengine_get_icg(xt->src_inc, xt->src_sgl, chunk->icg, chunk->src_icg);