Home
last modified time | relevance | path

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

/openbmc/linux/tools/perf/
H A Dbuiltin-kmem.c297 u64 alloc_bytes; member
852 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
861 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
871 pstat->alloc_bytes += bytes; in evsel__process_page_alloc_event()
935 pstat->alloc_bytes -= bytes; in evsel__process_page_free_event()
1102 (unsigned long long)data->alloc_bytes / 1024, in __print_page_alloc_result()
1144 (unsigned long long)data->alloc_bytes / 1024, in __print_page_caller_result()
1594 if (l->alloc_bytes < r->alloc_bytes) in page_bytes_cmp()
1596 else if (l->alloc_bytes > r->alloc_bytes) in page_bytes_cmp()
/openbmc/linux/arch/sparc/mm/
H A Dinit_64.c1778 unsigned long alloc_bytes = 0UL; in kernel_map_range() local
1801 alloc_bytes += PAGE_SIZE; in kernel_map_range()
1813 alloc_bytes += PAGE_SIZE; in kernel_map_range()
1829 alloc_bytes += PAGE_SIZE; in kernel_map_range()
1845 alloc_bytes += PAGE_SIZE; in kernel_map_range()
1863 return alloc_bytes; in kernel_map_range()
/openbmc/linux/fs/btrfs/
H A Dbackref.c2770 size_t alloc_bytes; in init_data_container() local
2772 alloc_bytes = max_t(size_t, total_bytes, sizeof(*data)); in init_data_container()
2773 data = kvzalloc(alloc_bytes, GFP_KERNEL); in init_data_container()
/openbmc/linux/kernel/bpf/
H A Dverifier.c1561 size_t alloc_bytes; in copy_array() local
1571 alloc_bytes = max(ksize(orig), kmalloc_size_roundup(bytes)); in copy_array()
1572 dst = krealloc(orig, alloc_bytes, flags); in copy_array()