taglinefilesource code
notes1719drivers/sound/sequencer.cint             notes[] =
notes1730drivers/sound/sequencer.cnote_freq = notes[note];
notes904fs/binfmt_elf.cstruct memelfnote notes[4];
notes998fs/binfmt_elf.cnotes[0].name = "CORE";
notes999fs/binfmt_elf.cnotes[0].type = NT_PRSTATUS;
notes1000fs/binfmt_elf.cnotes[0].datasz = sizeof(prstatus);
notes1001fs/binfmt_elf.cnotes[0].data = &prstatus;
notes1030fs/binfmt_elf.cnotes[1].name = "CORE";
notes1031fs/binfmt_elf.cnotes[1].type = NT_PRPSINFO;
notes1032fs/binfmt_elf.cnotes[1].datasz = sizeof(psinfo);
notes1033fs/binfmt_elf.cnotes[1].data = &psinfo;
notes1059fs/binfmt_elf.cnotes[2].name = "CORE";
notes1060fs/binfmt_elf.cnotes[2].type = NT_TASKSTRUCT;
notes1061fs/binfmt_elf.cnotes[2].datasz = sizeof(*current);
notes1062fs/binfmt_elf.cnotes[2].data = current;
notes1072fs/binfmt_elf.cnotes[3].name = "CORE";
notes1073fs/binfmt_elf.cnotes[3].type = NT_PRFPREG;
notes1074fs/binfmt_elf.cnotes[3].datasz = sizeof(fpu);
notes1075fs/binfmt_elf.cnotes[3].data = &fpu;
notes1084fs/binfmt_elf.csz += notesize(&notes[i]);
notes1130fs/binfmt_elf.cif (!writenote(&notes[i], &file))