Lines Matching defs:clamp
784 F32 clamp(F32 x, F32 lo, F32 hi) { return max(lo, min(x, hi)); } in clamp() function
785 F32 clamp(F32 x, F32 lo, float hi) { return clamp( x , lo , splat(hi)); } in clamp() function
786 F32 clamp(F32 x, float lo, float hi) { return clamp( x , splat(lo), splat(hi)); } in clamp() function
787 F32 clamp(F32 x, float lo, F32 hi) { return clamp( x , splat(lo), hi ); } in clamp() function
788 F32 clamp(float x, F32 lo, F32 hi) { return clamp(splat(x), lo , hi ); } in clamp() function
789 F32 clamp(float x, F32 lo, float hi) { return clamp(splat(x), lo , splat(hi)); } in clamp() function
790 F32 clamp(float x, float lo, F32 hi) { return clamp(splat(x), splat(lo), hi ); } in clamp() function
1252 SI F32 clamp(F32 x, F32 lo, F32 hi) { return x->clamp(x,lo,hi); } in clamp() function
1253 SI F32 clamp(F32 x, F32 lo, float hi) { return x->clamp(x,lo,hi); } in clamp() function
1254 SI F32 clamp(F32 x, float lo, F32 hi) { return x->clamp(x,lo,hi); } in clamp() function
1255 SI F32 clamp(F32 x, float lo, float hi) { return x->clamp(x,lo,hi); } in clamp() function
1256 SI F32 clamp(float x, F32 lo, F32 hi) { return lo->clamp(x,lo,hi); } in clamp() function
1257 SI F32 clamp(float x, F32 lo, float hi) { return lo->clamp(x,lo,hi); } in clamp() function
1258 SI F32 clamp(float x, float lo, F32 hi) { return hi->clamp(x,lo,hi); } in clamp() function