Lines Matching defs:min
64 * set min/max values for the given parameter
66 int snd_ext_parm_set_minmax(struct snd_ext_parm *parm, unsigned int min, unsigned int max)
71 parm->min = min;
119 if (ival->min == list[imin] && ! ival->openmin)
121 if (ival->min <= list[imin]) {
122 ival->min = list[imin];
156 } else if (parm->min || parm->max) {
159 snd_interval_set_minmax(&t, parm->min, parm->max);
791 * \brief Set slave parameter as the min/max values
794 * \param min the minimum value
798 * Sets the slave parameter as the min/max values.
802 int snd_pcm_extplug_set_slave_param_minmax(snd_pcm_extplug_t *extplug, int type, unsigned int min, unsigned int max)
813 return snd_ext_parm_set_minmax(&ext->sparams[type], min, max);
839 * \brief Set master parameter as the min/max values
842 * \param min the minimum value
846 * Sets the master parameter as the min/max values.
850 int snd_pcm_extplug_set_param_minmax(snd_pcm_extplug_t *extplug, int type, unsigned int min, unsigned int max)
861 return snd_ext_parm_set_minmax(&ext->params[type], min, max);