Home
last modified time | relevance | path

Searched refs:PERF_ALIGN (Results 1 – 11 of 11) sorted by relevance

/linux-6.1.9/tools/perf/util/
Dsynthetic-events.c180 size = PERF_ALIGN(size, sizeof(u64)); in perf_event__prepare_comm()
518 aligned_size = PERF_ALIGN(size, sizeof(u64)); in perf_event__synthesize_mmap_events()
699 size = PERF_ALIGN(pos->dso->long_name_len + 1, sizeof(u64)); in perf_event__synthesize_modules()
714 size = PERF_ALIGN(pos->dso->long_name_len + 1, sizeof(u64)); in perf_event__synthesize_modules()
1139 size = PERF_ALIGN(size, sizeof(u64)); in __perf_event__synthesize_kernel_mmap()
1152 size = PERF_ALIGN(size, sizeof(u64)); in __perf_event__synthesize_kernel_mmap()
1287 syn_data->size = header_size + PERF_ALIGN(size_cpus, sizeof(u64)); in cpu_map_data__alloc()
1292 syn_data->size = header_size + PERF_ALIGN(size_mask, sizeof(u64)); in cpu_map_data__alloc()
1957 size = PERF_ALIGN(size, sizeof(u64)); in event_update_event__new()
2135 size = PERF_ALIGN(size, sizeof(u64)); in perf_event__synthesize_attr()
[all …]
Dbpf-event.c323 ksymbol_event->header.size += PERF_ALIGN(name_len + 1, in perf_event__synthesize_one_bpf_prog()
401 ksymbol->header.size += PERF_ALIGN(len + 1, sizeof(u64)); in process_bpf_image()
Djitdump.c464 size = PERF_ALIGN(size, sizeof(u64)); in jit_repipe_code_load()
579 size = PERF_ALIGN(size, sizeof(u64)); in jit_repipe_code_move()
Dsession.c589 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64)); in perf_event__comm_swap()
606 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64)); in perf_event__mmap_swap()
630 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64)); in perf_event__mmap2_swap()
705 data += PERF_ALIGN(len, sizeof(u64)); in perf_event__text_poke_swap()
748 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64)); in perf_event__cgroup_swap()
Dbuild-id.c311 len = PERF_ALIGN(len, NAME_ALIGN); in write_buildid()
Dheader.c173 (PERF_ALIGN((strlen(str) + 1), NAME_ALIGN) + sizeof(u32))
182 len = PERF_ALIGN(olen, NAME_ALIGN); in do_write_string()
2292 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))]; in perf_header__read_build_ids_abi_quirk()
4439 padding = PERF_ALIGN(size_read, sizeof(u64)) - size_read; in perf_event__process_tracing_data()
Devlist.c918 pages = PERF_ALIGN(val, page_size) / page_size; in parse_pages_arg()
Dsymbol.c2537 symbol_conf.priv_size = PERF_ALIGN(symbol_conf.priv_size, sizeof(u64)); in symbol__init()
Dauxtrace.c1222 auxtrace_error->header.size = PERF_ALIGN(size, sizeof(u64)); in auxtrace_synth_guest_error()
/linux-6.1.9/tools/perf/arch/x86/util/
Devent.c41 PERF_ALIGN(strlen(kmap->name) + 1, sizeof(u64)) + in perf_event__synthesize_extra_kmaps()
/linux-6.1.9/tools/include/linux/
Dkernel.h20 #define PERF_ALIGN(x, a) __PERF_ALIGN_MASK(x, (typeof(x))(a)-1) macro