hist.c (98a3b32c99ada4bca8aaf4f91efd96fc906dd5c4) hist.c (028f12ee6beff0961781c5ed3f740e5f3b56f781)
1#include "annotate.h"
2#include "util.h"
3#include "build-id.h"
4#include "hist.h"
5#include "session.h"
6#include "sort.h"
7#include "evsel.h"
8#include <math.h>

--- 506 unchanged lines hidden (view full) ---

515 }
516
517 return cmp;
518}
519
520void hist_entry__free(struct hist_entry *he)
521{
522 free(he->branch_info);
1#include "annotate.h"
2#include "util.h"
3#include "build-id.h"
4#include "hist.h"
5#include "session.h"
6#include "sort.h"
7#include "evsel.h"
8#include <math.h>

--- 506 unchanged lines hidden (view full) ---

515 }
516
517 return cmp;
518}
519
520void hist_entry__free(struct hist_entry *he)
521{
522 free(he->branch_info);
523 free(he->mem_info);
523 free(he);
524}
525
526/*
527 * collapse the histogram
528 */
529
530static bool hists__collapse_insert_entry(struct hists *hists __maybe_unused,

--- 477 unchanged lines hidden ---
524 free(he);
525}
526
527/*
528 * collapse the histogram
529 */
530
531static bool hists__collapse_insert_entry(struct hists *hists __maybe_unused,

--- 477 unchanged lines hidden ---