Home
last modified time | relevance | path

Searched refs:omax (Results 1 – 3 of 3) sorted by relevance

/linux/lib/zstd/common/
H A Dfse_decompress.c181 BYTE* const omax = op + maxDstSize; in FSE_decompress_usingDTable_generic() local
182 BYTE* const olimit = omax-3; in FSE_decompress_usingDTable_generic()
221 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSE_decompress_usingDTable_generic()
228 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSE_decompress_usingDTable_generic()
/linux/drivers/clk/xilinx/
H A Dclk-xlnx-clock-wizard.c347 u32 mmin, mmax, dmin, dmax, omin, omax; in clk_wzrd_get_divisors_ver() local
354 omax = VER_WZRD_O_MAX; in clk_wzrd_get_divisors_ver()
365 if (o < omin || o > omax) in clk_wzrd_get_divisors_ver()
389 u64 mmin, mmax, dmin, dmax, omin, omax, mdmin, mdmax; in clk_wzrd_get_divisors() local
396 omax = WZRD_O_MAX << 3; in clk_wzrd_get_divisors()
406 if (o < omin || o > omax) in clk_wzrd_get_divisors()
/linux/sound/core/oss/
H A Dmixer_oss.c423 static long snd_mixer_oss_conv(long val, long omin, long omax, long nmin, long nmax) in snd_mixer_oss_conv() argument
425 long orange = omax - omin, nrange = nmax - nmin; in snd_mixer_oss_conv()