Symbol: zalloc
arch/xtensa/boot/lib/zmem.c
63
s.workspace = zalloc(zlib_inflate_workspacesize());
tools/bpf/resolve_btfids/main.c
250
id = zalloc(sizeof(*id));
tools/include/linux/zalloc.h
7
void *zalloc(size_t size);
tools/lib/perf/evlist.c
196
struct perf_evlist *evlist = zalloc(sizeof(*evlist));
tools/lib/perf/evlist.c
469
map = zalloc(evlist->nr_mmaps * sizeof(struct perf_mmap));
tools/lib/perf/evsel.c
35
struct perf_evsel *evsel = zalloc(sizeof(*evsel));
tools/lib/perf/evsel.c
537
evsel->id = zalloc(ncpus * nthreads * sizeof(u64));
tools/lib/perf/evsel.c
588
res = zalloc(sizeof(struct perf_sample_id_period));
tools/lib/perf/xyarray.c
10
struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size);
tools/perf/arch/arm/util/cs-etm.c
893
ptr = zalloc(sizeof(struct cs_etm_recording));
tools/perf/arch/arm64/util/arm-spe.c
668
sper = zalloc(sizeof(struct arm_spe_recording));
tools/perf/arch/arm64/util/hisi-ptt.c
171
pttr = zalloc(sizeof(*pttr));
tools/perf/arch/powerpc/util/auxtrace.c
97
aux = zalloc(sizeof(*aux));
tools/perf/arch/s390/util/auxtrace.c
111
aux = zalloc(sizeof(*aux));
tools/perf/arch/x86/util/event.c
78
.event = zalloc(sizeof(args.event->mmap) + machine->id_hdr_size),
tools/perf/arch/x86/util/intel-bts.c
434
btsr = zalloc(sizeof(struct intel_bts_recording));
tools/perf/arch/x86/util/intel-pt.c
1208
ptr = zalloc(sizeof(struct intel_pt_recording));
tools/perf/arch/x86/util/intel-pt.c
973
ref_buf = zalloc(ref_buf_size);
tools/perf/builtin-bench.c
222
name = zalloc(size);
tools/perf/builtin-c2c.c
150
c2c_he = zalloc(size + sizeof(*c2c_he));
tools/perf/builtin-c2c.c
2007
c2c_fmt = zalloc(sizeof(*c2c_fmt));
tools/perf/builtin-c2c.c
223
hists = c2c_he->hists = zalloc(sizeof(*hists));
tools/perf/builtin-c2c.c
2702
browser = zalloc(sizeof(*browser));
tools/perf/builtin-c2c.c
2862
buf = zalloc(len + 1);
tools/perf/builtin-daemon.c
118
struct daemon_session *session = zalloc(sizeof(*session));
tools/perf/builtin-diff.c
1830
fmt = zalloc(sizeof(*fmt));
tools/perf/builtin-diff.c
369
bh = zalloc(size + sizeof(*bh));
tools/perf/builtin-ftrace.c
1239
prof = zalloc(sizeof(*prof));
tools/perf/builtin-help.c
197
*p = zalloc(sizeof(**p) + len + 1);
tools/perf/builtin-help.c
212
struct man_viewer_info_list *new = zalloc(sizeof(*new) + len + 1);
tools/perf/builtin-inject.c
1284
struct guest_tid *guest_tid = zalloc(sizeof(*guest_tid));
tools/perf/builtin-inject.c
1360
struct guest_id *guest_id = zalloc(sizeof(*guest_id));
tools/perf/builtin-kmem.c
487
data = zalloc(sizeof(*data));
tools/perf/builtin-kmem.c
542
data = zalloc(sizeof(*data));
tools/perf/builtin-kmem.c
597
data = zalloc(sizeof(*data));
tools/perf/builtin-kvm.c
397
kvm_fmt = zalloc(sizeof(*kvm_fmt));
tools/perf/builtin-kvm.c
700
kvm_ev = zalloc(size + sizeof(*kvm_ev));
tools/perf/builtin-kvm.c
928
vcpu_record = zalloc(sizeof(*vcpu_record));
tools/perf/builtin-kwork.c
260
page = zalloc(sizeof(*page));
tools/perf/builtin-kwork.c
363
struct kwork_work *work = zalloc(sizeof(*work));
tools/perf/builtin-lock.c
121
st = zalloc(sizeof(struct thread_stat));
tools/perf/builtin-lock.c
143
st = zalloc(sizeof(struct thread_stat));
tools/perf/builtin-lock.c
505
seq = zalloc(sizeof(struct lock_seq_stat));
tools/perf/builtin-probe.c
152
buf = zalloc(len + 1);
tools/perf/builtin-sched.c
1083
struct work_atoms *atoms = zalloc(sizeof(*atoms));
tools/perf/builtin-sched.c
1100
struct work_atom *atom = zalloc(sizeof(*atom));
tools/perf/builtin-sched.c
2062
r = zalloc(sizeof(struct evsel_runtime));
tools/perf/builtin-sched.c
2459
itr = zalloc(sizeof(*itr));
tools/perf/builtin-sched.c
366
struct sched_atom *event = zalloc(sizeof(*event));
tools/perf/builtin-sched.c
4285
summary_head = zalloc(sizeof(*summary_head));
tools/perf/builtin-sched.c
4293
summary_head->cpu_data = zalloc(sizeof(*summary_head->cpu_data));
tools/perf/builtin-sched.c
4301
tdptr = zalloc(sizeof(*tdptr));
tools/perf/builtin-sched.c
4308
tdptr->domain_data = zalloc(sizeof(*tdptr->domain_data));
tools/perf/builtin-sched.c
448
wakee_event->wait_sem = zalloc(sizeof(*wakee_event->wait_sem));
tools/perf/builtin-sched.c
4598
struct schedstat_cpu *temp = zalloc(sizeof(*temp));
tools/perf/builtin-sched.c
4603
temp->cpu_data = zalloc(sizeof(*temp->cpu_data));
tools/perf/builtin-sched.c
4633
struct schedstat_domain *temp = zalloc(sizeof(*temp));
tools/perf/builtin-sched.c
4638
temp->domain_data = zalloc(sizeof(*temp->domain_data));
tools/perf/builtin-sched.c
506
task = zalloc(sizeof(*task));
tools/perf/builtin-sched.c
985
r = zalloc(sizeof(struct thread_runtime));
tools/perf/builtin-script.c
351
struct evsel_script *es = zalloc(sizeof(*es));
tools/perf/builtin-script.c
3558
struct script_desc *s = zalloc(sizeof(*s));
tools/perf/builtin-timechart.c
211
cursor = zalloc(sizeof(*cursor));
tools/perf/builtin-timechart.c
223
c = zalloc(sizeof(*c));
tools/perf/builtin-timechart.c
295
sample = zalloc(sizeof(*sample));
tools/perf/builtin-timechart.c
365
struct power_event *pwr = zalloc(sizeof(*pwr));
tools/perf/builtin-timechart.c
383
struct power_event *pwr = zalloc(sizeof(*pwr));
tools/perf/builtin-timechart.c
429
struct wake_event *we = zalloc(sizeof(*we));
tools/perf/builtin-timechart.c
749
pwr = zalloc(sizeof(*pwr));
tools/perf/builtin-timechart.c
800
sample = zalloc(sizeof(*sample));
tools/perf/builtin-trace.c
1578
struct thread_trace *ttrace = zalloc(sizeof(struct thread_trace));
tools/perf/builtin-trace.c
2524
struct syscall *sc = zalloc(sizeof(*sc));
tools/perf/builtin-trace.c
2668
stats = zalloc(sizeof(*stats));
tools/perf/builtin-trace.c
361
return zalloc(sizeof(struct evsel_trace));
tools/perf/tests/builtin-test.c
1181
*child = zalloc(sizeof(**child));
tools/perf/tests/code-reading.c
78
data = zalloc(sizeof(*data));
tools/perf/tests/pmu-events.c
513
pmu = zalloc(sizeof(*pmu));
tools/perf/tests/pmu-events.c
565
pmu = zalloc(sizeof(*pmu));
tools/perf/tests/tests-scripts.c
214
test_suite = zalloc(sizeof(*test_suite));
tools/perf/ui/browsers/annotate-data.c
123
bracket = zalloc(sizeof(*bracket));
tools/perf/ui/browsers/annotate-data.c
86
entry = zalloc(sizeof(*entry));
tools/perf/ui/browsers/hists.c
2284
struct hist_browser *browser = zalloc(sizeof(*browser));
tools/perf/util/addr2line.c
63
struct child_process *a2l = zalloc(sizeof(*a2l));
tools/perf/util/annotate-arch/annotate-arc.c
9
struct arch *arch = zalloc(sizeof(*arch));
tools/perf/util/annotate-arch/annotate-arm.c
37
struct arch_arm *arm = zalloc(sizeof(*arm));
tools/perf/util/annotate-arch/annotate-arm64.c
95
struct arch_arm64 *arm = zalloc(sizeof(*arm));
tools/perf/util/annotate-arch/annotate-csky.c
46
struct arch *arch = zalloc(sizeof(*arch));
tools/perf/util/annotate-arch/annotate-loongarch.c
147
struct arch *arch = zalloc(sizeof(*arch));
tools/perf/util/annotate-arch/annotate-mips.c
43
struct arch *arch = zalloc(sizeof(*arch));
tools/perf/util/annotate-arch/annotate-powerpc.c
396
struct arch *arch = zalloc(sizeof(*arch));
tools/perf/util/annotate-arch/annotate-riscv64.c
31
struct arch *arch = zalloc(sizeof(*arch));
tools/perf/util/annotate-arch/annotate-s390.c
174
struct arch *arch = zalloc(sizeof(*arch));
tools/perf/util/annotate-arch/annotate-sparc.c
167
struct arch *arch = zalloc(sizeof(*arch));
tools/perf/util/annotate-arch/annotate-x86.c
814
struct arch *arch = zalloc(sizeof(*arch));
tools/perf/util/annotate-data.c
1770
adt->histograms[i] = zalloc(sz);
tools/perf/util/annotate-data.c
238
member = zalloc(sizeof(*member));
tools/perf/util/annotate-data.c
393
result = zalloc(sizeof(*result));
tools/perf/util/annotate.c
105
struct annotated_source *src = zalloc(sizeof(*src));
tools/perf/util/annotate.c
246
entry = zalloc(sizeof(*entry));
tools/perf/util/annotate.c
2662
istat = zalloc(sizeof(*istat));
tools/perf/util/annotate.c
272
notes->branch = zalloc(sizeof(*notes->branch));
tools/perf/util/annotate.c
3041
bb = zalloc(sizeof(*bb));
tools/perf/util/annotate.c
536
al->cycles = zalloc(sizeof(*al->cycles));
tools/perf/util/arm-spe-decoder/arm-spe-decoder.c
89
decoder = zalloc(sizeof(struct arm_spe_decoder));
tools/perf/util/arm-spe.c
1568
metadata = zalloc(per_cpu_size);
tools/perf/util/arm-spe.c
1967
spe = zalloc(sizeof(struct arm_spe));
tools/perf/util/arm-spe.c
237
speq = zalloc(sizeof(*speq));
tools/perf/util/arm-spe.c
261
speq->last_branch = zalloc(sz);
tools/perf/util/aslr.c
1286
struct aslr_tool *aslr = zalloc(sizeof(*aslr));
tools/perf/util/aslr.c
1349
struct aslr_evsel_priv *priv = zalloc(sizeof(*priv));
tools/perf/util/aslr.c
210
mpriv = zalloc(sizeof(*mpriv));
tools/perf/util/auxtrace.c
1343
ev = zalloc(sizeof(struct perf_record_auxtrace_info) + priv_size);
tools/perf/util/auxtrace.c
2097
c = zalloc(sizeof(struct auxtrace_cache));
tools/perf/util/auxtrace.c
2231
struct addr_filter *filt = zalloc(sizeof(*filt));
tools/perf/util/block-info.c
52
struct block_info *bi = zalloc(sizeof(struct block_info));
tools/perf/util/bpf-event.c
245
rodata = zalloc(map_info.value_size);
tools/perf/util/bpf-event.c
356
metadata = zalloc(sizeof(struct bpf_metadata));
tools/perf/util/bpf-event.c
366
metadata->prog_names[prog_index] = zalloc(BPF_PROG_NAME_LEN);
tools/perf/util/bpf-event.c
385
metadata->event = zalloc(event_size);
tools/perf/util/bpf-event.c
443
event = zalloc(event_size + machine->id_hdr_size);
tools/perf/util/bpf-filter.c
377
pfi = zalloc(sizeof(*pfi));
tools/perf/util/bpf-trace-summary.c
179
data = zalloc(sizeof(*data));
tools/perf/util/bpf-trace-summary.c
243
data = zalloc(sizeof(*data));
tools/perf/util/bpf-trace-summary.c
247
data->nodes = zalloc(sizeof(*data->nodes));
tools/perf/util/bpf-trace-summary.c
315
data = zalloc(sizeof(*data));
tools/perf/util/bpf_counter.c
100
counter = zalloc(sizeof(*counter));
tools/perf/util/bpf_lock_contention.c
683
stack_trace = zalloc(stack_size);
tools/perf/util/bpf_lock_contention.c
694
st = zalloc(sizeof(struct lock_stat));
tools/perf/util/bpf_lock_contention.c
743
stack_trace = zalloc(stack_size);
tools/perf/util/build-id.c
641
char *filename = NULL, *dir_name = NULL, *linkname = zalloc(size), *tmp;
tools/perf/util/build-id.c
811
char *filename = zalloc(size),
tools/perf/util/build-id.c
812
*linkname = zalloc(size), *tmp;
tools/perf/util/call-path.c
30
cpr = zalloc(sizeof(struct call_path_root));
tools/perf/util/call-path.c
62
cpb = zalloc(sizeof(struct call_path_block));
tools/perf/util/callchain.c
1694
cursor = zalloc(sizeof(*cursor));
tools/perf/util/callchain.c
595
new = zalloc(sizeof(*new));
tools/perf/util/callchain.c
644
call = zalloc(sizeof(*call));
tools/perf/util/callchain.c
662
call->brtype_stat = zalloc(sizeof(*call->brtype_stat));
tools/perf/util/callchain.c
831
cnode->brtype_stat = zalloc(sizeof(*cnode->brtype_stat));
tools/perf/util/cgroup.c
120
struct cgroup *cgroup = zalloc(sizeof(*cgroup));
tools/perf/util/comm.c
194
struct comm *comm = zalloc(sizeof(*comm));
tools/perf/util/config.c
659
struct perf_config_section *section = zalloc(sizeof(*section));
tools/perf/util/config.c
679
struct perf_config_item *item = zalloc(sizeof(*item));
tools/perf/util/config.c
796
struct perf_config_set *set = zalloc(sizeof(*set));
tools/perf/util/config.c
808
struct perf_config_set *set = zalloc(sizeof(*set));
tools/perf/util/counts.c
12
struct perf_counts *counts = zalloc(sizeof(*counts));
tools/perf/util/cpumap.c
746
bitmap = zalloc(last_cpu.cpu / 8 + 1);
tools/perf/util/cputopo.c
406
tp = zalloc(sizeof(*tp) + sizeof(tp->nodes[0])*nr);
tools/perf/util/cputopo.c
480
tp = zalloc(sizeof(*tp) + sizeof(tp->nodes[0]) * nr);
tools/perf/util/cs-etm-decoder/cs-etm-decoder.c
702
decoder = zalloc(sizeof(*decoder));
tools/perf/util/cs-etm.c
1199
struct cs_etm_queue *etmq = zalloc(sizeof(*etmq));
tools/perf/util/cs-etm.c
3035
metadata = zalloc(sizeof(*metadata) * out_blk_size);
tools/perf/util/cs-etm.c
3373
t_params = zalloc(sizeof(*t_params) * decoders);
tools/perf/util/cs-etm.c
3467
metadata = zalloc(sizeof(*metadata) * num_cpu);
tools/perf/util/cs-etm.c
3528
etm = zalloc(sizeof(*etm));
tools/perf/util/cs-etm.c
649
tidq->packet = zalloc(sizeof(struct cs_etm_packet));
tools/perf/util/cs-etm.c
653
tidq->prev_packet = zalloc(sizeof(struct cs_etm_packet));
tools/perf/util/cs-etm.c
662
tidq->last_branch = zalloc(sz);
tools/perf/util/cs-etm.c
665
tidq->last_branch_rb = zalloc(sz);
tools/perf/util/data-convert-bt.c
279
buffer = zalloc(i + (len - i) * 4 + 2);
tools/perf/util/data-convert-bt.c
705
cs = zalloc(sizeof(*cs));
tools/perf/util/debuginfo.c
83
struct debuginfo *dbg = zalloc(sizeof(*dbg));
tools/perf/util/disasm.c
505
ops->locked.ops = zalloc(sizeof(*ops->locked.ops));
tools/perf/util/disasm.c
949
dl = zalloc(disasm_line_size(nr));
tools/perf/util/drm_pmu.c
115
drm = zalloc(sizeof(*drm));
tools/perf/util/dso.c
1045
cache = zalloc(sizeof(*cache) + DSO__DATA_CACHE_SIZE);
tools/perf/util/dso.c
1652
RC_STRUCT(dso) *dso = zalloc(sizeof(*dso) + strlen(name) + 1);
tools/perf/util/env.c
992
cap_eq = zalloc(cap_size + 2);
tools/perf/util/evlist.c
2404
eet = zalloc(sizeof(*eet));
tools/perf/util/evlist.c
94
struct evlist *evlist = zalloc(sizeof(*evlist));
tools/perf/util/evsel.c
2219
data = zalloc(size);
tools/perf/util/evsel.c
473
struct evsel *evsel = zalloc(perf_evsel__object.size);
tools/perf/util/evsel.c
644
struct evsel *evsel = zalloc(perf_evsel__object.size);
tools/perf/util/expr.c
197
data_ptr = zalloc(sizeof(*data_ptr));
tools/perf/util/header.c
1757
cd_map = zalloc(sizeof(*cd_map) * nr);
tools/perf/util/header.c
1772
cd_map[cpu] = zalloc(sizeof(*cd_map[cpu]));
tools/perf/util/header.c
1790
domain_info = zalloc(sizeof(*domain_info));
tools/perf/util/header.c
3027
cmdline = zalloc(ff->size + nr + 1);
tools/perf/util/header.c
4134
cd_map[cpu] = zalloc(sizeof(*cd_map[cpu]));
tools/perf/util/header.c
4165
d_info = zalloc(sizeof(*d_info));
tools/perf/util/hisi-ptt.c
170
ptt = zalloc(sizeof(*ptt));
tools/perf/util/hist.c
624
return zalloc(size + sizeof(struct hist_entry));
tools/perf/util/hwmon_pmu.c
272
value = zalloc(sizeof(*value));
tools/perf/util/hwmon_pmu.c
364
hwm = zalloc(sizeof(*hwm));
tools/perf/util/intel-bts.c
153
btsq = zalloc(sizeof(struct intel_bts_queue));
tools/perf/util/intel-bts.c
841
bts = zalloc(sizeof(struct intel_bts));
tools/perf/util/intel-pt-decoder/intel-pt-decoder.c
313
decoder = zalloc(sizeof(struct intel_pt_decoder));
tools/perf/util/intel-pt.c
1218
return zalloc(sz);
tools/perf/util/intel-pt.c
1256
return zalloc(sz);
tools/perf/util/intel-pt.c
1300
ptq = zalloc(sizeof(struct intel_pt_queue));
tools/perf/util/intel-pt.c
339
v = zalloc(sizeof(*v));
tools/perf/util/intel-pt.c
4443
pt = zalloc(sizeof(struct intel_pt));
tools/perf/util/intel-tpebs.c
409
struct tpebs_retire_lat *result = zalloc(sizeof(*result));
tools/perf/util/kvm-stat.h
217
ki = zalloc(sizeof(*ki));
tools/perf/util/libbfd.c
176
a2l = zalloc(sizeof(*a2l));
tools/perf/util/libunwind-arch/libunwind-arm.c
231
ui = zalloc(sizeof(*ui) + sizeof(ui->_ips[0]) * max_stack);
tools/perf/util/libunwind-arch/libunwind-arm64.c
230
ui = zalloc(sizeof(*ui) + sizeof(ui->_ips[0]) * max_stack);
tools/perf/util/libunwind-arch/libunwind-i386.c
253
ui = zalloc(sizeof(*ui) + sizeof(ui->_ips[0]) * max_stack);
tools/perf/util/libunwind-arch/libunwind-loongarch.c
238
ui = zalloc(sizeof(*ui) + sizeof(ui->_ips[0]) * max_stack);
tools/perf/util/libunwind-arch/libunwind-mips.c
240
ui = zalloc(sizeof(*ui) + sizeof(ui->_ips[0]) * max_stack);
tools/perf/util/libunwind-arch/libunwind-ppc32.c
244
ui = zalloc(sizeof(*ui) + sizeof(ui->_ips[0]) * max_stack);
tools/perf/util/libunwind-arch/libunwind-ppc64.c
244
ui = zalloc(sizeof(*ui) + sizeof(ui->_ips[0]) * max_stack);
tools/perf/util/libunwind-arch/libunwind-riscv.c
238
ui = zalloc(sizeof(*ui) + sizeof(ui->_ips[0]) * max_stack);
tools/perf/util/libunwind-arch/libunwind-s390.c
240
ui = zalloc(sizeof(*ui) + sizeof(ui->_ips[0]) * max_stack);
tools/perf/util/libunwind-arch/libunwind-x86_64.c
262
ui = zalloc(sizeof(*ui) + sizeof(ui->_ips[0]) * max_stack);
tools/perf/util/lock-contention.c
80
new = zalloc(sizeof(struct lock_stat));
tools/perf/util/machine.c
2672
thread__set_lbr_stitch(thread, zalloc(sizeof(struct lbr_stitch)));
tools/perf/util/map.c
132
map = zalloc(sizeof(*map));
tools/perf/util/maps.c
270
RC_STRUCT(maps) *maps = zalloc(sizeof(*maps));
tools/perf/util/mem-info.c
29
RC_STRUCT(mem_info) *mi = zalloc(sizeof(*mi));
tools/perf/util/metricgroup.c
231
m = zalloc(sizeof(*m));
tools/perf/util/namespaces.c
45
namespaces = zalloc(sizeof(struct namespaces) + link_info_size);
tools/perf/util/parse-events.c
1124
t = zalloc(sizeof(*t));
tools/perf/util/parse-events.c
2401
entry = zalloc(sizeof(*entry));
tools/perf/util/perf-regs-arch/perf_regs_aarch64.c
73
*new_op = zalloc(new_len);
tools/perf/util/perf-regs-arch/perf_regs_aarch64.c
89
*new_op = zalloc(new_len);
tools/perf/util/perf-regs-arch/perf_regs_powerpc.c
113
*new_op = zalloc(new_len);
tools/perf/util/perf-regs-arch/perf_regs_powerpc.c
96
*new_op = zalloc(new_len);
tools/perf/util/perf-regs-arch/perf_regs_riscv.c
100
*new_op = zalloc(new_len);
tools/perf/util/perf-regs-arch/perf_regs_riscv.c
119
*new_op = zalloc(new_len);
tools/perf/util/perf-regs-arch/perf_regs_s390.c
163
*new_op = zalloc(new_len);
tools/perf/util/perf-regs-arch/perf_regs_x86.c
224
*new_op = zalloc(new_len);
tools/perf/util/pmu.c
1236
pmu = zalloc(sizeof(*pmu));
tools/perf/util/pmu.c
127
format = zalloc(sizeof(*format));
tools/perf/util/pmu.c
1297
struct perf_pmu *pmu = zalloc(sizeof(*pmu));
tools/perf/util/pmu.c
2501
struct perf_pmu_caps *caps = zalloc(sizeof(*caps));
tools/perf/util/pmu.c
582
alias = zalloc(sizeof(*alias));
tools/perf/util/powerpc-vpadtl.c
425
vpaq = zalloc(sizeof(*vpaq));
tools/perf/util/powerpc-vpadtl.c
694
vpa = zalloc(sizeof(struct powerpc_vpadtl));
tools/perf/util/probe-event.c
1764
*fieldp = zalloc(sizeof(struct perf_probe_arg_field));
tools/perf/util/probe-event.c
2455
*ppfield = zalloc(sizeof(*field));
tools/perf/util/probe-event.c
2563
node = zalloc(sizeof(*node));
tools/perf/util/probe-event.c
3309
*tevs = zalloc(sizeof(*tev));
tools/perf/util/probe-file.c
386
struct probe_cache_entry *entry = zalloc(sizeof(*entry));
tools/perf/util/probe-file.c
553
struct probe_cache *pcache = zalloc(sizeof(*pcache));
tools/perf/util/probe-finder.c
146
tvar->value = zalloc(ret + 2);
tools/perf/util/probe-finder.c
268
*ref_ptr = zalloc(sizeof(struct probe_trace_arg_ref));
tools/perf/util/probe-finder.c
358
ref = zalloc(sizeof(struct probe_trace_arg_ref));
tools/perf/util/probe-finder.c
397
ref = zalloc(sizeof(struct probe_trace_arg_ref));
tools/perf/util/probe-finder.c
58
ref = zalloc(sizeof(struct probe_trace_arg_ref));
tools/perf/util/pstack.c
23
struct pstack *pstack = zalloc((sizeof(*pstack) +
tools/perf/util/s390-cpumsf.c
1125
sf = zalloc(sizeof(struct s390_cpumsf));
tools/perf/util/s390-cpumsf.c
774
sfq = zalloc(sizeof(struct s390_cpumsf_queue));
tools/perf/util/sample.c
43
sample->user_regs = zalloc(sizeof(*sample->user_regs));
tools/perf/util/sample.c
54
sample->intr_regs = zalloc(sizeof(*sample->intr_regs));
tools/perf/util/session.c
153
struct perf_session *session = zalloc(sizeof(*session));
tools/perf/util/session.c
3780
ref = zalloc(sizeof(struct ref_reloc_sym));
tools/perf/util/srcline.c
233
node = zalloc(sizeof(*node));
tools/perf/util/srcline.c
364
node = zalloc(sizeof(struct srcline_node));
tools/perf/util/srcline.c
44
ilist = zalloc(sizeof(*ilist));
tools/perf/util/srcline.c
63
ilist = zalloc(sizeof(*ilist));
tools/perf/util/stat.c
127
ps = zalloc(sizeof(*ps));
tools/perf/util/stream.c
37
els = zalloc(sizeof(*els));
tools/perf/util/strfilter.c
162
struct strfilter *filter = zalloc(sizeof(*filter));
tools/perf/util/strfilter.c
70
struct strfilter_node *node = zalloc(sizeof(*node));
tools/perf/util/symbol-elf.c
2155
struct phdr_data *p = zalloc(sizeof(*p));
tools/perf/util/symbol-elf.c
2191
struct sym_data *s = zalloc(sizeof(*s));
tools/perf/util/symbol.c
1226
mi = zalloc(sizeof(struct module_info));
tools/perf/util/synthetic-events.c
1150
event = zalloc(size + machine->id_hdr_size);
tools/perf/util/synthetic-events.c
1223
event = zalloc(size);
tools/perf/util/synthetic-events.c
1308
return zalloc(syn_data->size);
tools/perf/util/synthetic-events.c
1319
return zalloc(syn_data->size);
tools/perf/util/synthetic-events.c
1324
return zalloc(syn_data->size);
tools/perf/util/synthetic-events.c
1391
event = zalloc(size);
tools/perf/util/synthetic-events.c
1891
ev = zalloc(sz);
tools/perf/util/synthetic-events.c
2012
ev = zalloc(size);
tools/perf/util/synthetic-events.c
2202
ev = zalloc(size);
tools/perf/util/synthetic-events.c
2585
event = zalloc(size);
tools/perf/util/synthetic-events.c
2654
event = zalloc(size);
tools/perf/util/synthetic-events.c
746
args.event = zalloc(size + machine->id_hdr_size);
tools/perf/util/thread-stack.c
152
ts->br_stack_rb = zalloc(sz);
tools/perf/util/thread-stack.c
759
crp = zalloc(sizeof(struct call_return_processor));
tools/perf/util/thread.c
46
RC_STRUCT(thread) *_thread = zalloc(sizeof(*_thread));
tools/perf/util/tool_pmu.c
712
struct perf_pmu *tool = zalloc(sizeof(struct perf_pmu));
tools/perf/util/trace-event-info.c
444
path = zalloc(sizeof(*path));
tools/perf/util/trace-event-info.c
484
struct tracepoint_path *path = zalloc(sizeof(*path));
tools/perf/util/unwind-libdw.c
361
ui = zalloc(sizeof(*ui) + sizeof(ui->entries[0]) * max_stack);
tools/perf/util/unwind-libdw.c
381
dwfl_ui_ti = zalloc(sizeof(*dwfl_ui_ti));
tools/perf/util/zlib.c
25
.zalloc = Z_NULL,
tools/virtio/virtio-trace/trace-agent-rw.c
24
rw_ti = zalloc(sizeof(struct rw_thread_info));
tools/virtio/virtio-trace/trace-agent.c
115
buf = zalloc(PATH_MAX);
tools/virtio/virtio-trace/trace-agent.c
53
s = zalloc(sizeof(struct agent_info));