Lines Matching refs:aligned_len
831 malloc_heap_free_pages(void *aligned_start, size_t aligned_len) in malloc_heap_free_pages() argument
842 n_segs = aligned_len / page_sz; in malloc_heap_free_pages()
860 size_t len, aligned_len, page_sz; in malloc_heap_free() local
915 aligned_len = RTE_PTR_DIFF(aligned_end, aligned_start); in malloc_heap_free()
918 if (aligned_len < page_sz) in malloc_heap_free()
924 n_segs = aligned_len / page_sz; in malloc_heap_free()
936 aligned_len = RTE_PTR_DIFF(aligned_end, aligned_start); in malloc_heap_free()
937 n_segs = aligned_len / page_sz; in malloc_heap_free()
960 aligned_len -= page_sz; in malloc_heap_free()
973 aligned_len -= page_sz; in malloc_heap_free()
992 malloc_elem_hide_region(elem, (void *) aligned_start, aligned_len); in malloc_heap_free()
994 heap->total_size -= aligned_len; in malloc_heap_free()
999 aligned_start, aligned_len); in malloc_heap_free()
1002 malloc_heap_free_pages(aligned_start, aligned_len); in malloc_heap_free()
1012 req.free_req.len = aligned_len; in malloc_heap_free()
1035 msl->socket_id, aligned_len >> 20ULL); in malloc_heap_free()
1044 void *aligned_end = RTE_PTR_ADD(aligned_start, aligned_len); in malloc_heap_free()
1055 asan_set_zone(aligned_start, aligned_len, 0x00); in malloc_heap_free()