/src/sys/miscfs/procfs/ |
procfs_note.c | 96 char note[PROCFS_NOTELEN+1]; local in function:procfs_donote 102 error = vfs_getuserstr(uio, note, &xlen);
|
/src/sys/arch/hppa/conf/ |
ld.script | 62 .note.netbsd.ident : 64 KEEP(*(.note.netbsd.ident));
|
/src/sys/dev/isa/ |
cms.c | 105 #define NOTE_TO_OCTAVE(note) (((note)-CMS_FIRST_NOTE)/12) 106 #define NOTE_TO_COUNT(note) cms_note_table[(((note)-CMS_FIRST_NOTE)%12)] 223 uint32_t note; local in function:cms_on 240 note = MIDIPITCH_TO_KEY(mp); 242 if (note < CMS_FIRST_NOTE) 245 octave = NOTE_TO_OCTAVE(note); 246 count = NOTE_TO_COUNT(note);
|
/src/sys/external/bsd/gnu-efi/dist/gnuefi/ |
elf_aarch64_efi.lds | 57 .note.gnu.build-id : { *(.note.gnu.build-id) } 62 *(.note.GNU-stack)
|
elf_arm_efi.lds | 57 .note.gnu.build-id : { *(.note.gnu.build-id) } 62 *(.note.GNU-stack)
|
elf_ia32_efi.lds | 53 .note.gnu.build-id : { *(.note.gnu.build-id) } 85 *(.note.GNU-stack)
|
elf_ia32_fbsd_efi.lds | 53 .note.gnu.build-id : { *(.note.gnu.build-id) } 85 *(.note.GNU-stack)
|
elf_ia64_efi.lds | 50 .note.gnu.build-id : { *(.note.gnu.build-id) }
|
elf_mips64el_efi.lds | 57 .note.gnu.build-id : { *(.note.gnu.build-id) } 63 *(.note.GNU-stack)
|
elf_riscv64_efi.lds | 69 .note.gnu.build-id : 70 { *(.note.gnu.build-id) } 75 *(.note.GNU-stack)
|
elf_x86_64_efi.lds | 53 .note.gnu.build-id : { *(.note.gnu.build-id) } 75 *(.note.GNU-stack)
|
elf_x86_64_fbsd_efi.lds | 50 .note.gnu.build-id : { *(.note.gnu.build-id) }
|
/src/sys/arch/x68k/dev/ |
opmbell.c | 252 static u_int note[] = { variable in typeref:typename:u_int[] 376 key = (oct << 12) + note[i];
|
/src/sys/lib/libsa/ |
loadfile_elf32.c | 521 } note; local in function:ELFNAMEEND 618 if (shp[i].sh_size < sizeof(note)) { 624 ¬e, sizeof(note)); 629 if (note.nh.n_namesz == ELF_NOTE_NETBSD_NAMESZ && 630 note.nh.n_descsz == ELF_NOTE_NETBSD_DESCSZ && 631 note.nh.n_type == ELF_NOTE_TYPE_NETBSD_TAG && 632 memcmp(note.name, ELF_NOTE_NETBSD_NAME, 633 sizeof(note.name)) == 0) { 634 memcpy(&netbsd_version, ¬e.desc [all...] |
/src/usr.bin/rdist/ |
server.c | 75 static void note(const char *, ...) 655 dolog(lfp, "update: note: %s\n", s); 1091 note("%s:%s: unknown login name, clearing setuid", 1111 note("%s:%s: unknown group", host, group); 1130 note("%s: %s utimes: %s", host, file, strerror(errno)); 1132 note("%s: %s chown: %s", host, file, strerror(errno)); 1135 note("%s: %s chmod: %s", host, file, strerror(errno)); 1541 dolog(lfp, "Note: %s\n",s); 1576 note(const char *fmt, ...) function in typeref:typename:void
|
/src/sys/dev/ |
sequencer.c | 568 case MIDI_NOTEON: /* midi(4) always canonicalizes hidden note-off */ 1269 /* (24 MIDI clocks are usually but not always a quarter note) */ 1318 * NOTE: on entry, *ev may contain valid data only in the first 4 bytes. 1325 int cmd, chan, note, parm; local in function:seq_to_new 1333 note = *bfp++; 1335 DPRINTFN(3, ("seq_to_new: 0x%02x %d %d %d\n", cmd, chan, note, parm)); 1366 .device=0, .channel=chan, .key=note, .velocity=parm); 1394 .device=0, .channel=chan, .program=note); 1517 * If the writing process hands us a hidden note-off in a note-on event [all...] |
/src/sys/kern/ |
kern_ksyms.c | 981 int32_t *note = ksyms_hdr.kh_note; local in function:ksyms_fill_note 982 note[0] = ELF_NOTE_NETBSD_NAMESZ; 983 note[1] = ELF_NOTE_NETBSD_DESCSZ; 984 note[2] = ELF_NOTE_TYPE_NETBSD_TAG; 985 memcpy(¬e[3], "NetBSD\0", 8); 986 note[5] = __NetBSD_Version__; 1013 /* First section header ".note.netbsd.ident" */ 1020 SHTCOPY(".note.netbsd.ident");
|