snd_pcm_format_big_endian
if (snd_pcm_format_big_endian(runtime->format))
if (snd_pcm_format_big_endian(runtime->format) || width == 8)
if (snd_pcm_format_big_endian(runtime->format) || width == 8)
int snd_pcm_format_big_endian(snd_pcm_format_t format);
#define snd_pcm_format_cpu_endian(format) snd_pcm_format_big_endian(format)
data->cvt_endian = snd_pcm_format_big_endian(format) > 0;
int big = snd_pcm_format_big_endian(format) > 0;
badness += snd_pcm_format_big_endian(f) != big;
EXPORT_SYMBOL(snd_pcm_format_big_endian);
KUNIT_EXPECT_EQ(test, snd_pcm_format_big_endian(valid_fmt[i].format),
KUNIT_EXPECT_EQ(test, snd_pcm_format_big_endian(WRONG_FORMAT_1), -EINVAL);
KUNIT_EXPECT_EQ(test, snd_pcm_format_big_endian(WRONG_FORMAT_2), -EINVAL);
if (snd_pcm_format_big_endian(runtime->format) > 0)
if (snd_pcm_format_big_endian(runtime->format))
order = snd_pcm_format_big_endian(format) != 0;
chip->pcm_swab = snd_pcm_format_big_endian(runtime->format) > 0;
ret = snd_pcm_format_big_endian(raw_fmt);