Lines Matching defs:pitch
387 /* set pitch offset */
409 /* lfo1 pitch & cutoff shift */
413 /* lfo2 pitch & freq */
468 /* set pitch target and pan (volume) */
471 /* current pitch and fractional address */
486 short pitch;
490 pitch = (char)(vp->reg.parm.fmmod>>8);
493 pitch += (MOD_SENSE * modulation) / 1200;
494 LIMITVALUE(pitch, -128, 127);
495 return ((unsigned char)pitch << 8) | cutoff;
498 /* calculate set lfo2 pitch & frequency register */
502 short pitch;
506 pitch = (char)(vp->reg.parm.fm2frq2>>8);
509 pitch += (MOD_SENSE * modulation) / 1200;
510 LIMITVALUE(pitch, -128, 127);
511 return ((unsigned char)pitch << 8) | freq;