Searched refs:s32TempA (Results 1 – 1 of 1) sorted by relevance
175 MS_S32 minmax(MS_S32 s32TempA, MS_S32 s32TempB, MS_S32 s32TempC) // make sure s32TempB < s32TempC in minmax() argument177 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() argument187 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() argument195 if ( (s32TempA>=s32TempB) && (s32TempA>=s32TempC) ) in max3()196 return s32TempA; in max3()[all …]