Lines Matching refs:bytes
172 unsigned bytes; in descriptor_list_create() local
193 bytes = min(sg_dma_len(scatter_list) - offset, in descriptor_list_create()
203 d->bytes = (bytes / 2) & ~3; in descriptor_list_create()
205 size -= d->bytes; in descriptor_list_create()
206 copied += d->bytes; in descriptor_list_create()
207 offset += d->bytes; in descriptor_list_create()
208 addr += d->bytes; in descriptor_list_create()
213 bytes -= d->bytes; in descriptor_list_create()
228 d->bytes = bytes; in descriptor_list_create()
230 size -= bytes; in descriptor_list_create()
231 copied += bytes; in descriptor_list_create()
232 offset += bytes; in descriptor_list_create()
236 bytes = min(sg_dma_len(scatter_list) - offset, in descriptor_list_create()
238 copied += bytes; in descriptor_list_create()
239 offset += bytes; in descriptor_list_create()
240 size -= bytes; in descriptor_list_create()
286 void *descriptor_list_allocate(struct sg_dma_desc_info *desc, size_t bytes) in descriptor_list_allocate() argument
288 desc->size = bytes; in descriptor_list_allocate()
289 desc->virt = dma_alloc_coherent(desc->dev, bytes, in descriptor_list_allocate()