Lines Matching defs:pitch
355 /* set pitch offset */
378 /* lfo1 pitch & cutoff shift */
382 /* lfo2 pitch & freq */
480 /* set pitch target and pan (volume) */
484 /* pitch target */
498 short pitch;
502 pitch = (char)(vp->reg.parm.fmmod>>8);
505 pitch += (MOD_SENSE * modulation) / 1200;
506 LIMITVALUE(pitch, -128, 127);
507 fmmod = ((unsigned char)pitch<<8) | cutoff;
511 /* set lfo2 pitch & frequency */
516 short pitch;
520 pitch = (char)(vp->reg.parm.fm2frq2>>8);
523 pitch += (MOD_SENSE * modulation) / 1200;
524 LIMITVALUE(pitch, -128, 127);
525 fm2frq2 = ((unsigned char)pitch<<8) | freq;