taglinefilesource code
notes1815drivers/sound/sequencer.cint             notes[] =
notes1826drivers/sound/sequencer.cnote_freq = notes[note];
notes911fs/binfmt_elf.cstruct memelfnote notes[4];
notes1005fs/binfmt_elf.cnotes[0].name = "CORE";
notes1006fs/binfmt_elf.cnotes[0].type = NT_PRSTATUS;
notes1007fs/binfmt_elf.cnotes[0].datasz = sizeof(prstatus);
notes1008fs/binfmt_elf.cnotes[0].data = &prstatus;
notes1037fs/binfmt_elf.cnotes[1].name = "CORE";
notes1038fs/binfmt_elf.cnotes[1].type = NT_PRPSINFO;
notes1039fs/binfmt_elf.cnotes[1].datasz = sizeof(psinfo);
notes1040fs/binfmt_elf.cnotes[1].data = &psinfo;
notes1066fs/binfmt_elf.cnotes[2].name = "CORE";
notes1067fs/binfmt_elf.cnotes[2].type = NT_TASKSTRUCT;
notes1068fs/binfmt_elf.cnotes[2].datasz = sizeof(*current);
notes1069fs/binfmt_elf.cnotes[2].data = current;
notes1079fs/binfmt_elf.cnotes[3].name = "CORE";
notes1080fs/binfmt_elf.cnotes[3].type = NT_PRFPREG;
notes1081fs/binfmt_elf.cnotes[3].datasz = sizeof(fpu);
notes1082fs/binfmt_elf.cnotes[3].data = &fpu;
notes1091fs/binfmt_elf.csz += notesize(&notes[i]);
notes1137fs/binfmt_elf.cif (!writenote(&notes[i], &file))