Lines Matching refs:notes

217 void annotation_line__write(struct annotation_line *al, struct annotation *notes,
221 int __annotation__scnprintf_samples_period(struct annotation *notes,
302 void annotation__init(struct annotation *notes);
303 void annotation__exit(struct annotation *notes);
305 static inline int annotation__cycles_width(struct annotation *notes) in annotation__cycles_width() argument
307 if (notes->have_cycles && notes->options->show_minmax_cycle) in annotation__cycles_width()
310 return notes->have_cycles ? ANNOTATION__IPC_WIDTH + ANNOTATION__CYCLES_WIDTH : 0; in annotation__cycles_width()
313 static inline int annotation__pcnt_width(struct annotation *notes) in annotation__pcnt_width() argument
315 return (symbol_conf.show_total_period ? 12 : 7) * notes->nr_events; in annotation__pcnt_width()
318 static inline bool annotation_line__filter(struct annotation_line *al, struct annotation *notes) in annotation_line__filter() argument
320 return notes->options->hide_src_code && al->offset == -1; in annotation_line__filter()
323 void annotation__set_offsets(struct annotation *notes, s64 size);
324 void annotation__compute_ipc(struct annotation *notes, size_t size);
325 void annotation__mark_jump_targets(struct annotation *notes, struct symbol *sym);
326 void annotation__update_column_widths(struct annotation *notes);
327 void annotation__init_column_widths(struct annotation *notes, struct symbol *sym);
334 static inline struct sym_hist *annotation__histogram(struct annotation *notes, int idx) in annotation__histogram() argument
336 return annotated_source__histogram(notes->src, idx); in annotation__histogram()