/third_party/mesa3d/src/util/ |
H A D | build_id.c | 52 struct build_id_note *note; member 78 struct build_id_note *note = (void *)(info->dlpi_addr + in build_id_find_nhdr_callback() local 83 if (note->nhdr.n_type == NT_GNU_BUILD_ID && in build_id_find_nhdr_callback() 84 note->nhdr.n_descsz != 0 && in build_id_find_nhdr_callback() 85 note->nhdr.n_namesz == 4 && in build_id_find_nhdr_callback() 86 memcmp(note->name, "GNU", 4) == 0) { in build_id_find_nhdr_callback() 87 data->note = note; in build_id_find_nhdr_callback() 92 ALIGN_POT(note->nhdr.n_namesz, 4) + in build_id_find_nhdr_callback() 93 ALIGN_POT(note in build_id_find_nhdr_callback() 132 build_id_length(const struct build_id_note *note) build_id_length() argument 138 build_id_data(const struct build_id_note *note) build_id_data() argument [all...] |
/third_party/alsa-lib/include/ |
H A D | seqmid.h | 404 * \brief set note event 407 * \param key note key 414 (ev)->data.note.channel = (ch),\ 415 (ev)->data.note.note = (key),\ 416 (ev)->data.note.velocity = (vel),\ 417 (ev)->data.note.duration = (dur)) 420 * \brief set note-on event 423 * \param key note key 429 (ev)->data.note [all...] |
H A D | ump_msg.h | 44 uint8_t note; /**< Note (7bit) */ member 48 uint8_t note; /**< Note (7bit) */ 63 uint8_t note; /** Note (7bit) */ member 67 uint8_t note; /** Note (7bit) */ 197 uint8_t note; /**< Note (7bit) */ member 204 uint8_t note; /**< Note (7bit) */ 222 uint8_t note; /**< Note (7bit) */ member 228 uint8_t note; /**< Note (7bit) */ 245 uint8_t note; /**< Note (7bit) */ member 251 uint8_t note; /**< Not 274 uint8_t note; /**< Note (7bit) */ global() member 414 uint8_t note; /**< Note (7bit) */ global() member [all...] |
/third_party/libunwind/libunwind/src/coredump/ |
H A D | _UCD_corefile_elf.c | 86 * out is just a matter of calculating the size of each note from the size 87 * fields contained in the (fixed-size) note header and adjusting for 4-byte 90 * For each note found the @p visit callback will be invoked. If the callback 108 Elf64_Nhdr *note = (Elf64_Nhdr *)(segment + parsed_size); in _UCD_elf_visit_notes() local 110 unsigned name_size = UNW_ALIGN(note->n_namesz, 4); in _UCD_elf_visit_notes() 111 unsigned desc_size = UNW_ALIGN(note->n_descsz, 4); in _UCD_elf_visit_notes() 113 char *name = (char *)(note) + header_size; in _UCD_elf_visit_notes() 114 uint8_t *desc = (uint8_t *)(note) + header_size + name_size; in _UCD_elf_visit_notes() 116 ret = visit(note->n_namesz, note in _UCD_elf_visit_notes() [all...] |
/third_party/rust/crates/libc/src/ |
H A D | fixed_width_ints.rs | 5 #[deprecated(since = "0.2.55", note = "Use i8 instead.")] 7 #[deprecated(since = "0.2.55", note = "Use i16 instead.")] 9 #[deprecated(since = "0.2.55", note = "Use i32 instead.")] 11 #[deprecated(since = "0.2.55", note = "Use i64 instead.")] 13 #[deprecated(since = "0.2.55", note = "Use u8 instead.")] 15 #[deprecated(since = "0.2.55", note = "Use u16 instead.")] 17 #[deprecated(since = "0.2.55", note = "Use u32 instead.")] 19 #[deprecated(since = "0.2.55", note = "Use u64 instead.")]
|
/third_party/alsa-utils/seq/aseqdump/ |
H A D | aseqdump.c | 193 if (ev->data.note.velocity) in dump_event() 194 printf("Note on %2d, note %d, velocity %s\n", in dump_event() 195 channel_number(ev->data.note.channel), in dump_event() 196 ev->data.note.note, in dump_event() 197 midi1_data(ev->data.note.velocity)); in dump_event() 199 printf("Note off %2d, note %d\n", in dump_event() 200 channel_number(ev->data.note.channel), in dump_event() 201 ev->data.note.note); in dump_event() [all...] |
/third_party/alsa-lib/test/lsb/ |
H A D | midi_event.c | 190 TEST_CHECK(ev.data.note.channel == 1); in test_encode() 191 TEST_CHECK(ev.data.note.note == 2); in test_encode() 192 TEST_CHECK(ev.data.note.velocity == 3); in test_encode() 196 TEST_CHECK(ev.data.note.channel == 4); in test_encode() 197 TEST_CHECK(ev.data.note.note == 5); in test_encode() 198 TEST_CHECK(ev.data.note.velocity == 6); in test_encode() 202 TEST_CHECK(ev.data.note.channel == 7); in test_encode() 203 TEST_CHECK(ev.data.note in test_encode() [all...] |
/third_party/rust/crates/rust-openssl/openssl-sys/src/ |
H A D | bio.rs | 36 #[deprecated(note = "use BIO_meth_set_write__fixed_rust instead")] 42 #[deprecated(note = "use BIO_meth_set_read__fixed_rust instead")] 48 #[deprecated(note = "use BIO_meth_set_puts__fixed_rust instead")] 54 #[deprecated(note = "use BIO_meth_set_ctrl__fixed_rust instead")] 60 #[deprecated(note = "use BIO_meth_set_create__fixed_rust instead")] 66 #[deprecated(note = "use BIO_meth_set_destroy__fixed_rust instead")]
|
/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/ |
H A D | postject-api.h | 142 // note segment starts at base address + segment virtual address in postject_find_resource() 152 ElfW(Nhdr)* note = (ElfW(Nhdr)*)(uintptr_t)pos; in postject_find_resource() 153 if (note->n_namesz != 0 && note->n_descsz != 0 && in postject_find_resource() 156 *size = note->n_descsz; in postject_find_resource() 157 // advance past note header and aligned name in postject_find_resource() 159 return (void*)((uintptr_t)note + sizeof(ElfW(Nhdr)) + in postject_find_resource() 160 roundup(note->n_namesz, 4)); in postject_find_resource() 163 pos += (sizeof(ElfW(Nhdr)) + roundup(note->n_namesz, 4) + in postject_find_resource() 164 roundup(note in postject_find_resource() [all...] |
/third_party/node/deps/postject/ |
H A D | postject-api.h | 142 // note segment starts at base address + segment virtual address in postject_find_resource() 152 ElfW(Nhdr)* note = (ElfW(Nhdr)*)(uintptr_t)pos; in postject_find_resource() 153 if (note->n_namesz != 0 && note->n_descsz != 0 && in postject_find_resource() 156 *size = note->n_descsz; in postject_find_resource() 157 // advance past note header and aligned name in postject_find_resource() 159 return (void*)((uintptr_t)note + sizeof(ElfW(Nhdr)) + in postject_find_resource() 160 roundup(note->n_namesz, 4)); in postject_find_resource() 163 pos += (sizeof(ElfW(Nhdr)) + roundup(note->n_namesz, 4) + in postject_find_resource() 164 roundup(note in postject_find_resource() [all...] |
/third_party/node/deps/npm/node_modules/@sigstore/verify/dist/timestamp/ |
H A D | checkpoint.js | 22 // Separator between the note and the signatures in a checkpoint 47 const checkpoint = LogCheckpoint.fromString(signedNote.note); 70 const data = Buffer.from(signedNote.note, 'utf-8'); 80 // SignedNote represents a signed note from a transparency log checkpoint. Consists 81 // of a body (or note) and one more signatures calculated over the body. See 84 constructor(note, signatures) { 85 this.note = note; 96 // Split the note into the header and the data portions at the separator 144 static fromString(note) { [all...] |
/third_party/libexif/libexif/pentax/ |
H A D | exif-mnote-data-pentax.c | 248 "Parsing Pentax maker note v%d...", (int)n->version); in exif_mnote_data_pentax_load() 253 "Parsing Casio maker note v2..."); in exif_mnote_data_pentax_load() 260 "Parsing Pentax maker note v1..."); in exif_mnote_data_pentax_load() 360 ExifMnoteDataPentax *note = (ExifMnoteDataPentax *) d; in exif_mnote_data_pentax_get_id() local 362 if (!note) return 0; in exif_mnote_data_pentax_get_id() 363 if (note->count <= n) return 0; in exif_mnote_data_pentax_get_id() 364 return note->entries[n].tag; in exif_mnote_data_pentax_get_id() 370 ExifMnoteDataPentax *note = (ExifMnoteDataPentax *) d; in exif_mnote_data_pentax_get_name() local 372 if (!note) return NULL; in exif_mnote_data_pentax_get_name() 373 if (note in exif_mnote_data_pentax_get_name() 380 ExifMnoteDataPentax *note = (ExifMnoteDataPentax *) d; exif_mnote_data_pentax_get_title() local 390 ExifMnoteDataPentax *note = (ExifMnoteDataPentax *) d; exif_mnote_data_pentax_get_description() local [all...] |
/third_party/libbpf/src/ |
H A D | usdt.c | 68 * .note.stapsdt ELF section. Here's an example USDT definition as emitted by 178 * note) as a lookup key in a hashmap. USDT spec string uniquely defines 193 #define USDT_NOTE_SEC ".note.stapsdt" 576 static int parse_usdt_spec(struct usdt_spec *spec, const struct usdt_note *note, __u64 usdt_cookie); 623 struct usdt_note note; in collect_usdt_targets() local 627 err = parse_usdt_note(elf, path, &nhdr, data->d_buf, name_off, desc_off, ¬e); in collect_usdt_targets() 631 if (strcmp(note.provider, usdt_provider) != 0 || strcmp(note.name, usdt_name) != 0) in collect_usdt_targets() 637 * Each SDT probe also expands into a non-allocated ELF note. You can in collect_usdt_targets() 639 * see below for details. Because the note i in collect_usdt_targets() 1133 parse_usdt_note(Elf *elf, const char *path, GElf_Nhdr *nhdr, const char *data, size_t name_off, size_t desc_off, struct usdt_note *note) parse_usdt_note() argument 1190 parse_usdt_spec(struct usdt_spec *spec, const struct usdt_note *note, __u64 usdt_cookie) parse_usdt_spec() argument [all...] |
/third_party/skia/src/core/ |
H A D | SkOpts_erms.cpp | 13 static const char* note = "MSAN can't see that rep sto initializes memory."; variable 18 sk_msan_mark_initialized(dst,dst+n,note); in repsto() 22 sk_msan_mark_initialized(dst,dst+n,note); in repsto() 27 sk_msan_mark_initialized(dst,dst+n,note); in repsto() 32 sk_msan_mark_initialized(dst,dst+n,note); in repsto() 36 sk_msan_mark_initialized(dst,dst+n,note); in repsto() 40 sk_msan_mark_initialized(dst,dst+n,note); in repsto()
|
/third_party/rust/crates/io-lifetimes/src/ |
H A D | traits.rs | 69 note = "`IntoFd` is replaced by `From<...> for OwnedFd` or `Into<OwnedFd>`" in as_socket() 93 note = "`IntoHandle` is replaced by `From<...> for OwnedHandle` or `Into<OwnedHandle>`" 117 note = "`IntoSocket` is replaced by `From<...> for OwnedSocket` or `Into<OwnedSocket>`" 144 note = "`FromFd::from_fd` is replaced by `From<OwnedFd>::from`" 190 note = "`FromHandle::from_handle` is replaced by `From<OwnedHandle>::from`" 223 note = "`FromSocket::from_socket` is replaced by `From<OwnedSocket>::from`"
|
/third_party/alsa-lib/test/ |
H A D | seq-decoder.c | 136 printf("; ch=%d, note=%d, velocity=%d, off_velocity=%d, duration=%d\n", in decode_event() 137 ev->data.note.channel, in decode_event() 138 ev->data.note.note, in decode_event() 139 ev->data.note.velocity, in decode_event() 140 ev->data.note.off_velocity, in decode_event() 141 ev->data.note.duration); in decode_event() 147 printf("; ch=%d, note=%d, velocity=%d\n", in decode_event() 148 ev->data.note.channel, in decode_event() 149 ev->data.note in decode_event() [all...] |
H A D | seq-sender.c | 86 /* note: last bit from the subdevices specifies playback */ in event_sender_start_timer() 132 ev.data.note.channel = 0; in send_event() 133 ev.data.note.note = 64 + (queue*2); in send_event() 134 ev.data.note.velocity = 127; in send_event() 135 ev.data.note.off_velocity = 127; in send_event() 136 ev.data.note.duration = 500; /* 0.5sec */ in send_event()
|
/third_party/ltp/testcases/kernel/syscalls/sigrelse/ |
H A D | sigrelse01.c | 384 char note[MAXMESG]; /* message buffer for pipe */ in child() local 389 /* set note to READY and if an error occurs, overwrite it */ in child() 390 (void)strcpy(note, READY); in child() 394 /* an error occured - put mesg in note and send it back to parent */ in child() 395 (void)strcpy(note, mesg); in child() 398 /* an error occured - put mesg in note and send it back to parent */ in child() 399 (void)strcpy(note, mesg); in child() 408 (void)sprintf(note, in child() 419 * send note to parent (if not READY, parent will BROK) and in child() 426 if (write_pipe(pipe_fd[1], note) < in child() [all...] |
/third_party/skia/third_party/externals/tint/src/diagnostic/ |
H A D | diagnostic.h | 120 /// adds the note message with the given Source to the end of this list. 121 /// @param system the system raising the note message 122 /// @param note_msg the note message 123 /// @param source the source of the note diagnostic 127 diag::Diagnostic note{}; in add_note() 128 note.severity = diag::Severity::Note; in add_note() 129 note.system = system; in add_note() 130 note.source = source; in add_note() 131 note.message = note_msg; in add_note() 132 add(std::move(note)); in add_note() [all...] |
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/ |
H A D | XLIFF2ICUConverter.java | 107 private static final String NOTE = "note"; 277 * Also note, this method does not handle other non-file: 608 String[] note = new String[20]; field in XLIFF2ICUConverter.Resource 671 // print note elements if any in writeComments() 673 if(note[i]!=null){ in writeComments() 675 write(writer, TAG+NOTE+SPACE+note[i]); in writeComments() 828 // loop to pickup <source>, <note> and <target> elements in parseResourceString() 842 // save the note values in parseResourceString() 843 currentSource.note[currentSource.noteLen++] = in parseResourceString() 844 currentTarget.note[currentTarge in parseResourceString() [all...] |
/third_party/PyYAML/lib/yaml/ |
H A D | error.py | 51 problem=None, problem_mark=None, note=None): 56 self.note = note 72 if self.note is not None: 73 lines.append(self.note)
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/ |
H A D | MusicKeyboardView.java | 158 int note = pitch % NOTES_PER_OCTAVE; in makeBlackRectangles() 159 if (NOTE_IN_OCTAVE_IS_BLACK[note]) { in makeBlackRectangles() 183 int note = pitch % NOTES_PER_OCTAVE; in onDraw() 184 if (!NOTE_IN_OCTAVE_IS_BLACK[note]) { in onDraw() 197 int note = pitch % NOTES_PER_OCTAVE; in onDraw() 198 if (NOTE_IN_OCTAVE_IS_BLACK[note]) { in onDraw() 305 int note = pitch % NOTES_PER_OCTAVE; in isPitchBlack() 306 return NOTE_IN_OCTAVE_IS_BLACK[note]; in isPitchBlack()
|
/third_party/rust/crates/proc-macro-error/test-crate/ |
H A D | lib.rs | 91 let some_note = Some("Some note"); in abort_notes() 97 note = "simple note"; in abort_notes() 102 note = "format {}", "note"; in abort_notes() 104 note =? some_note; in abort_notes() 105 note =? none_note; in abort_notes() 107 note = span2 => "spanned simple note"; in abort_notes() 108 note in abort_notes() [all...] |
/third_party/toybox/toys/posix/ |
H A D | file.c | 163 char *note = map+sh_offset; in do_elf_file() local 165 // An ELF note is a sequence of entries, each consisting of an in do_elf_file() 174 n_namesz = elf_int(note, 4); in do_elf_file() 175 n_descsz = elf_int(note+4, 4); in do_elf_file() 176 n_type = elf_int(note+8, 4); in do_elf_file() 179 // Does the claimed size of this note actually fit in the section? in do_elf_file() 182 if (n_namesz==4 && !memcmp(note+12, "GNU", 4)) { in do_elf_file() 185 for (j = 0; j < n_descsz; ++j) printf("%02x", note[16 + j]); in do_elf_file() 187 } else if (n_namesz==8 && !memcmp(note+12, "Android", 8)) { in do_elf_file() 188 if (n_type==1 /*.android.note in do_elf_file() [all...] |
/third_party/alsa-utils/seq/aplaymidi/ |
H A D | arecordmidi.c | 213 static void metronome_note(unsigned char note, unsigned int tick) in metronome_note() argument 217 snd_seq_ev_set_note(&ev, metronome_channel, note, metronome_velocity, 1); in metronome_note() 475 i += 1 + (ev->data.note.channel & 0xf); in record_event() 484 command(track, MIDI_CMD_NOTE_ON | (ev->data.note.channel & 0xf)); in record_event() 485 add_byte(track, ev->data.note.note & 0x7f); in record_event() 486 add_byte(track, ev->data.note.velocity & 0x7f); in record_event() 490 command(track, MIDI_CMD_NOTE_OFF | (ev->data.note.channel & 0xf)); in record_event() 491 add_byte(track, ev->data.note.note in record_event() [all...] |