Lines Matching defs:msec
859 /* attack & decay/release time table (msec) */
882 /* delay time = 0x8000 - msec/92 */
884 snd_sf_calc_parm_hold(int msec)
886 int val = (0x7f * 92 - msec) / 92;
894 calc_parm_search(int msec, const short *table)
899 if (msec < (int)table[mid])
909 snd_sf_calc_parm_attack(int msec)
911 return calc_parm_search(msec, attack_time_tbl);
916 snd_sf_calc_parm_decay(int msec)
918 return calc_parm_search(msec, decay_time_tbl);