Home
last modified time | relevance | path

Searched refs:heap_array (Results 1 – 6 of 6) sorted by relevance

/Linux-v5.4/tools/perf/util/
Dauxtrace.c423 static void auxtrace_heapify(struct auxtrace_heap_item *heap_array, in auxtrace_heapify() argument
431 if (heap_array[parent].ordinal <= ordinal) in auxtrace_heapify()
433 heap_array[pos] = heap_array[parent]; in auxtrace_heapify()
436 heap_array[pos].queue_nr = queue_nr; in auxtrace_heapify()
437 heap_array[pos].ordinal = ordinal; in auxtrace_heapify()
443 struct auxtrace_heap_item *heap_array; in auxtrace_heap__add() local
450 heap_array = realloc(heap->heap_array, in auxtrace_heap__add()
452 if (!heap_array) in auxtrace_heap__add()
454 heap->heap_array = heap_array; in auxtrace_heap__add()
458 auxtrace_heapify(heap->heap_array, heap->heap_cnt++, queue_nr, ordinal); in auxtrace_heap__add()
[all …]
Ds390-cpumsf.c855 if (sf->heap.heap_array[0].ordinal >= timestamp) in s390_cpumsf_process_queues()
858 queue_nr = sf->heap.heap_array[0].queue_nr; in s390_cpumsf_process_queues()
864 ts = sf->heap.heap_array[0].ordinal + 1; in s390_cpumsf_process_queues()
Dintel-bts.c564 if (bts->heap.heap_array[0].ordinal > timestamp) in intel_bts_process_queues()
567 queue_nr = bts->heap.heap_array[0].queue_nr; in intel_bts_process_queues()
Dauxtrace.h254 struct auxtrace_heap_item *heap_array; member
Dintel-pt.c2261 if (pt->heap.heap_array[0].ordinal >= timestamp) in intel_pt_process_queues()
2264 queue_nr = pt->heap.heap_array[0].queue_nr; in intel_pt_process_queues()
2269 queue_nr, pt->heap.heap_array[0].ordinal, in intel_pt_process_queues()
2275 ts = pt->heap.heap_array[0].ordinal + 1; in intel_pt_process_queues()
Dcs-etm.c2105 cs_queue_nr = etm->heap.heap_array[0].queue_nr; in cs_etm__process_queues()