Home
last modified time | relevance | path

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

/linux/tools/perf/
H A Dbuiltin-kmem.c297 u64 alloc_bytes; member
854 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
863 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
873 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
937 pstat->alloc_bytes -= bytes; in evsel__process_page_free_event()
1095 (unsigned long long)data->alloc_bytes / 1024, in __print_page_alloc_result()
1137 (unsigned long long)data->alloc_bytes / 1024, in __print_page_caller_result()
1587 if (l->alloc_bytes < r->alloc_bytes) in page_bytes_cmp()
1589 else if (l->alloc_bytes > r->alloc_bytes) in page_bytes_cmp()
/linux/arch/sparc/mm/
H A Dinit_64.c1763 unsigned long alloc_bytes = 0UL; in kernel_map_range() local
1786 alloc_bytes += PAGE_SIZE; in kernel_map_range()
1798 alloc_bytes += PAGE_SIZE; in kernel_map_range()
1814 alloc_bytes += PAGE_SIZE; in kernel_map_range()
1830 alloc_bytes += PAGE_SIZE; in kernel_map_range()
1848 return alloc_bytes; in kernel_map_range()
/linux/fs/btrfs/
H A Dbackref.c2783 size_t alloc_bytes; in init_data_container() local
2785 alloc_bytes = max_t(size_t, total_bytes, sizeof(*data)); in init_data_container()
2786 data = kvzalloc(alloc_bytes, GFP_KERNEL); in init_data_container()
/linux/kernel/bpf/
H A Dverifier.c1396 size_t alloc_bytes; in copy_array()
1406 alloc_bytes = max(ksize(orig), kmalloc_size_roundup(bytes)); in copy_array()
1407 dst = krealloc(orig, alloc_bytes, flags); in copy_array()
1389 size_t alloc_bytes; copy_array() local