Lines Matching refs:INT
43 #define INT __force int macro
45 static struct pcm_format_data pcm_formats[(INT)SNDRV_PCM_FORMAT_LAST+1] = {
262 if ((INT)format < 0 || (INT)format > (INT)SNDRV_PCM_FORMAT_LAST) in snd_pcm_format_signed()
264 if ((val = pcm_formats[(INT)format].signd) < 0) in snd_pcm_format_signed()
310 if ((INT)format < 0 || (INT)format > (INT)SNDRV_PCM_FORMAT_LAST) in snd_pcm_format_little_endian()
312 if ((val = pcm_formats[(INT)format].le) < 0) in snd_pcm_format_little_endian()
346 if ((INT)format < 0 || (INT)format > (INT)SNDRV_PCM_FORMAT_LAST) in snd_pcm_format_width()
348 if ((val = pcm_formats[(INT)format].width) == 0) in snd_pcm_format_width()
364 if ((INT)format < 0 || (INT)format > (INT)SNDRV_PCM_FORMAT_LAST) in snd_pcm_format_physical_width()
366 if ((val = pcm_formats[(INT)format].phys) == 0) in snd_pcm_format_physical_width()
397 if ((INT)format < 0 || (INT)format > (INT)SNDRV_PCM_FORMAT_LAST) in snd_pcm_format_silence_64()
399 if (! pcm_formats[(INT)format].phys) in snd_pcm_format_silence_64()
401 return pcm_formats[(INT)format].silence; in snd_pcm_format_silence_64()
420 if ((INT)format < 0 || (INT)format > (INT)SNDRV_PCM_FORMAT_LAST) in snd_pcm_format_set_silence()
424 width = pcm_formats[(INT)format].phys; /* physical width */ in snd_pcm_format_set_silence()
425 pat = pcm_formats[(INT)format].silence; in snd_pcm_format_set_silence()
429 if (pcm_formats[(INT)format].signd == 1 || width <= 8) { in snd_pcm_format_set_silence()