Home
last modified time | relevance | path

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

/dpdk/lib/eal/common/
H A Deal_common_memalloc.c71 void *end, *aligned_start, *aligned_end; in eal_memalloc_is_contig() local
92 aligned_end = RTE_PTR_ALIGN_CEIL(end, pgsz); in eal_memalloc_is_contig()
95 if (RTE_PTR_DIFF(aligned_end, aligned_start) == pgsz) in eal_memalloc_is_contig()
103 while (aligned_start < aligned_end) { in eal_memalloc_is_contig()
115 aligned_end = RTE_PTR_ALIGN_CEIL(end, pgsz); in eal_memalloc_is_contig()
119 end_seg = RTE_PTR_DIFF(aligned_end, msl->base_va) / in eal_memalloc_is_contig()
123 if (RTE_PTR_DIFF(aligned_end, aligned_start) == pgsz) in eal_memalloc_is_contig()
H A Dmalloc_heap.c859 void *start, *aligned_start, *end, *aligned_end; in malloc_heap_free() local
913 aligned_end = RTE_PTR_ALIGN_FLOOR(end, page_sz); in malloc_heap_free()
915 aligned_len = RTE_PTR_DIFF(aligned_end, aligned_start); in malloc_heap_free()
936 aligned_len = RTE_PTR_DIFF(aligned_end, aligned_start); in malloc_heap_free()
949 after_space = RTE_PTR_DIFF(end, aligned_end); in malloc_heap_free()
972 aligned_end = RTE_PTR_SUB(aligned_end, page_sz); in malloc_heap_free()
1044 void *aligned_end = RTE_PTR_ADD(aligned_start, aligned_len); in malloc_heap_free() local
1064 if (asan_end > aligned_end) in malloc_heap_free()
1065 asan_set_zone(aligned_end, MALLOC_ELEM_HEADER_LEN, 0x00); in malloc_heap_free()
H A Deal_common_memory.c165 void *map_end, *aligned_end; in eal_get_virtual_area() local
176 aligned_end = RTE_PTR_ADD(aligned_addr, *size); in eal_get_virtual_area()
184 after_len = RTE_PTR_DIFF(map_end, aligned_end); in eal_get_virtual_area()
186 eal_mem_free(aligned_end, after_len); in eal_get_virtual_area()