Home
last modified time | relevance | path

Searched refs:s32TempA (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()
179 else if (s32TempA >= s32TempC) in minmax()
182 return s32TempA; in minmax()
185 MS_S32 max(MS_S32 s32TempA, MS_S32 s32TempB) in max() argument
187 if (s32TempA>=s32TempB) in max()
188 return s32TempA; 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()
196 return s32TempA; in max3()
[all …]