Home
last modified time | relevance | path

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

/utopia/UTPA2-700.0.x/modules/pq/hal/mooney/pq/
H A Dmhal_pq_adaptive.c175 MS_S32 minmax(MS_S32 s32TempA, MS_S32 s32TempB, MS_S32 s32TempC) // make sure s32TempB < s32TempC in minmax() argument
177 if (s32TempA<=s32TempB) in minmax()
178 return s32TempB; in minmax()
185 MS_S32 max(MS_S32 s32TempA, MS_S32 s32TempB) in max() argument
187 if (s32TempA>=s32TempB) in max()
190 return s32TempB; in max()
193 MS_S32 max3(MS_S32 s32TempA, MS_S32 s32TempB, MS_S32 s32TempC) in max3() argument
195 if ( (s32TempA>=s32TempB) && (s32TempA>=s32TempC) ) in max3()
197 else if ((s32TempB>=s32TempA) && (s32TempB>=s32TempC) ) in max3()
198 return s32TempB; in max3()
[all …]