Lines Matching refs:aligned_start
804 malloc_heap_free_pages(void *aligned_start, size_t aligned_len) in malloc_heap_free_pages() argument
810 msl = rte_mem_virt2memseg_list(aligned_start); in malloc_heap_free_pages()
816 seg_idx = RTE_PTR_DIFF(aligned_start, msl->base_va) / page_sz; in malloc_heap_free_pages()
832 void *start, *aligned_start, *end, *aligned_end; in malloc_heap_free() local
878 aligned_start = RTE_PTR_ALIGN_CEIL(start, page_sz); in malloc_heap_free()
882 aligned_len = RTE_PTR_DIFF(aligned_end, aligned_start); in malloc_heap_free()
894 rte_mem_virt2memseg(aligned_start, msl); in malloc_heap_free()
898 aligned_start = RTE_PTR_ADD(tmp->addr, tmp->len); in malloc_heap_free()
903 aligned_len = RTE_PTR_DIFF(aligned_end, aligned_start); in malloc_heap_free()
915 before_space = RTE_PTR_DIFF(aligned_start, elem); in malloc_heap_free()
926 aligned_start = RTE_PTR_ADD(aligned_start, page_sz); in malloc_heap_free()
959 malloc_elem_hide_region(elem, (void *) aligned_start, aligned_len); in malloc_heap_free()
966 aligned_start, aligned_len); in malloc_heap_free()
969 malloc_heap_free_pages(aligned_start, aligned_len); in malloc_heap_free()
978 req.free_req.addr = aligned_start; in malloc_heap_free()