Home
last modified time | relevance | path

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

/sof-3.4.0/src/lib/
Dalloc.c245 uintptr_t blk_start = 0, aligned = 0; /* keep compiler quiet */ in alloc_cont_blocks() local
272 blk_start = map->base + current * map->block_size; in alloc_cont_blocks()
277 aligned = ALIGN_UP(blk_start, alignment); in alloc_cont_blocks()
279 if (blk_start & (alignment - 1) && in alloc_cont_blocks()
280 aligned >= blk_start + map->block_size) in alloc_cont_blocks()
293 total_bytes += aligned - blk_start; in alloc_cont_blocks()
295 aligned = blk_start; in alloc_cont_blocks()
312 unaligned_ptr = (void *)blk_start; in alloc_cont_blocks()