| /OK3568_Linux_fs/kernel/tools/perf/ui/browsers/ |
| H A D | annotate.c | 48 struct annotation *notes = browser__annotation(browser); in disasm_line__filter() local 50 return annotation_line__filter(al, notes); in disasm_line__filter() 55 struct annotation *notes = browser__annotation(browser); in ui_browser__jumps_percent_color() local 59 if (nr == notes->max_jump_sources) in ui_browser__jumps_percent_color() 99 struct annotation *notes = browser__annotation(browser); in annotate_browser__write() local 105 .change_color = (!notes->options->hide_src_code && in annotate_browser__write() 122 annotation_line__write(al, notes, &ops, ab->opts); in annotate_browser__write() 155 struct annotation *notes = symbol__annotation(sym); in annotate_browser__draw_current_jump() local 156 u8 pcnt_width = annotation__pcnt_width(notes); in annotate_browser__draw_current_jump() 186 target = notes->offsets[cursor->ops.target.offset]; in annotate_browser__draw_current_jump() [all …]
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | annotate.c | 801 struct annotation *notes = symbol__annotation(sym); in symbol__alloc_hist_cycles() local 804 notes->src->cycles_hist = calloc(size, sizeof(struct cyc_hist)); in symbol__alloc_hist_cycles() 805 if (notes->src->cycles_hist == NULL) in symbol__alloc_hist_cycles() 812 struct annotation *notes = symbol__annotation(sym); in symbol__annotate_zero_histograms() local 814 pthread_mutex_lock(¬es->lock); in symbol__annotate_zero_histograms() 815 if (notes->src != NULL) { in symbol__annotate_zero_histograms() 816 memset(notes->src->histograms, 0, in symbol__annotate_zero_histograms() 817 notes->src->nr_histograms * notes->src->sizeof_sym_hist); in symbol__annotate_zero_histograms() 818 if (notes->src->cycles_hist) in symbol__annotate_zero_histograms() 819 memset(notes->src->cycles_hist, 0, in symbol__annotate_zero_histograms() [all …]
|
| H A D | annotate.h | 215 void annotation_line__write(struct annotation_line *al, struct annotation *notes, 219 int __annotation__scnprintf_samples_period(struct annotation *notes, 300 static inline int annotation__cycles_width(struct annotation *notes) in annotation__cycles_width() argument 302 if (notes->have_cycles && notes->options->show_minmax_cycle) in annotation__cycles_width() 305 return notes->have_cycles ? ANNOTATION__IPC_WIDTH + ANNOTATION__CYCLES_WIDTH : 0; in annotation__cycles_width() 308 static inline int annotation__pcnt_width(struct annotation *notes) in annotation__pcnt_width() argument 310 return (symbol_conf.show_total_period ? 12 : 7) * notes->nr_events; in annotation__pcnt_width() 313 static inline bool annotation_line__filter(struct annotation_line *al, struct annotation *notes) in annotation_line__filter() argument 315 return notes->options->hide_src_code && al->offset == -1; in annotation_line__filter() 318 void annotation__set_offsets(struct annotation *notes, s64 size); [all …]
|
| H A D | block-info.c | 119 struct annotation *notes; in block_info__process_sym() local 131 notes = symbol__annotation(he->ms.sym); in block_info__process_sym() 132 if (!notes || !notes->src || !notes->src->cycles_hist) in block_info__process_sym() 134 ch = notes->src->cycles_hist; in block_info__process_sym()
|
| /OK3568_Linux_fs/yocto/poky/documentation/migration-guides/ |
| H A D | release-4.0.rst | 9 release-notes-4.0 10 release-notes-4.0.1 11 release-notes-4.0.2 12 release-notes-4.0.3 13 release-notes-4.0.4 14 release-notes-4.0.5 15 release-notes-4.0.6 16 release-notes-4.0.7 17 release-notes-4.0.8
|
| H A D | release-3.4.rst | 7 release-notes-3.4 8 release-notes-3.4.1 9 release-notes-3.4.2 10 release-notes-3.4.3 11 release-notes-3.4.4
|
| H A D | release-notes-4.0.1.rst | 1 Release notes for 4.0.1 (kirkstone) 40 - docs: migration-guides: release-notes-4.0: fix risc-v typo 41 - docs: migration-guides: release-notes-4.0: replace kernel placeholder with correct recipe name 85 - migration-guides: add release notes for 4.0 87 - migration-guides: release-notes-4.0: mention LTS release 88 - migration-guides: release-notes-4.0: update 'Repositories / Downloads' section
|
| /OK3568_Linux_fs/kernel/fs/proc/ |
| H A D | kcore.c | 295 static void append_kcore_note(char *notes, size_t *i, const char *name, in append_kcore_note() argument 299 struct elf_note *note = (struct elf_note *)¬es[*i]; in append_kcore_note() 305 memcpy(¬es[*i], name, note->n_namesz); in append_kcore_note() 307 memcpy(¬es[*i], desc, descsz); in append_kcore_note() 419 char *notes; in read_kcore() local 425 notes = kzalloc(notes_len, GFP_KERNEL); in read_kcore() 426 if (!notes) { in read_kcore() 431 append_kcore_note(notes, &i, CORE_STR, NT_PRSTATUS, &prstatus, in read_kcore() 433 append_kcore_note(notes, &i, CORE_STR, NT_PRPSINFO, &prpsinfo, in read_kcore() 435 append_kcore_note(notes, &i, CORE_STR, NT_TASKSTRUCT, current, in read_kcore() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/stable/ |
| H A D | sysfs-kernel-notes | 1 What: /sys/kernel/notes 4 Description: The /sys/kernel/notes file contains the binary representation 5 of the running vmlinux's .notes section.
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | binfmt_elf.c | 1706 struct memelfnote notes[]; member 1759 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, in fill_thread_core_info() 1761 *total += notesize(&t->notes[0]); in fill_thread_core_info() 1790 fill_note(&t->notes[i], is_fpreg ? "CORE" : "LINUX", in fill_thread_core_info() 1793 *total += notesize(&t->notes[i]); in fill_thread_core_info() 1850 notes[info->thread_notes]), in fill_note_info() 1912 if (!writenote(&t->notes[0], cprm)) in write_note_info() 1926 if (t->notes[i].data && in write_note_info() 1927 !writenote(&t->notes[i], cprm)) in write_note_info() 1944 WARN_ON(t->notes[0].data && t->notes[0].data != &t->prstatus); in free_note_info() [all …]
|
| /OK3568_Linux_fs/u-boot/tools/patman/test/ |
| H A D | test01.txt | 16 Series-notes: 17 some notes 22 Commit-notes: 23 Some notes about
|
| /OK3568_Linux_fs/kernel/tools/perf/ |
| H A D | builtin-annotate.c | 87 struct annotation *notes = sym ? symbol__annotation(sym) : NULL; in process_basic_block() local 114 if (notes) in process_basic_block() 115 notes->max_coverage = max(notes->max_coverage, entry->coverage); in process_basic_block() 316 struct annotation *notes; in hists__find_annotations() local 325 notes = symbol__annotation(he->ms.sym); in hists__find_annotations() 326 if (notes->src == NULL) { in hists__find_annotations() 382 zfree(¬es->src->cycles_hist); in hists__find_annotations() 383 zfree(¬es->src); in hists__find_annotations()
|
| H A D | builtin-top.c | 114 struct annotation *notes; in perf_top__parse_source() local 137 notes = symbol__annotation(sym); in perf_top__parse_source() 138 pthread_mutex_lock(¬es->lock); in perf_top__parse_source() 141 pthread_mutex_unlock(¬es->lock); in perf_top__parse_source() 157 pthread_mutex_unlock(¬es->lock); in perf_top__parse_source() 199 struct annotation *notes; in perf_top__record_precise_ip() local 208 notes = symbol__annotation(sym); in perf_top__record_precise_ip() 210 if (pthread_mutex_trylock(¬es->lock)) in perf_top__record_precise_ip() 215 pthread_mutex_unlock(¬es->lock); in perf_top__record_precise_ip() 240 struct annotation *notes; in perf_top__show_details() local [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/ioctl/ |
| H A D | cdrom.rst | 161 notes: 192 notes: 249 notes: 276 notes: 301 notes: 328 notes: 355 notes: 433 notes: 466 notes: 484 notes: [all …]
|
| H A D | hdio.rst | 121 notes: 240 notes: 301 notes: 331 notes: 385 notes: 456 notes: 491 notes: 544 notes: 662 notes: 737 notes: [all …]
|
| /OK3568_Linux_fs/u-boot/tools/patman/ |
| H A D | patchstream.py | 69 self.notes = [] # Series notes 192 self.series.notes += self.section 195 self.commit.notes += self.section 214 self.series.notes += self.section 217 self.commit.notes += self.section 334 out += self.commit.notes 521 line += '\n'.join(series.notes) + '\n'
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/ |
| H A D | gitarchive.py | 58 def git_commit_data(repo, data_dir, branch, message, exclude, notes, log): argument 84 for ref, filename in notes: 130 …dy, branch_name, no_tag, tagname, tag_msg_subject, tag_msg_body, exclude, notes, push, keywords, l… argument 150 commit_msg, exclude, notes, log) 164 for ref, _ in notes]
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/ |
| H A D | index.rst | 13 dynamic-resolution-notes 15 overlay-notes
|
| /OK3568_Linux_fs/kernel/tools/perf/ui/gtk/ |
| H A D | annotate.c | 100 struct annotation *notes; in perf_gtk__annotate_symbol() local 108 notes = symbol__annotation(sym); in perf_gtk__annotate_symbol() 127 list_for_each_entry(pos, ¬es->src->source, al.node) { in perf_gtk__annotate_symbol() 156 list_for_each_entry_safe(pos, n, ¬es->src->source, al.node) { in perf_gtk__annotate_symbol()
|
| /OK3568_Linux_fs/kernel/arch/arm/mach-pxa/ |
| H A D | sleep.S | 65 @ Intel PXA270 Specification Update notes problems sleeping 102 @ Intel PXA255 Specification Update notes problems 158 @ Intel PXA270 Specification Update notes problems performing
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/80211/ |
| H A D | mac80211-advanced.rst | 72 Insert notes about VLAN interfaces with hw crypto here or in the hw 99 Insert notes about having multiple virtual interfaces with different MAC 101 notes about supporting hw crypto with it.
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | insn-notes.def | 21 NOTE_LINE_NUMBER field of a NOTE insn for kinds of notes that are 25 We are slowly removing the concept of insn-chain notes from the 28 mean, such as register notes or bits in the basic-block structure. */
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | insn-notes.def | 21 NOTE_LINE_NUMBER field of a NOTE insn for kinds of notes that are 25 We are slowly removing the concept of insn-chain notes from the 28 mean, such as register notes or bits in the basic-block structure. */
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | watch_queue.c | 123 page = wqueue->notes[note / WATCH_QUEUE_NOTES_PER_PAGE]; in post_one_notification() 253 if (wqueue->notes) in watch_queue_set_size() 295 wqueue->notes = pages; in watch_queue_set_size() 400 __free_page(wqueue->notes[i]); in __put_watch_queue() 401 kfree(wqueue->notes); in __put_watch_queue()
|
| /OK3568_Linux_fs/kernel/Documentation/sound/hd-audio/ |
| H A D | index.rst | 7 notes
|