14 references to ScaleB
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.ScaleB.cs (1)
33public T Invoke(T x) => T.ScaleB(x, _n);
System.Private.CoreLib (13)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
858/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.ScaleB(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1602/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.ScaleB(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Rounding.cs (1)
65TNumber integerBoundary = TNumber.ScaleB(one, TNumber.NormalMantissaBits - 1);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
1209/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.ScaleB(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
1048/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.ScaleB(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
1059/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.ScaleB(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1052/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.ScaleB(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Random.cs (4)
458value = T.ScaleB(value, chunk) + T.CreateTruncating(randomChunk); 462Debug.Assert(value >= T.Zero && value < T.ScaleB(T.One, significandBitLength)); 463return T.ScaleB(value, -significandBitLength); 467return T.ScaleB(T.CreateTruncating(randomBits), -significandBitLength);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1113/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.ScaleB(TSelf, int)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
853/// <inheritdoc cref="IFloatingPointIeee754{TSelf}.ScaleB(TSelf, int)" />