| /linux/sound/core/seq/ |
| H A D | seq_midi_emul.c | 35 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 D | seq_ump_convert.c | 81 /* 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 …]
|
| /linux/Documentation/sound/cards/ |
| H A D | hdspm.rst | 31 .. 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 …]
|
| /linux/include/xen/interface/ |
| H A D | elfnote.h | 23 * this a note type replaces. 161 * large pages, despite such otherwise not being available to guests. Note 179 * Other than XEN_ELFNOTE_FEATURES on pre-4.2 Xen, this note allows a 183 * specified through this and the string note. 202 * The presence of this note indicates the kernel supports relocating itself. 204 * The note may include up to three 32bit values to place constraints on the 211 * When this note specifies an alignment value, it is used. Otherwise the 226 * note in case of a system crash. This note will contain various 235 * note per cpu in case of a system crash. This note is architecture 236 * specific and will contain registers not saved in the "CORE" note. [all …]
|
| /linux/Documentation/gpu/rfc/ |
| H A D | i915_small_bar.h | 5 * 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 …]
|
| /linux/arch/s390/kernel/ |
| H A D | crash_dump.c | 241 * Note that /proc/vmcore might also be available in "standard zfcp/nvme dump" 251 * Initialize ELF note 256 Elf64_Nhdr *note; in nt_init_name() local 259 note = (Elf64_Nhdr *)buf; in nt_init_name() 260 note->n_namesz = strlen(name) + 1; in nt_init_name() 261 note->n_descsz = d_len; in nt_init_name() 262 note->n_type = type; in nt_init_name() 265 memcpy(buf + len, name, note->n_namesz); in nt_init_name() 266 len = roundup(len + note->n_namesz, 4); in nt_init_name() 268 memcpy(buf + len, desc, note->n_descsz); in nt_init_name() [all …]
|
| /linux/include/sound/ |
| H A D | ump_msg.h | 128 /* 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 …]
|
| H A D | emux_synth.h | 108 struct timer_list tlist; /* for pending note-offs */ 156 #define SNDRV_EMUX_ST_ON 0x01 /* Note on */ 157 #define SNDRV_EMUX_ST_RELEASED (0x02|SNDRV_EMUX_ST_ON) /* Note released */ 158 #define SNDRV_EMUX_ST_SUSTAINED (0x04|SNDRV_EMUX_ST_ON) /* Note sustained */ 160 #define SNDRV_EMUX_ST_PENDING (0x10|SNDRV_EMUX_ST_ON) /* Note will be released */ 164 unsigned char note; /* Note currently assigned to this voice */ member 166 unsigned char velocity; /* Velocity of current note */ 168 struct snd_sf_zone *zone; /* Zone assigned to this note */ 170 struct snd_midi_channel *chan; /* Midi channel for this note */ 174 unsigned long ontime; /* jiffies at note triggered */
|
| H A D | seq_midi_emul.h | 36 unsigned char note[128]; /* Current status for all notes */ member 69 void (*note_on)(void *private_data, int note, int vel, struct snd_midi_channel *chan); 70 …void (*note_off)(void *private_data,int note, int vel, struct snd_midi_channel *chan); /* release … 71 void (*key_press)(void *private_data, int note, int vel, struct snd_midi_channel *chan); 72 …void (*note_terminate)(void *private_data, int note, struct snd_midi_channel *chan); /* terminate … 153 /* MIDI note state */
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-kernel-vmcoreinfo | 8 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
|
| H A D | sysfs-driver-toshiba_acpi | 13 Note that from kernel 3.16 onwards this file accepts all listed 16 Also note that toggling this value on type 1 devices, requires 27 Note that the kernel 3.15 only had support for the first 64 Note that not all keyboard types support the listed modes. 91 Note that from kernel 4.1 onwards this file accepts all listed 93 Note that this feature only works when connected to power, if 112 Note that when the value is set to disabled, the sleep function 125 Note that toggling this value requires a reboot for changes to 138 Note that this feature only works when connected to power, if 174 Note that toggling this value requires a reboot for changes to [all …]
|
| /linux/arch/arm64/kernel/vdso/ |
| H A D | vdso.lds.S | 36 * 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) 43 .note : { *(.note.*) } :text :note 92 note PT_NOTE FLAGS(4); /* PF_R */
|
| /linux/include/linux/ |
| H A D | zstd_lib.h | 135 * NOTE: Providing `dstCapacity >= ZSTD_compressBound(srcSize)` guarantees that zstd will have 165 * note 1 : a 0 return value means the frame is valid but "empty". 167 …* note 2 : decompressed size is an optional field, it may not be present (typically in streaming … 173 …* note 3 : decompressed size is always present when compression is completed using single-pass fu… 175 * note 4 : decompressed size can be very large (64-bits value), 178 * note 5 : If source is untrusted, decompressed size could be wrong or intentionally modified. 181 * note 6 : This function replaces ZSTD_getDecompressedSize() */ 201 * Note 1: this method is called _find*() because it's not enough to read the header, 203 * Note 2: this method also works with Skippable Frames. In which case, 217 * Note : ZSTD_compressBound() itself can fail, if @srcSize >= ZSTD_MAX_INPUT_SIZE . [all …]
|
| /linux/LICENSES/exceptions/ |
| H A D | Linux-syscall-note | 1 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
|
| /linux/Documentation/networking/ |
| H A D | mac80211-auth-assoc-deauth.txt | 20 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
|
| /linux/tools/testing/selftests/bpf/ |
| H A D | uprobe_multi.ld | 4 .note.gnu.build-id : { *(.note.gnu.build-id) } 9 build_id_start = ADDR(.note.gnu.build-id); 10 build_id_end = ADDR(.note.gnu.build-id) + SIZEOF(.note.gnu.build-id);
|
| /linux/drivers/usb/host/ |
| H A D | ehci-fsl.h | 31 #define FSL_SOC_USB_SNOOP1 0x400 /* NOTE: big-endian */ 32 #define FSL_SOC_USB_SNOOP2 0x404 /* NOTE: big-endian */ 33 #define FSL_SOC_USB_AGECNTTHRSH 0x408 /* NOTE: big-endian */ 34 #define FSL_SOC_USB_PRICTRL 0x40c /* NOTE: big-endian */ 35 #define FSL_SOC_USB_SICTRL 0x410 /* NOTE: big-endian */ 36 #define FSL_SOC_USB_CTRL 0x500 /* NOTE: big-endian */
|
| /linux/kernel/ |
| H A D | vmcore_info.c | 37 struct elf_note *note = (struct elf_note *)buf; in append_elf_note() local 39 note->n_namesz = strlen(name) + 1; in append_elf_note() 40 note->n_descsz = data_len; in append_elf_note() 41 note->n_type = type; in append_elf_note() 42 buf += DIV_ROUND_UP(sizeof(*note), sizeof(Elf_Word)); in append_elf_note() 43 memcpy(buf, name, note->n_namesz); in append_elf_note() 44 buf += DIV_ROUND_UP(note->n_namesz, sizeof(Elf_Word)); in append_elf_note() 80 /* Use the safe copy to generate vmcoreinfo note if have */ in crash_save_vmcoreinfo()
|
| /linux/arch/powerpc/boot/ |
| H A D | addnote.c | 5 * Note that OF needs a program header entry for the note, not an 20 /* CHRP note section */ 33 /* RPA note section */ 37 * Note: setting ignore_my_client_config *should* mean that OF ignores 110 #define PT_NOTE 4 /* Program header type = note */ 162 fprintf(stderr, "%s already has a note entry\n", in main() 187 /* fill in the note area we point to */ in main() 197 /* fill in the second program header entry and the RPA note area */ in main() 210 /* fill in the note area we point to */ in main() 245 fprintf(stderr, "sorry, I can't find space in %s to put the note\n", in main()
|
| /linux/tools/perf/pmu-events/arch/arm64/fujitsu/monaka/ |
| H A D | l3_cache.json | 43 …"BriefDescription": "This event counts operations that cause a miss of the L3 cache. Note: This ev… 63 …D_CACHE_REFILL_L3D_MISS caused by hardware prefetch or software prefetch. Note: This event may cou… 68 …"This event counts L2D_CACHE_REFILL_L3D_MISS caused by hardware prefetch. Note: This event may cou… 73 …"BriefDescription": "This event counts operations that cause a hit of the L3 cache. Note: This eve… 93 …2D_CACHE_REFILL_L3D_HIT caused by hardware prefetch or software prefetch. Note: This event may cou… 98 … "This event counts L2D_CACHE_REFILL_L3D_HIT caused by hardware prefetch. Note: This event may cou… 152 …emory-read operation, as defined by the L2D_CACHE_REFILL_L3D_MISS events. Note: This event may cou…
|
| /linux/tools/perf/util/ |
| H A D | probe-file.c | 722 static unsigned long long sdt_note__get_addr(struct sdt_note *note) in sdt_note__get_addr() argument 724 return note->bit32 ? in sdt_note__get_addr() 725 (unsigned long long)note->addr.a32[SDT_NOTE_IDX_LOC] : in sdt_note__get_addr() 726 (unsigned long long)note->addr.a64[SDT_NOTE_IDX_LOC]; in sdt_note__get_addr() 729 static unsigned long long sdt_note__get_ref_ctr_offset(struct sdt_note *note) in sdt_note__get_ref_ctr_offset() argument 731 return note->bit32 ? in sdt_note__get_ref_ctr_offset() 732 (unsigned long long)note->addr.a32[SDT_NOTE_IDX_REFCTR] : in sdt_note__get_ref_ctr_offset() 733 (unsigned long long)note->addr.a64[SDT_NOTE_IDX_REFCTR]; in sdt_note__get_ref_ctr_offset() 805 static char *synthesize_sdt_probe_command(struct sdt_note *note, in synthesize_sdt_probe_command() argument 820 sdtgrp, note->name, pathname, in synthesize_sdt_probe_command() [all …]
|
| /linux/sound/drivers/opl3/ |
| H A D | opl3_voice.h | 18 void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan); 19 void snd_opl3_note_off(void *p, int note, int vel, struct snd_midi_channel *chan); 20 void snd_opl3_key_press(void *p, int note, int vel, struct snd_midi_channel *chan); 21 void snd_opl3_terminate_note(void *p, int note, struct snd_midi_channel *chan); 31 void snd_opl3_drum_switch(struct snd_opl3 *opl3, int note, int vel, int on_off, struct snd_midi_cha…
|
| H A D | opl3_synth.c | 60 static int snd_opl3_play_note(struct snd_opl3 * opl3, struct snd_dm_fm_note * note); 115 struct snd_dm_fm_note note; in snd_opl3_ioctl() local 116 if (copy_from_user(¬e, argp, sizeof(struct snd_dm_fm_note))) in snd_opl3_ioctl() 118 return snd_opl3_play_note(opl3, ¬e); in snd_opl3_ioctl() 375 opl3->command(opl3, opl3_reg, 0x00); /* Note off */ in snd_opl3_reset() 388 static int snd_opl3_play_note(struct snd_opl3 * opl3, struct snd_dm_fm_note * note) in snd_opl3_play_note() argument 398 if (note->voice >= ((opl3->fm_mode == SNDRV_DM_FM_MODE_OPL3) ? in snd_opl3_play_note() 403 if (note->voice < MAX_OPL2_VOICES) { in snd_opl3_play_note() 406 voice_offset = note->voice; in snd_opl3_play_note() 410 voice_offset = note->voice - MAX_OPL2_VOICES; in snd_opl3_play_note() [all …]
|
| /linux/net/rxrpc/ |
| H A D | skbuff.c | 20 * Note the allocation or reception of a socket buffer. 29 * Note the re-emergence of a socket buffer from a queue or buffer. 40 * Note the addition of a ref on a socket buffer. 50 * Note the dropping of a ref on a socket buffer by the core. 59 * Note the destruction of a socket buffer.
|
| /linux/Documentation/networking/device_drivers/ethernet/intel/ |
| H A D | igb.rst | 42 NOTE: A descriptor describes a data buffer and attributes related to the data 68 NOTE: Caution must be used in loading the driver with these parameters. 72 NOTE: Neither the device nor the driver control how VFs are mapped into config 76 NOTE: When either SR-IOV mode or VMDq mode is enabled, hardware VLAN filtering 116 NOTE: The maximum MTU setting for Jumbo Frames is 9216. This value coincides 119 NOTE: Using Jumbo frames at 10 or 100 Mbps is not supported and may result in 140 NOTE: Wake on LAN is only supported on port A of multi-port devices. Also 158 NOTE: On some kernels a reboot is required to switch between single queue mode 198 NOTE: This feature is exclusive to i210 models.
|