Home
last modified time | relevance | path

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

/TwlSDK-5.2.1/build/demos/gx/UnitTours/Sub_CharBg_3/src/
Dmain.c115 scale = MATH_CLAMP(scale, 0x100, 0x3000); in TwlMain()
/TwlSDK-5.2.1/build/demos/gx/UnitTours/2D_CharBg_3/src/
Dmain.c125 scale = MATH_CLAMP(scale, 0x100, 0x3000); in TwlMain()
/TwlSDK-5.2.1/include/nitro/math/
Dmath.h80 #define MATH_CLAMP(x, low, high) ( ( (x) > (high) ) ? (high) : ( ( (x) < (low) ) ? (low) : (x) ) ) macro
/TwlSDK-5.2.1/build/demos/math/misc-1/src/
Dmain.c272 result = MATH_CLAMP(a[i], low[i], high[i]); in MathTest()