Home
last modified time | relevance | path

Searched full:note (Results 1 – 25 of 7843) sorted by relevance

12345678910>>...314

/openbmc/qemu/target/s390x/
H A Darch_dump.c87 } QEMU_PACKED Note; typedef
91 static void s390x_write_elf64_prstatus(Note *note, S390CPU *cpu, int id) in s390x_write_elf64_prstatus() argument
96 note->hdr.n_type = cpu_to_be32(NT_PRSTATUS); in s390x_write_elf64_prstatus()
98 regs = &(note->contents.prstatus.regs); in s390x_write_elf64_prstatus()
105 note->contents.prstatus.pid = cpu_to_be32(id); in s390x_write_elf64_prstatus()
108 static void s390x_write_elf64_fpregset(Note *note, S390CPU *cpu, int id) in s390x_write_elf64_fpregset() argument
113 note->hdr.n_type = cpu_to_be32(NT_FPREGSET); in s390x_write_elf64_fpregset()
114 note->contents.fpregset.fpc = cpu_to_be32(cpu->env.fpc); in s390x_write_elf64_fpregset()
116 note->contents.fpregset.fprs[i] = cpu_to_be64(*get_freg(cs, i)); in s390x_write_elf64_fpregset()
120 static void s390x_write_elf64_vregslo(Note *note, S390CPU *cpu, int id) in s390x_write_elf64_vregslo() argument
[all …]
/openbmc/qemu/target/arm/
H A Darch_dump.c94 static void aarch64_note_init(struct aarch64_note *note, DumpState *s, in aarch64_note_init() argument
98 memset(note, 0, sizeof(*note)); in aarch64_note_init()
100 note->hdr.n_namesz = cpu_to_dump32(s, namesz); in aarch64_note_init()
101 note->hdr.n_descsz = cpu_to_dump32(s, descsz); in aarch64_note_init()
102 note->hdr.n_type = cpu_to_dump32(s, type); in aarch64_note_init()
104 memcpy(note->name, name, namesz); in aarch64_note_init()
111 struct aarch64_note note; in aarch64_write_elf64_prfpreg() local
114 aarch64_note_init(&note, s, "CORE", 5, NT_PRFPREG, sizeof(note.vfp)); in aarch64_write_elf64_prfpreg()
118 note.vfp.vregs[2 * i + 0] = cpu_to_dump64(s, q[0]); in aarch64_write_elf64_prfpreg()
119 note.vfp.vregs[2 * i + 1] = cpu_to_dump64(s, q[1]); in aarch64_write_elf64_prfpreg()
[all …]
/openbmc/qemu/target/ppc/
H A Darch_dump.c97 } QEMU_PACKED Note; typedef
100 Note note; member
110 Note *note = &arg->note; in ppc_write_elf_prstatus() local
113 note->hdr.n_type = cpu_to_dump32(s, NT_PRSTATUS); in ppc_write_elf_prstatus()
115 prstatus = &note->contents.prstatus; in ppc_write_elf_prstatus()
140 Note *note = &arg->note; in ppc_write_elf_fpregset() local
143 note->hdr.n_type = cpu_to_dump32(s, NT_PRFPREG); in ppc_write_elf_fpregset()
145 fpregset = &note->contents.fpregset; in ppc_write_elf_fpregset()
159 Note *note = &arg->note; in ppc_write_elf_vmxregset() local
162 note->hdr.n_type = cpu_to_dump32(s, NT_PPC_VMX); in ppc_write_elf_vmxregset()
[all …]
/openbmc/qemu/target/riscv/
H A Darch_dump.c54 static void riscv64_note_init(struct riscv64_note *note, DumpState *s, in riscv64_note_init() argument
58 memset(note, 0, sizeof(*note)); in riscv64_note_init()
60 note->hdr.n_namesz = cpu_to_dump32(s, namesz); in riscv64_note_init()
61 note->hdr.n_descsz = cpu_to_dump32(s, descsz); in riscv64_note_init()
62 note->hdr.n_type = cpu_to_dump32(s, type); in riscv64_note_init()
64 memcpy(note->name, name, namesz); in riscv64_note_init()
70 struct riscv64_note note; in riscv_cpu_write_elf64_note() local
76 riscv64_note_init(&note, s, name, sizeof(name), in riscv_cpu_write_elf64_note()
77 NT_PRSTATUS, sizeof(note.prstatus)); in riscv_cpu_write_elf64_note()
79 note.prstatus.pr_pid = cpu_to_dump32(s, cpuid); in riscv_cpu_write_elf64_note()
[all …]
/openbmc/linux/sound/core/seq/oss/
H A Dseq_oss_event.c28 static int note_on_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct snd…
29 static int note_off_event(struct seq_oss_devinfo *dp, int dev, int ch, int note, int vel, struct sn…
30 static int set_note_event(struct seq_oss_devinfo *dp, int dev, int type, int ch, int note, int vel,…
99 return note_off_event(dp, 0, q->n.chn, q->n.note, q->n.vel, ev); in old_event()
102 return note_on_event(dp, 0, q->n.chn, q->n.note, q->n.vel, ev); in old_event()
110 q->n.chn, 0, q->n.note, ev); in old_event()
181 return note_on_event(dp, q->v.dev, q->v.chn, q->v.note, q->v.parm, ev); in chn_voice_event()
184 return note_off_event(dp, q->v.dev, q->v.chn, q->v.note, q->v.parm, ev); in chn_voice_event()
188 q->v.chn, q->v.note, q->v.parm, ev); in chn_voice_event()
264 * process note-on event for OSS synth
[all …]
/openbmc/qemu/target/loongarch/
H A Darch_dump.c78 static void loongarch_note_init(struct loongarch_note *note, DumpState *s, in loongarch_note_init() argument
82 memset(note, 0, sizeof(*note)); in loongarch_note_init()
84 note->hdr.n_namesz = cpu_to_dump32(s, namesz); in loongarch_note_init()
85 note->hdr.n_descsz = cpu_to_dump32(s, descsz); in loongarch_note_init()
86 note->hdr.n_type = cpu_to_dump32(s, type); in loongarch_note_init()
88 memcpy(note->name, name, namesz); in loongarch_note_init()
95 struct loongarch_note note; in loongarch_write_elf64_fprpreg() local
98 loongarch_note_init(&note, s, "CORE", 5, NT_PRFPREG, sizeof(note.fpu)); in loongarch_write_elf64_fprpreg()
99 note.fpu.fcsr = cpu_to_dump64(s, env->fcsr0); in loongarch_write_elf64_fprpreg()
100 note.fpu.fcc = cpu_to_dump64(s, read_fcc(env)); in loongarch_write_elf64_fprpreg()
[all …]
/openbmc/linux/sound/core/seq/
H A Dseq_midi_emul.c35 int note, int vel);
88 dest_channel = ev->data.note.channel; in snd_midi_process_event()
103 /* Make sure that we don't have a note on that should really be in snd_midi_process_event()
104 * a note off */ in snd_midi_process_event()
105 if (ev->type == SNDRV_SEQ_EVENT_NOTEON && ev->data.note.velocity == 0) in snd_midi_process_event()
108 /* Make sure the note is within array range */ in snd_midi_process_event()
112 if (ev->data.note.note >= 128) in snd_midi_process_event()
118 if (chan->note[ev->data.note.note] & SNDRV_MIDI_NOTE_ON) { in snd_midi_process_event()
120 ops->note_off(drv, ev->data.note.note, 0, chan); in snd_midi_process_event()
122 chan->note[ev->data.note.note] = SNDRV_MIDI_NOTE_ON; in snd_midi_process_event()
[all …]
H A Dseq_ump_convert.c81 /* encode note event */
85 ev->data.note.channel = val->note.channel; in ump_midi1_to_note_ev()
86 ev->data.note.note = val->note.note; in ump_midi1_to_note_ev()
87 ev->data.note.velocity = val->note.velocity; in ump_midi1_to_note_ev()
136 unsigned char status = val->note.status; in cvt_ump_midi1_to_event()
202 /* encode note event */
206 ev->data.note.channel = val->note.channel; in ump_midi2_to_note_ev()
207 ev->data.note.note = val->note.note; in ump_midi2_to_note_ev()
208 ev->data.note.velocity = downscale_16_to_7bit(val->note.velocity); in ump_midi2_to_note_ev()
209 /* correct note-on velocity 0 to 1; in ump_midi2_to_note_ev()
[all …]
/openbmc/qemu/target/i386/
H A Darch_dump.c48 Elf64_Nhdr *note; in x86_64_write_elf64_note() local
85 note = g_malloc0(note_size); in x86_64_write_elf64_note()
86 note->n_namesz = cpu_to_le32(name_size); in x86_64_write_elf64_note()
87 note->n_descsz = cpu_to_le32(descsz); in x86_64_write_elf64_note()
88 note->n_type = cpu_to_le32(NT_PRSTATUS); in x86_64_write_elf64_note()
89 buf = (char *)note; in x86_64_write_elf64_note()
97 ret = f(note, note_size, s); in x86_64_write_elf64_note()
98 g_free(note); in x86_64_write_elf64_note()
154 Elf64_Nhdr *note; in x86_write_elf64_note() local
163 note = g_malloc0(note_size); in x86_write_elf64_note()
[all …]
/openbmc/linux/Documentation/sound/cards/
H A Dhdspm.rst31 .. note::
32 (Note: Choosing the 56channel mode for transmission or as
39 .. note::
40 Note: Choosing the 56-channel mode for
48 .. note::
114 .. note::
115 Note: Within the windows-driver the latency is accessible of a
129 .. note::
167 .. note::
168 Note: Since MADI has a much higher bit-rate than word-clock, the
[all …]
/openbmc/linux/Documentation/gpu/rfc/
H A Di915_small_bar.h5 * Note this is using both struct drm_i915_query_item and struct drm_i915_query.
19 * Note that it should not be possible to ever encounter a zero value
20 * here, also note that no current region type will ever return -1 here.
31 * always equal the @probed_size. Note this is only currently tracked
53 * Note this is only tracked for
57 * Note that if the value returned here is zero, then
73 * Note this is only tracked for
80 * equal the @probed_cpu_visible_size. Note this is only
97 * Note that new buffer flags should be added here, at least for the stuff that
109 * Note that for some devices we have might have further minimum
[all …]
/openbmc/linux/Documentation/RCU/
H A DRTFP.txt317 ,note="Available:
327 Note that it does not make sense to just wait a fixed amount of
419 ,note="private communication"
437 ,note="Available:
580 ,note="Available:
598 ,note="Available:
613 ,note="Available:
643 ,note="Available:
658 ,note="Available:
671 ,note="Available:
[all …]
/openbmc/linux/sound/drivers/opl3/
H A Dopl3_midi.c14 static void snd_opl3_note_off_unsafe(void *p, int note, int vel,
70 * Converts the note frequency to block and fnum values for the FM chip
80 int note, struct snd_midi_channel *chan) in snd_opl3_calc_pitch() argument
82 int block = ((note / 12) & 0x07) - 1; in snd_opl3_calc_pitch()
83 int idx = (note % 12) + 2; in snd_opl3_calc_pitch()
122 * Get a FM voice (channel) to play a note on.
235 snd_opl3_note_off_unsafe(opl3, vp->note, 0, in snd_opl3_timer_func()
273 * Start a note.
275 void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan) in snd_opl3_note_on() argument
295 int key = note; in snd_opl3_note_on()
[all …]
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-kernel-vmcoreinfo8 Shows physical address and size of vmcoreinfo ELF note.
9 First value contains physical address of note in hex and
10 second value contains the size of note in hex. This ELF
11 note info is parsed by second kernel and exported to user
12 space as part of ELF note in /proc/vmcore file. This note
/openbmc/qemu/scripts/
H A Ddump-guest-memory.py122 """Adds a note to the ELF."""
124 note = get_arch_note(self.endianness, len(n_name), len(n_desc))
125 note.n_namesz = len(n_name) + 1
126 note.n_descsz = len(n_desc)
127 note.n_name = n_name.encode()
128 note.n_type = n_type
134 ctypes.memmove(note.n_desc, n_desc.encode(), len(n_desc))
136 self.notes.append(note)
137 self.segments[0].p_filesz += ctypes.sizeof(note)
138 self.segments[0].p_memsz += ctypes.sizeof(note)
[all …]
/openbmc/openbmc/poky/documentation/dev-manual/
H A Dupgrading-recipes.rst37 .. note::
122 .. note::
230 .. note::
251 NOTE: Starting bitbake server...
265 NOTE: Starting bitbake server...
266 NOTE: Creating workspace layer in /home/scottrif/poky/build/workspace
269 NOTE: Extracting current version source...
270 NOTE: Resolving any missing task queue dependencies
274 NOTE: Executing SetScene Tasks
275 NOTE: Executing RunQueue Tasks
[all …]
/openbmc/qemu/docs/system/arm/
H A Dmps2.rst19 Cortex-M3 as documented in Arm Application Note AN385
21 Cortex-M4 as documented in Arm Application Note AN386
23 Cortex-M7 as documented in Arm Application Note AN500
25 Cortex-M33 as documented in Arm Application Note AN505
27 Cortex-M3 'DesignStart' as documented in Arm Application Note AN511
29 Dual Cortex-M33 as documented in Arm Application Note AN521
31 Dual Cortex-M33 on an MPS3, as documented in Arm Application Note AN524
33 Cortex-M55 on an MPS3, as documented in Arm Application Note AN547
38 Dual Cortex-R52 on an MPS3, as documented in Arm Application Note AN536
70 Note that for the AN536 the first UART is accessible only by
/openbmc/linux/arch/s390/kernel/
H A Dcrash_dump.c249 * Initialize ELF note
254 Elf64_Nhdr *note; in nt_init_name() local
257 note = (Elf64_Nhdr *)buf; in nt_init_name()
258 note->n_namesz = strlen(name) + 1; in nt_init_name()
259 note->n_descsz = d_len; in nt_init_name()
260 note->n_type = type; in nt_init_name()
263 memcpy(buf + len, name, note->n_namesz); in nt_init_name()
264 len = roundup(len + note->n_namesz, 4); in nt_init_name()
266 memcpy(buf + len, desc, note->n_descsz); in nt_init_name()
267 len = roundup(len + note->n_descsz, 4); in nt_init_name()
[all …]
/openbmc/linux/arch/arm64/kernel/vdso/
H A Dvdso.lds.S36 * Discard .note.gnu.property sections which are unused and have
37 * different alignment requirement from vDSO note sections.
40 *(.note.GNU-stack .note.gnu.property)
42 .note : { *(.note.*) } :text :note
91 note PT_NOTE FLAGS(4); /* PF_R */
/openbmc/linux/include/sound/
H A Dump_msg.h128 /* MIDI 1.0 Note Off / Note On (32bit) */
135 u32 note:8; member
139 u32 note:8;
154 u32 note:8; member
158 u32 note:8;
261 struct snd_ump_midi1_msg_note note; member
271 /* MIDI 2.0 Note Off / Note On (64bit) */
279 u32 note:8; member
287 u32 note:8;
306 u32 note:8; member
[all …]
/openbmc/linux/LICENSES/exceptions/
H A DLinux-syscall-note1 SPDX-Exception-Identifier: Linux-syscall-note
2 SPDX-URL: https://spdx.org/licenses/Linux-syscall-note.html
10 SPDX-License-Identifier: <SPDX-License> WITH Linux-syscall-note
13 NOTE! This copyright does *not* cover user programs that use kernel
16 Also note that the GPL below is copyrighted by the Free Software
20 Also note that the only valid version of the GPL as far as the kernel
/openbmc/qemu/linux-headers/LICENSES/exceptions/
H A DLinux-syscall-note1 SPDX-Exception-Identifier: Linux-syscall-note
2 SPDX-URL: https://spdx.org/licenses/Linux-syscall-note.html
10 SPDX-License-Identifier: <SPDX-License> WITH Linux-syscall-note
13 NOTE! This copyright does *not* cover user programs that use kernel
16 Also note that the GPL below is copyrighted by the Free Software
20 Also note that the only valid version of the GPL as far as the kernel
/openbmc/linux/Documentation/networking/
H A Dmac80211-auth-assoc-deauth.txt20 note over mac80211,driver
23 end note
50 note over mac80211,driver: cleanup like for authenticate
61 note over mac80211: init rate control
73 note left of userspace: associated now
76 note over userspace
79 end note
/openbmc/openpower-hw-diags/util/
H A Dbin_stream.hpp14 * @note IMPORTANT: Assumes file data is in big-endian format.
50 * @note This function simply copies a block of data without checking its
52 * @note After calling, check good() to determine if the operation was
64 * @note The default template is intentionally not defined so that only
67 * @note This is written as a template so that users can define their own
111 * @note IMPORTANT: Assumes file data is in big-endian format.
147 * @note This function simply copies a block of data without checking its
149 * @note After calling, check good() to determine if the operation was
161 * @note The default template is intentionally not defined so that only
164 * @note This is written as a template so that users can define their own
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/php/php/
H A Dphp-fpm.conf23 ; Note: the default prefix is /var
30 ; Note: the default prefix is /var
75 ; Note: A value of 0 indicates no limit
81 ; Note: - It will only work if the FPM master process is launched as root
133 ; Note: This directive can also be relative to the global prefix.
138 ; Note: The user is mandatory. If the group is not set, the default user's group
150 ; Note: This value is mandatory.
176 ; Note: - It will only work if the FPM master process is launched as root
205 ; Note: This value is mandatory.
215 ; Note: Used when pm is set to 'static', 'dynamic' or 'ondemand'
[all …]

12345678910>>...314