Home
last modified time | relevance | path

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

/linux-6.1.9/tools/perf/
Dbuiltin-kmem.c296 u64 alloc_bytes; member
842 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
851 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
861 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
925 pstat->alloc_bytes -= bytes; in evsel__process_page_free_event()
1092 (unsigned long long)data->alloc_bytes / 1024, in __print_page_alloc_result()
1134 (unsigned long long)data->alloc_bytes / 1024, in __print_page_caller_result()
1584 if (l->alloc_bytes < r->alloc_bytes) in page_bytes_cmp()
1586 else if (l->alloc_bytes > r->alloc_bytes) in page_bytes_cmp()
/linux-6.1.9/arch/sparc/mm/
Dinit_64.c1765 unsigned long alloc_bytes = 0UL; in kernel_map_range() local
1788 alloc_bytes += PAGE_SIZE; in kernel_map_range()
1800 alloc_bytes += PAGE_SIZE; in kernel_map_range()
1816 alloc_bytes += PAGE_SIZE; in kernel_map_range()
1832 alloc_bytes += PAGE_SIZE; in kernel_map_range()
1850 return alloc_bytes; in kernel_map_range()
/linux-6.1.9/fs/btrfs/
Dbackref.c2475 size_t alloc_bytes; in init_data_container() local
2477 alloc_bytes = max_t(size_t, total_bytes, sizeof(*data)); in init_data_container()
2478 data = kvmalloc(alloc_bytes, GFP_KERNEL); in init_data_container()
/linux-6.1.9/kernel/bpf/
Dverifier.c1003 size_t alloc_bytes; in copy_array() local
1013 alloc_bytes = max(ksize(orig), kmalloc_size_roundup(bytes)); in copy_array()
1014 dst = krealloc(orig, alloc_bytes, flags); in copy_array()