• Home
  • Raw
  • Download

Lines Matching refs:splat

444         M(splat)                                                     \
697 I32 splat(int n);
698 I32 splat(unsigned u) { return splat((int)u); } in splat() function
699 F32 splat(float f) { in splat() function
702 return pun_to_F32(splat(bits)); in splat()
720 F32 add(F32 x, float y) { return add(x, splat(y)); } in add()
721 F32 add(float x, F32 y) { return add(splat(x), y); } in add()
724 F32 sub(F32 x, float y) { return sub(x, splat(y)); } in sub()
725 F32 sub(float x, F32 y) { return sub(splat(x), y); } in sub()
728 F32 mul(F32 x, float y) { return mul(x, splat(y)); } in mul()
729 F32 mul(float x, F32 y) { return mul(splat(x), y); } in mul()
733 F32 fast_mul(F32 x, float y) { return fast_mul(x, splat(y)); } in fast_mul()
734 F32 fast_mul(float x, F32 y) { return fast_mul(splat(x), y); } in fast_mul()
737 F32 div(float x, F32 y) { return div(splat(x), y); } in div()
740 F32 min(F32 x, float y) { return min(x, splat(y)); } in min()
741 F32 min(float x, F32 y) { return min(splat(x), y); } in min()
744 F32 max(F32 x, float y) { return max(x, splat(y)); } in max()
745 F32 max(float x, F32 y) { return max(splat(x), y); } in max()
749 F32 mad(F32 x, F32 y, float z) { return mad( x , y , splat(z)); } in mad()
750 F32 mad(F32 x, float y, F32 z) { return mad( x , splat(y), z ); } in mad()
751 F32 mad(F32 x, float y, float z) { return mad( x , splat(y), splat(z)); } in mad()
752 F32 mad(float x, F32 y, F32 z) { return mad(splat(x), y , z ); } in mad()
753 F32 mad(float x, F32 y, float z) { return mad(splat(x), y , splat(z)); } in mad()
754 F32 mad(float x, float y, F32 z) { return mad(splat(x), splat(y), z ); } in mad()
763 F32 approx_powf(F32 base, float exp) { return approx_powf(base, splat(exp)); } in approx_powf()
764 F32 approx_powf(float base, F32 exp) { return approx_powf(splat(base), exp); } in approx_powf()
777 F32 lerp(F32 lo, F32 hi, float t) { return lerp( lo , hi , splat(t)); } in lerp()
778 F32 lerp(F32 lo, float hi, float t) { return lerp( lo , splat(hi), splat(t)); } in lerp()
779 F32 lerp(F32 lo, float hi, F32 t) { return lerp( lo , splat(hi), t ); } in lerp()
780 F32 lerp(float lo, F32 hi, F32 t) { return lerp(splat(lo), hi , t ); } in lerp()
781 F32 lerp(float lo, F32 hi, float t) { return lerp(splat(lo), hi , splat(t)); } in lerp()
782 F32 lerp(float lo, float hi, F32 t) { return lerp(splat(lo), splat(hi), t ); } in lerp()
785 F32 clamp(F32 x, F32 lo, float hi) { return clamp( x , lo , splat(hi)); } in clamp()
786 F32 clamp(F32 x, float lo, float hi) { return clamp( x , splat(lo), splat(hi)); } in clamp()
787 F32 clamp(F32 x, float lo, F32 hi) { return clamp( x , splat(lo), hi ); } in clamp()
788 F32 clamp(float x, F32 lo, F32 hi) { return clamp(splat(x), lo , hi ); } in clamp()
789 F32 clamp(float x, F32 lo, float hi) { return clamp(splat(x), lo , splat(hi)); } in clamp()
790 F32 clamp(float x, float lo, F32 hi) { return clamp(splat(x), splat(lo), hi ); } in clamp()
1289 SI I32 select(I32 c, I32 t, int f) { return c->select(c, t , c->splat(f)); } in select()
1290 SI I32 select(I32 c, int t, I32 f) { return c->select(c, c->splat(t), f ); } in select()
1291 SI I32 select(I32 c, int t, int f) { return c->select(c, c->splat(t), c->splat(f)); } in select()
1294 SI F32 select(I32 c, F32 t, float f) { return c->select(c, t , c->splat(f)); } in select()
1295 SI F32 select(I32 c, float t, F32 f) { return c->select(c, c->splat(t), f ); } in select()
1296 SI F32 select(I32 c, float t, float f) { return c->select(c, c->splat(t), c->splat(f)); } in select()