Searched refs:octave (Results 1 - 14 of 14) sorted by relevance

/external/sonivox/arm-wt-22k/lib_src/
H A Deas_rtttldata.h64 EAS_U8 octave; /* decault octave prefix */ member in struct:__anon16372
H A Deas_imelodydata.h65 EAS_U8 octave; /* octave prefix */ member in struct:__anon16355
H A Deas_otadata.h72 EAS_U8 octave; /* octave modifier */ member in struct:__anon16362
H A Deas_rtttl.c268 EAS_U8 octave; local
301 octave = pData->octave;
354 /* if a number, must be octave or tempo */
360 /* check for octave first */
363 octave = (EAS_U8) temp;
384 /* octave */
387 if ((result = RTTTL_GetOctave(pEASData->hwInstData, pData, &pData->octave)) != EAS_SUCCESS)
398 /* duration or octave */
411 /* octave come
870 EAS_I32 octave; local
[all...]
H A Deas_ota.c504 /* add octave */
505 pData->note += pData->octave;
517 /* fetch octave */
520 pData->octave = (EAS_U8) (temp * 12 + 59);
866 pData->octave = 59;
H A Deas_imelody.c486 /* octave */
490 pData->octave = (EAS_U8) ((c - '0' + 1) * 12);
897 pData->note = (EAS_U8) (pData->octave + noteTable[note - 'a'] + pData->noteModifier);
1456 pData->octave = 60;
/external/kernel-headers/original/uapi/sound/
H A Dasound_fm.h66 * This describes an FM note by its voice, octave, frequency number (10bit)
72 unsigned char octave; /* 3 bits: what octave to play */ member in struct:snd_dm_fm_note
/external/libvorbis/lib/
H A Dpsy.h103 long *octave; /* in n.ocshift format */ member in struct:__anon11064
H A Dpsy.c167 could span more than one octave and that the curve will be a
169 bin may span > an eighth of an octave and that the eighth
170 octave values may also be composited. */
172 /* which octave curves will we be compositing? */
281 p->octave=_ogg_malloc(n*sizeof(*p->octave));
325 p->octave[i]=toOC((i+.25f)*.5*rate/n)*(1<<(p->shiftoc+1))+.5f;
365 if(p->octave)_ogg_free(p->octave);
386 /* octave/(
[all...]
/external/opencv/cv/src/
H A Dcvsurf.cpp118 int octave, sc; local
123 for( octave = k = 0; octave < params->nOctaves; octave++ )
128 sizeCache[k] = size = 7 << octave; // gaussian scale 1.0;
130 sizeCache[k] = size = (sc*6 + 9) << octave; // gaussian scale size*1.2/9.;
184 for( octave = 0, k = 1; octave < params->nOctaves; octave++, k+=2 )
242 for( octave
[all...]
/external/libopus/celt/
H A Dcelt_decoder.c802 int qg, octave; local
803 octave = ec_dec_uint(dec, 6);
804 postfilter_pitch = (16<<octave)+ec_dec_bits(dec, 4+octave)-1;
H A Dcelt_encoder.c1039 /* Don't search for the fir last 1.5 octave of the range because
1502 int octave; local
1505 octave = EC_ILOG(pitch_index)-5;
1506 ec_enc_uint(enc, octave, 6);
1507 ec_enc_bits(enc, pitch_index-(16<<octave), 4+octave);
/external/skia/src/effects/
H A DSkPerlinNoiseShader.cpp385 for (int octave = 0; octave < perlinNoiseShader.fNumOctaves; ++octave) {
794 fragBuilder->codeAppendf("for (int octave = 0; octave < %d; ++octave) {", pne.numOctaves());
/external/skia/experimental/SkPerlinNoiseShader2/
H A DSkPerlinNoiseShader2.cpp453 for (int octave = 0; octave < perlinNoiseShader.fNumOctaves; ++octave) {
932 fsBuilder->codeAppendf("for (int octave = 0; octave < %d; ++octave) {", pne.numOctaves());

Completed in 940 milliseconds