Searched defs:note (Results 1 - 25 of 45) sorted by relevance

12

/external/llvm/utils/llvm-build/llvmbuild/
H A Dutil.py8 note = lambda message: _write_message('note', message) variable
13 __all__ = ['note', 'warning', 'error', 'fatal']
/external/llvm/utils/lit/lit/
H A DLitConfig.py65 self.note('load_config from %r' % path)
102 self.note("Unable to find 'bash.exe'.")
120 def note(self, message): member in class:LitConfig
121 self._write_message('note', message)
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_rtttldata.h56 EAS_I32 tick; /* length of 32nd note in 256th of a msec */
57 EAS_I32 restTicks; /* ticks to rest after current note */
63 EAS_U8 note; /* MIDI note number */ member in struct:__anon12788
65 EAS_I8 duration; /* default note duration */
H A Deas_imelodydata.h54 EAS_I32 tickBase; /* basline length of 32nd note in 256th of a msec */
55 EAS_I32 tick; /* actual length of 32nd note in 256th of a msec */
56 EAS_I32 restTicks; /* ticks to rest after current note */
66 EAS_U8 note; /* MIDI note number */ member in struct:__anon12775
H A Deas_otadata.h62 EAS_U32 tick; /* length of 32nd note in 256th of a msec */
63 EAS_U32 restTicks; /* ticks to rest after current note */
71 EAS_U8 note; /* MIDI note number */ member in struct:__anon12778
H A Deas_rtttl.c48 /* length of 32nd note in 1/256ths of a msec for 63 BPM tempo */
57 /* note used for rest */
89 /* lookup table for note values */
267 EAS_U8 note; local
284 /* check for end of note */
285 if (pData->note)
287 /* stop the note */
288 VMStopNote(pEASData->pVoiceMgr, pData->pSynth, RTTTL_CHANNEL, pData->note, 0);
289 pData->note = 0;
302 note
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_rtttldata.h56 EAS_I32 tick; /* length of 32nd note in 256th of a msec */
57 EAS_I32 restTicks; /* ticks to rest after current note */
63 EAS_U8 note; /* MIDI note number */ member in struct:__anon12838
65 EAS_I8 duration; /* default note duration */
H A Deas_imelodydata.h54 EAS_I32 tickBase; /* basline length of 32nd note in 256th of a msec */
55 EAS_I32 tick; /* actual length of 32nd note in 256th of a msec */
56 EAS_I32 restTicks; /* ticks to rest after current note */
66 EAS_U8 note; /* MIDI note number */ member in struct:__anon12825
H A Deas_otadata.h62 EAS_U32 tick; /* length of 32nd note in 256th of a msec */
63 EAS_U32 restTicks; /* ticks to rest after current note */
71 EAS_U8 note; /* MIDI note number */ member in struct:__anon12828
H A Deas_rtttl.c48 /* length of 32nd note in 1/256ths of a msec for 63 BPM tempo */
57 /* note used for rest */
89 /* lookup table for note values */
267 EAS_U8 note; local
284 /* check for end of note */
285 if (pData->note)
287 /* stop the note */
288 VMStopNote(pEASData->pVoiceMgr, pData->pSynth, RTTTL_CHANNEL, pData->note, 0);
289 pData->note = 0;
302 note
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_rtttldata.h56 EAS_I32 tick; /* length of 32nd note in 256th of a msec */
57 EAS_I32 restTicks; /* ticks to rest after current note */
63 EAS_U8 note; /* MIDI note number */ member in struct:__anon12890
65 EAS_I8 duration; /* default note duration */
H A Deas_tcdata.h51 EAS_I32 length; /* length of current note */
55 EAS_I8 note; /* current note */ member in struct:__anon12893
56 EAS_I8 repeatCount; /* note repeat counter */
H A Deas_imelodydata.h54 EAS_I32 tickBase; /* basline length of 32nd note in 256th of a msec */
55 EAS_I32 tick; /* actual length of 32nd note in 256th of a msec */
56 EAS_I32 restTicks; /* ticks to rest after current note */
67 EAS_U8 note; /* MIDI note number */ member in struct:__anon12873
H A Deas_otadata.h62 EAS_U32 tick; /* length of 32nd note in 256th of a msec */
63 EAS_U32 restTicks; /* ticks to rest after current note */
71 EAS_U8 note; /* MIDI note number */ member in struct:__anon12880
H A Deas_rtttl.c48 /* length of 32nd note in 1/256ths of a msec for 63 BPM tempo */
57 /* note used for rest */
89 /* lookup table for note values */
267 EAS_U8 note; local
284 /* check for end of note */
285 if (pData->note)
287 /* stop the note */
288 VMStopNote(pEASData->pVoiceMgr, pData->pSynth, RTTTL_CHANNEL, pData->note, 0);
289 pData->note = 0;
302 note
[all...]
H A Deas_tonecontrol.c75 static EAS_RESULT TC_StartNote (S_EAS_DATA *pEASData, S_TC_DATA* pData, EAS_INT parserMode, EAS_I8 note);
276 /* check for end of note */
277 if (pData->note >= 0)
279 /* stop the note */
280 VMStopNote(pEASData->pVoiceMgr, pData->pSynth, TC_CHANNEL, (EAS_U8) pData->note, 0);
282 /* check for repeat note */
287 if ((pData->note >= 0) && (parserMode == eParserModePlay))
288 VMStartNote(pEASData->pVoiceMgr, pData->pSynth, TC_CHANNEL, (EAS_U8) pData->note, pData->volume);
292 pData->note = TC_FIELD_SILENCE;
295 /* parse stream until we get a note o
721 TC_StartNote(S_EAS_DATA *pEASData, S_TC_DATA* pData, EAS_INT parserMode, EAS_I8 note) argument
[all...]
/external/llvm/utils/Misc/
H A Dzkill19 note = lambda message: _write_message('note', message) variable
219 note('using signal %d (SIG%s)' % (signal, name))
221 note('using signal %d' % signal)
265 note('kill(%r, %s) # (user=%r, executable=%r, CPU=%2.2f%%, time=%r, vmem=%r, rss=%r)' %
/external/oprofile/daemon/liblegacy/
H A Dopd_mapping.c139 void opd_handle_mapping(struct op_note const * note) argument
146 proc = opd_get_proc(note->pid, note->tgid);
149 verbprintf(vmisc, "Told about mapping for non-existent process %u.\n", note->pid);
150 proc = opd_new_proc(note->pid, note->tgid);
153 hash = note->hash;
166 image = opd_get_image(name, proc->name, 0, note->pid, note->tgid);
168 opd_add_mapping(proc, image, note
[all...]
H A Dinit.c72 fprintf(stderr, "Failed to open note device. Possibly you have passed incorrect\n"
75 perror("Failed to open note device");
117 * @param nbuf note buffer area
118 * @param nsize size of note buffer
132 /* it's always OK to read the note device */
159 * @param nbuf note buffer
160 * @param nsize size of note buffer
215 struct op_note const * note; local
218 note = &opd_buf[i];
222 switch (note
[all...]
H A Dopd_proc.c238 void opd_handle_fork(struct op_note const * note) argument
244 verbprintf(vmisc, "DO_FORK: from %d, %d to %ld, %ld\n", note->pid, note->tgid,
245 note->addr, note->len);
247 old = opd_get_proc(note->pid, note->tgid);
257 if (opd_get_proc(note->addr, note->len))
261 proc = opd_new_proc(note
317 opd_handle_exit(struct op_note const * note) argument
[all...]
/external/oprofile/libutil++/
H A Dop_spu_bfd.cpp57 asection * note = NULL; local
92 /* For embedded SPU ELF, a note section named '.note.spu_name'
96 note = bfd_get_section_by_name(ibfd.abfd, ".note.spu_name");
97 if (!note) {
98 cverb << vbfd << "No .note.spu-name section found" << endl;
101 cverb << vbfd << "found .note.spu_name section" << endl;
105 sec_size = bfd_section_size(ibfd.abfd, note)/oct_per_byte;
108 if (!bfd_get_section_contents(ibfd.abfd, note, sec_content
[all...]
/external/clang/lib/ARCMigrate/
H A DTransUnbridgedCasts.cpp292 std::string note = "remove the cast and change return type of function " local
294 note += E->getSubExpr()->getType().getAsString(Pass.Ctx.getPrintingPolicy());
295 note += "' to have the object automatically autoreleased";
296 Pass.TA.reportNote(note, retS->getLocStart());
/external/oprofile/module/x86/
H A Dop_syscalls.c50 struct op_note note; local
56 note.pid = current->pid;
57 note.tgid = op_get_tgid();
58 note.addr = addr;
59 note.len = len;
60 note.offset = offset;
61 note.type = is_execve ? OP_EXEC : OP_MAP;
62 note.hash = hash_path(file);
63 if (note.hash == -1)
65 /* holding note loc
210 struct op_note note; local
281 struct op_note note; local
293 struct op_note note; local
[all...]
/external/proguard/src/proguard/
H A DConfiguration.java294 public List note = null; field in class:Configuration
/external/valgrind/main/coregrind/m_coredump/
H A Dcoredump-elf.c139 struct note { struct
140 struct note *next;
141 ESZ(Nhdr) note;
145 static UInt note_size(const struct note *n)
148 + VG_ROUNDUP(n->note.n_descsz, 4);
152 static void add_note(struct note **list, const Char *name, UInt type,
156 Int notelen = sizeof(struct note) +
159 struct note *n = VG_(arena_malloc)(VG_AR_CORE, "coredump-elf.an.1", notelen);
166 n->note.n_type = type;
167 n->note
490 struct note *notelist, *note; local
[all...]

Completed in 444 milliseconds

12