Home
last modified time | relevance | path

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

/Linux-v6.6/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()
703 size = PERF_ALIGN(dso->long_name_len + 1, sizeof(u64)); in perf_event__synthesize_modules()
717 size = PERF_ALIGN(dso->long_name_len + 1, sizeof(u64)); in perf_event__synthesize_modules()
1141 size = PERF_ALIGN(size, sizeof(u64)); in __perf_event__synthesize_kernel_mmap()
1154 size = PERF_ALIGN(size, sizeof(u64)); in __perf_event__synthesize_kernel_mmap()
1289 syn_data->size = header_size + PERF_ALIGN(size_cpus, sizeof(u64)); in cpu_map_data__alloc()
1294 syn_data->size = header_size + PERF_ALIGN(size_mask, sizeof(u64)); in cpu_map_data__alloc()
1960 size = PERF_ALIGN(size, sizeof(u64)); in event_update_event__new()
2138 size = PERF_ALIGN(size, sizeof(u64)); in perf_event__synthesize_attr()
[all …]
Dbpf-event.c259 ksymbol_event->header.size += PERF_ALIGN(name_len + 1, in perf_event__synthesize_one_bpf_prog()
337 ksymbol->header.size += PERF_ALIGN(len + 1, sizeof(u64)); in process_bpf_image()
Djitdump.c466 size = PERF_ALIGN(size, sizeof(u64)); in jit_repipe_code_load()
583 size = PERF_ALIGN(size, sizeof(u64)); in jit_repipe_code_move()
Dsession.c586 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64)); in perf_event__comm_swap()
603 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64)); in perf_event__mmap_swap()
627 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64)); in perf_event__mmap2_swap()
702 data += PERF_ALIGN(len, sizeof(u64)); in perf_event__text_poke_swap()
745 data += PERF_ALIGN(strlen(data) + 1, sizeof(u64)); in perf_event__cgroup_swap()
Dbuild-id.c313 len = PERF_ALIGN(len, NAME_ALIGN); in write_buildid()
Dheader.c179 (PERF_ALIGN((strlen(str) + 1), NAME_ALIGN) + sizeof(u32))
188 len = PERF_ALIGN(olen, NAME_ALIGN); in do_write_string()
2330 u8 build_id[PERF_ALIGN(BUILD_ID_SIZE, sizeof(u64))]; in perf_header__read_build_ids_abi_quirk()
4488 padding = PERF_ALIGN(size_read, sizeof(u64)) - size_read; in perf_event__process_tracing_data()
Devlist.c921 pages = PERF_ALIGN(val, page_size) / page_size; in parse_pages_arg()
Dsymbol.c2672 symbol_conf.priv_size = PERF_ALIGN(symbol_conf.priv_size, sizeof(u64)); in symbol__init()
Dauxtrace.c1226 auxtrace_error->header.size = PERF_ALIGN(size, sizeof(u64)); in auxtrace_synth_guest_error()
/Linux-v6.6/tools/perf/arch/x86/util/
Devent.c44 PERF_ALIGN(strlen(kmap->name) + 1, sizeof(u64)) + in perf_event__synthesize_extra_kmaps()
/Linux-v6.6/tools/include/linux/
Dkernel.h20 #define PERF_ALIGN(x, a) __PERF_ALIGN_MASK(x, (typeof(x))(a)-1) macro