10 references to Lerp
System.Private.CoreLib (10)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (2)
1998return VectorMath.Lerp<Vector<double>, double>(x, y, amount); 2017return VectorMath.Lerp<Vector<float>, float>(x, y, amount);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128.cs (2)
2382return VectorMath.Lerp<Vector128<double>, double>(x, y, amount); 2400return VectorMath.Lerp<Vector128<float>, float>(x, y, amount);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256.cs (2)
2474return VectorMath.Lerp<Vector256<double>, double>(x, y, amount); 2492return VectorMath.Lerp<Vector256<float>, float>(x, y, amount);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512.cs (2)
2509return VectorMath.Lerp<Vector512<double>, double>(x, y, amount); 2527return VectorMath.Lerp<Vector512<float>, float>(x, y, amount);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (2)
2443return VectorMath.Lerp<Vector64<double>, double>(x, y, amount); 2462return VectorMath.Lerp<Vector64<float>, float>(x, y, amount);