13 references to DivRem
PresentationFramework (1)
MS\Internal\PtsHost\ListMarkerSourceInfo.cs (1)
198state.number = Math.DivRem(state.number, state.b, out int remainder) - state.disjoint;
System.Formats.Asn1 (3)
System\Formats\Asn1\AsnWriter.BitString.cs (1)
113int fullSegments = Math.DivRem(contentLength, MaxCERContentSize, out int lastContentSize);
System\Formats\Asn1\AsnWriter.cs (1)
542int fullSegments = Math.DivRem(
System\Formats\Asn1\AsnWriter.OctetString.cs (1)
111int fullSegments = Math.DivRem(payload.Length, MaxCERSegmentSize, out int lastSegmentSize);
System.Net.Ping (1)
src\libraries\Common\src\System\Net\NetworkInformation\UnixCommandLinePing.cs (1)
121timeout = Math.DivRem(timeout, millisInSecond, out int remainder);
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
355int wholeUInt32Count = Math.DivRem(byteCount, 4, out int unalignedBytes);
System.Security.Cryptography (7)
System\Security\Cryptography\Base64Transforms.cs (2)
33int inputBlocks = Math.DivRem(inputCount, InputBlockSize, out int inputRemainder); 71int inputBlocks = Math.DivRem(inputCount, InputBlockSize, out int inputRemainder);
System\Security\Cryptography\PemEncoding.cs (1)
324int lineCount = Math.DivRem(encodedDataLength, EncodedLineLength, out int remainder);
System\Security\Cryptography\SymmetricAlgorithm.cs (2)
323int wholeBlocks = Math.DivRem(plaintextLength, blockSizeBytes, out int remainder) * blockSizeBytes; 402int feedbackAligned = Math.DivRem(plaintextLength, feedbackSizeInBytes, out int remainder) * feedbackSizeInBytes;
System\Security\Cryptography\SymmetricPadding.cs (1)
16int wholeBlocks = Math.DivRem(plaintextLength, paddingSizeInBytes, out int remainder) * paddingSizeInBytes;
System\Security\Cryptography\X509Certificates\OpenSslX509ChainProcessor.cs (1)
1567bucket = Math.DivRem(val, 32, out int localBitNumber);