Home
last modified time | relevance | path

Searched full:notes (Results 1 – 25 of 1738) sorted by relevance

12345678910>>...70

/kernel/linux/linux-5.10/tools/perf/ui/browsers/
Dannotate.c48 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 …]
/kernel/linux/linux-5.10/Documentation/trace/coresight/
Dcoresight-etm4x-reference.rst24 :Notes:
41 :Notes:
51 :Notes:
64 :Notes:
76 :Notes:
89 :Notes:
112 :Notes:
125 :Notes:
137 :Notes:
149 :Notes:
[all …]
/kernel/linux/linux-6.6/Documentation/trace/coresight/
Dcoresight-etm4x-reference.rst24 :Notes:
41 :Notes:
51 :Notes:
64 :Notes:
76 :Notes:
90 :Notes:
103 :Notes:
126 :Notes:
139 :Notes:
151 :Notes:
[all …]
/kernel/linux/linux-6.6/tools/perf/util/
Dannotate.h222 void annotation_line__write(struct annotation_line *al, struct annotation *notes,
225 int __annotation__scnprintf_samples_period(struct annotation *notes,
308 static inline void annotation__init(struct annotation *notes __maybe_unused) in annotation__init()
311 void annotation__exit(struct annotation *notes);
313 void annotation__lock(struct annotation *notes) EXCLUSIVE_LOCK_FUNCTION(*notes);
314 void annotation__unlock(struct annotation *notes) UNLOCK_FUNCTION(*notes);
315 bool annotation__trylock(struct annotation *notes) EXCLUSIVE_TRYLOCK_FUNCTION(true, *notes);
317 static inline int annotation__cycles_width(struct annotation *notes) in annotation__cycles_width() argument
319 if (notes->branch && notes->options->show_minmax_cycle) in annotation__cycles_width()
322 return notes->branch ? ANNOTATION__IPC_WIDTH + ANNOTATION__CYCLES_WIDTH : 0; in annotation__cycles_width()
[all …]
Dannotate.c6 * copyright notes.
852 struct annotation *notes = symbol__annotation(sym); in symbol__annotate_zero_histograms() local
854 annotation__lock(notes); in symbol__annotate_zero_histograms()
855 if (notes->src != NULL) { in symbol__annotate_zero_histograms()
856 memset(notes->src->histograms, 0, in symbol__annotate_zero_histograms()
857 notes->src->nr_histograms * notes->src->sizeof_sym_hist); in symbol__annotate_zero_histograms()
859 if (notes->branch && notes->branch->cycles_hist) { in symbol__annotate_zero_histograms()
860 memset(notes->branch->cycles_hist, 0, in symbol__annotate_zero_histograms()
863 annotation__unlock(notes); in symbol__annotate_zero_histograms()
952 static struct annotated_branch *annotation__get_branch(struct annotation *notes) in annotation__get_branch() argument
[all …]
/kernel/linux/linux-6.6/tools/perf/ui/browsers/
Dannotate.c42 struct annotation *notes = browser__annotation(browser); in disasm_line__filter() local
44 return annotation_line__filter(al, notes); in disasm_line__filter()
49 struct annotation *notes = browser__annotation(browser); in ui_browser__jumps_percent_color() local
53 if (nr == notes->max_jump_sources) in ui_browser__jumps_percent_color()
93 struct annotation *notes = browser__annotation(browser); in annotate_browser__write() local
116 annotation_line__write(al, notes, &ops); in annotate_browser__write()
158 struct annotation *notes = symbol__annotation(sym); in annotate_browser__draw_current_jump() local
159 u8 pcnt_width = annotation__pcnt_width(notes); in annotate_browser__draw_current_jump()
190 target = notes->offsets[cursor->ops.target.offset]; in annotate_browser__draw_current_jump()
192 ui_helpline__printf("WARN: jump target inconsistency, press 'o', notes->offsets[%#x] = NULL\n", in annotate_browser__draw_current_jump()
[all …]
/kernel/linux/linux-5.10/tools/perf/util/
Dannotate.c6 * copyright notes.
809 struct annotation *notes = symbol__annotation(sym); in symbol__alloc_hist_cycles() local
812 notes->src->cycles_hist = calloc(size, sizeof(struct cyc_hist)); in symbol__alloc_hist_cycles()
813 if (notes->src->cycles_hist == NULL) in symbol__alloc_hist_cycles()
820 struct annotation *notes = symbol__annotation(sym); in symbol__annotate_zero_histograms() local
822 pthread_mutex_lock(&notes->lock); in symbol__annotate_zero_histograms()
823 if (notes->src != NULL) { in symbol__annotate_zero_histograms()
824 memset(notes->src->histograms, 0, in symbol__annotate_zero_histograms()
825 notes->src->nr_histograms * notes->src->sizeof_sym_hist); in symbol__annotate_zero_histograms()
826 if (notes->src->cycles_hist) in symbol__annotate_zero_histograms()
[all …]
Dannotate.h215 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 …]
/kernel/linux/linux-6.6/kernel/module/
Dsysfs.c140 * /sys/module/foo/notes/.section.name gives contents of SHT_NOTE sections.
145 unsigned int notes; member
174 unsigned int notes, loaded, i; in add_notes_attrs() local
178 /* failed to create section attributes, so can't create notes */ in add_notes_attrs()
182 /* Count notes sections and allocate structures. */ in add_notes_attrs()
183 notes = 0; in add_notes_attrs()
187 ++notes; in add_notes_attrs()
189 if (notes == 0) in add_notes_attrs()
192 notes_attrs = kzalloc(struct_size(notes_attrs, attrs, notes), in add_notes_attrs()
197 notes_attrs->notes = notes; in add_notes_attrs()
[all …]
/kernel/linux/linux-6.6/Documentation/userspace-api/ioctl/
Dcdrom.rst164 notes:
195 notes:
252 notes:
279 notes:
304 notes:
331 notes:
358 notes:
436 notes:
469 notes:
487 notes:
[all …]
/kernel/linux/linux-5.10/Documentation/userspace-api/ioctl/
Dcdrom.rst161 notes:
192 notes:
249 notes:
276 notes:
301 notes:
328 notes:
355 notes:
433 notes:
466 notes:
484 notes:
[all …]
/kernel/linux/linux-6.6/drivers/staging/rtl8723bs/include/
Drtw_cmd.h165 Notes: To join a known BSS.
174 Notes: To join the specified bss
186 Notes: To disconnect the current associated BSS
198 Notes: To create a BSS
209 Notes: To set the NIC mode of RTL8711
232 Notes: To ask RTL8711 performing site-survey
251 Notes: To set the auth type of RTL8711. open/shared/802.1x
340 Notes: To notify fw that given staid has changed its power state
354 Notes: To setup the basic rate of RTL8711
366 Notes: To read the current basic rate
[all …]
/kernel/linux/linux-6.6/include/xen/interface/
Devent_channel.h22 * NOTES:
40 * NOTES:
55 * NOTES:
71 * NOTES:
87 * NOTES:
122 * NOTES:
157 * NOTES:
183 * NOTES:
/kernel/linux/linux-5.10/include/xen/interface/
Devent_channel.h22 * NOTES:
40 * NOTES:
55 * NOTES:
71 * NOTES:
87 * NOTES:
122 * NOTES:
157 * NOTES:
183 * NOTES:
/kernel/linux/linux-5.10/drivers/staging/rtl8723bs/include/
Drtw_cmd.h180 Notes: To enter USB suspend mode
192 Notes: To join a known BSS.
201 Notes: To join the specified bss
213 Notes: To disconnect the current associated BSS
225 Notes: To create a BSS
236 Notes: To set the NIC mode of RTL8711
259 Notes: To ask RTL8711 performing site-survey
278 Notes: To set the auth type of RTL8711. open/shared/802.1x
367 Notes: To notify fw that given staid has changed its power state
381 Notes: To setup the basic rate of RTL8711
[all …]
/kernel/linux/linux-5.10/Documentation/ABI/stable/
Dsysfs-kernel-notes1 What: /sys/kernel/notes
4 Description: The /sys/kernel/notes file contains the binary representation
5 of the running vmlinux's .notes section.
/kernel/linux/linux-6.6/Documentation/ABI/stable/
Dsysfs-kernel-notes1 What: /sys/kernel/notes
4 Description: The /sys/kernel/notes file contains the binary representation
5 of the running vmlinux's .notes section.
/kernel/linux/linux-5.10/arch/m68k/fpsp040/
Dslog2.S28 | ALGORITHM and IMPLEMENTATION NOTES:
34 | Notes: Default means round-to-nearest mode, no floating-point
38 | Notes: Even if X is denormalized, log(X) is always normalized.
49 | Notes: Default means round-to-nearest mode, no floating-point
63 | Notes: Default means round-to-nearest mode, no floating-point
67 | Notes: Even if X is denormalized, log(X) is always normalized.
78 | Notes: Default means round-to-nearest mode, no floating-point
/kernel/linux/linux-6.6/arch/m68k/fpsp040/
Dslog2.S28 | ALGORITHM and IMPLEMENTATION NOTES:
34 | Notes: Default means round-to-nearest mode, no floating-point
38 | Notes: Even if X is denormalized, log(X) is always normalized.
49 | Notes: Default means round-to-nearest mode, no floating-point
63 | Notes: Default means round-to-nearest mode, no floating-point
67 | Notes: Even if X is denormalized, log(X) is always normalized.
78 | Notes: Default means round-to-nearest mode, no floating-point
/kernel/linux/linux-6.6/drivers/staging/rtl8712/
Drtl871x_cmd.h105 * Notes: To enter USB suspend mode
114 * Notes: To disconnect the current associated BSS
123 * Notes: To set the NIC mode of RTL8711
142 * Notes: To ask RTL8711 performing site-survey
154 * Notes: To set the auth type of RTL8711. open/shared/802.1x
242 * Notes: To notify fw that given staid has changed its power state
256 * Notes: To setup the basic rate of RTL8711
268 * Notes: To read the current basic rate
284 * Notes: To setup the data rate of RTL8711
325 * Notes: To read the current data rate
[all …]
/kernel/linux/linux-5.10/drivers/staging/rtl8712/
Drtl871x_cmd.h106 * Notes: To enter USB suspend mode
115 * Notes: To disconnect the current associated BSS
124 * Notes: To set the NIC mode of RTL8711
143 * Notes: To ask RTL8711 performing site-survey
155 * Notes: To set the auth type of RTL8711. open/shared/802.1x
243 * Notes: To notify fw that given staid has changed its power state
257 * Notes: To setup the basic rate of RTL8711
269 * Notes: To read the current basic rate
285 * Notes: To setup the data rate of RTL8711
327 * Notes: To read the current data rate
[all …]
/kernel/linux/linux-5.10/fs/proc/
Dkcore.c295 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 *)&notes[*i]; in append_kcore_note()
305 memcpy(&notes[*i], name, note->n_namesz); in append_kcore_note()
307 memcpy(&notes[*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 …]
/kernel/linux/linux-6.6/include/linux/
Delfnote.h19 * All notes from a given NAME are put into a section named
20 * .note.NAME. When the kernel image is finally linked, all the notes
21 * are packed into a single .notes section, which is mapped into the
22 * PT_NOTE segment. Because notes for a given name are grouped into
28 * See the ELF specification for more detail about ELF notes.
/kernel/linux/linux-5.10/include/linux/
Delfnote.h19 * All notes from a given NAME are put into a section named
20 * .note.NAME. When the kernel image is finally linked, all the notes
21 * are packed into a single .notes section, which is mapped into the
22 * PT_NOTE segment. Because notes for a given name are grouped into
28 * See the ELF specification for more detail about ELF notes.
/kernel/linux/linux-5.10/fs/
Dbinfmt_elf.c1731 struct memelfnote notes[]; member
1784 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, in fill_thread_core_info()
1786 *total += notesize(&t->notes[0]); in fill_thread_core_info()
1792 * that has no core_note_type or is inactive, we leave t->notes[i] in fill_thread_core_info()
1815 fill_note(&t->notes[i], is_fpreg ? "CORE" : "LINUX", in fill_thread_core_info()
1818 *total += notesize(&t->notes[i]); in fill_thread_core_info()
1847 * Figure out how many notes we're going to need for each thread. in fill_note_info()
1875 notes[info->thread_notes]), in fill_note_info()
1902 * Fill in the two process-wide notes. in fill_note_info()
1925 * Write all the notes for each thread. When writing the first thread, the
[all …]

12345678910>>...70