Lines Matching refs:INT
40 #define INT __force int macro
42 static struct pcm_format_data pcm_formats[(INT)SNDRV_PCM_FORMAT_LAST+1] = {
242 if ((INT)format < 0 || (INT)format > (INT)SNDRV_PCM_FORMAT_LAST) in snd_pcm_format_signed()
244 if ((val = pcm_formats[(INT)format].signd) < 0) in snd_pcm_format_signed()
293 if ((INT)format < 0 || (INT)format > (INT)SNDRV_PCM_FORMAT_LAST) in snd_pcm_format_little_endian()
295 if ((val = pcm_formats[(INT)format].le) < 0) in snd_pcm_format_little_endian()
331 if ((INT)format < 0 || (INT)format > (INT)SNDRV_PCM_FORMAT_LAST) in snd_pcm_format_width()
333 if ((val = pcm_formats[(INT)format].width) == 0) in snd_pcm_format_width()
350 if ((INT)format < 0 || (INT)format > (INT)SNDRV_PCM_FORMAT_LAST) in snd_pcm_format_physical_width()
352 if ((val = pcm_formats[(INT)format].phys) == 0) in snd_pcm_format_physical_width()
385 if ((INT)format < 0 || (INT)format > (INT)SNDRV_PCM_FORMAT_LAST) in snd_pcm_format_silence_64()
387 if (! pcm_formats[(INT)format].phys) in snd_pcm_format_silence_64()
389 return pcm_formats[(INT)format].silence; in snd_pcm_format_silence_64()
409 if ((INT)format < 0 || (INT)format > (INT)SNDRV_PCM_FORMAT_LAST) in snd_pcm_format_set_silence()
413 width = pcm_formats[(INT)format].phys; /* physical width */ in snd_pcm_format_set_silence()
414 pat = pcm_formats[(INT)format].silence; in snd_pcm_format_set_silence()
418 if (pcm_formats[(INT)format].signd == 1 || width <= 8) { in snd_pcm_format_set_silence()