diff --git a/NuGet.config b/NuGet.config index fe26d5228687..3e4c809db8a0 100644 --- a/NuGet.config +++ b/NuGet.config @@ -12,9 +12,6 @@ - - - diff --git a/eng/Version.Details.props b/eng/Version.Details.props index b61b6b094ada..db9508d7ed82 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,16 +6,16 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26365.101 - 11.0.0-beta.26365.101 - 0.11.5-preview.26365.101 - 11.0.0-beta.26365.101 - 11.0.0-preview.7.26365.101 - 11.0.0-preview.7.26365.101 - 11.0.0-preview.7.26365.101 - 11.0.100-preview.7.26365.101 - 11.0.0-preview.7.26365.101 - 11.0.100-preview.7.26365.101 + 11.0.0-beta.26426.102 + 11.0.0-beta.26426.102 + 0.11.5-preview.26426.102 + 11.0.0-beta.26426.102 + 11.0.0-rc.2.26426.102 + 11.0.0-rc.2.26426.102 + 11.0.0-rc.2.26426.102 + 11.0.100-rc.2.26426.102 + 11.0.0-rc.2.26426.102 + 11.0.100-rc.2.26426.102 26.0.11017 26.5.10315 @@ -30,7 +30,7 @@ This file should be imported by eng/Versions.props 26.5.10315 27.0.10241-xcode27.0 - 11.0.0-prerelease.26370.1 + 11.0.0-prerelease.26217.1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7c435dd18674..58eec86f4dc3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,29 +1,29 @@ - + https://github.com/dotnet/dotnet - cb8306a63c5cf24e9381108a3a9eb58907fd0f60 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - cb8306a63c5cf24e9381108a3a9eb58907fd0f60 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - cb8306a63c5cf24e9381108a3a9eb58907fd0f60 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - cb8306a63c5cf24e9381108a3a9eb58907fd0f60 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - cb8306a63c5cf24e9381108a3a9eb58907fd0f60 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - cb8306a63c5cf24e9381108a3a9eb58907fd0f60 + da377e2093fdde18a0d36429a2644638d07685f6 @@ -78,25 +78,25 @@ - + https://github.com/dotnet/dotnet - cb8306a63c5cf24e9381108a3a9eb58907fd0f60 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - cb8306a63c5cf24e9381108a3a9eb58907fd0f60 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - cb8306a63c5cf24e9381108a3a9eb58907fd0f60 + da377e2093fdde18a0d36429a2644638d07685f6 https://github.com/dotnet/xharness 866707736d49c2323628744716cda2475b3af9ee - + https://github.com/dotnet/dotnet - cb8306a63c5cf24e9381108a3a9eb58907fd0f60 + da377e2093fdde18a0d36429a2644638d07685f6 diff --git a/eng/common/Get-GitHubAppToken.ps1 b/eng/common/Get-GitHubAppToken.ps1 new file mode 100644 index 000000000000..9c7e3dcd6ac4 --- /dev/null +++ b/eng/common/Get-GitHubAppToken.ps1 @@ -0,0 +1,164 @@ +# Mints a short-lived GitHub App installation access token by signing a JWT +# with a private key stored in Azure Key Vault (RSA, RS256). The signed JWT is +# exchanged with the GitHub API for a token scoped to a single installation. +# +# Requirements: +# - A GitHub App whose private key has been uploaded into Key Vault as an RSA +# key (the PEM converted to a Key Vault *key*, NOT stored as a secret). +# - The caller (the federated Azure service connection used to run this script) +# must have the `Key Vault Crypto User` role (or at minimum the `Sign` +# action) on that key. +# - The App must be installed on the target organization/account +# (`InstallationOwner`) with the permissions/repositories it needs. +# +# Installation tokens (ghs_*) are exempt from the enterprise classic-PAT +# lifetime policy, which is why this replaces the long-lived PAT. + +[CmdletBinding()] +param( + # Name of the Key Vault that holds the GitHub App's RSA signing key. + [Parameter(Mandatory = $true)] + [string] $KeyVaultName, + + # Name of the RSA key inside the Key Vault (the App's private key). + [Parameter(Mandatory = $true)] + [string] $KeyName, + + # The GitHub App's Client ID (the value to put in the `iss` JWT claim). + [Parameter(Mandatory = $true)] + [string] $AppClientId, + + # Login of the organization or user account whose installation we should + # mint the token for (e.g. `dotnet`, `microsoft`). + [Parameter(Mandatory = $true)] + [string] $InstallationOwner, + + # Optional Azure DevOps pipeline variable name to set with the installation + # token (marked as a secret). When not specified, the token is written to + # stdout instead. + [Parameter(Mandatory = $false)] + [string] $OutputVariableName +) + +$ErrorActionPreference = 'Stop' +$PSNativeCommandUseErrorActionPreference = $true + +. $PSScriptRoot\pipeline-logging-functions.ps1 + +function ConvertTo-Base64Url([byte[]] $bytes) { + return [Convert]::ToBase64String($bytes).TrimEnd('=').Replace('+', '-').Replace('/', '_') +} + +# Build JWT header and payload. Use [ordered] hashtables so JSON +# serialization is deterministic. +$jwtHeader = [ordered]@{ + alg = 'RS256' + typ = 'JWT' +} +$now = [System.DateTimeOffset]::UtcNow +$jwtPayload = [ordered]@{ + iat = $now.AddMinutes(-1).ToUnixTimeSeconds() + exp = $now.AddMinutes(5).ToUnixTimeSeconds() + iss = $AppClientId +} + +$headerEncoded = ConvertTo-Base64Url ([System.Text.Encoding]::UTF8.GetBytes(($jwtHeader | ConvertTo-Json -Compress))) +$payloadEncoded = ConvertTo-Base64Url ([System.Text.Encoding]::UTF8.GetBytes(($jwtPayload | ConvertTo-Json -Compress))) +$signingInput = "$headerEncoded.$payloadEncoded" + +# Key Vault `sign` expects the *digest* (base64), not the raw bytes. +$sha256 = [System.Security.Cryptography.SHA256]::Create() +$digestBytes = $sha256.ComputeHash([System.Text.Encoding]::UTF8.GetBytes($signingInput)) +$digestBase64 = [Convert]::ToBase64String($digestBytes) + +Write-Host "Signing JWT with key '$KeyName' in vault '$KeyVaultName'..." +$previousNativeCommandErrorPreference = $PSNativeCommandUseErrorActionPreference +try { + # Azure CLI can emit non-fatal Python warnings to stderr even when signing succeeds. + # Use the exit code to determine success for this invocation. + $PSNativeCommandUseErrorActionPreference = $false + $signatureBase64 = az keyvault key sign ` + --vault-name $KeyVaultName ` + --name $KeyName ` + --algorithm RS256 ` + --digest $digestBase64 ` + --query signature ` + --output tsv ` + --only-show-errors + $signExitCode = $LASTEXITCODE +} +catch { + Write-PipelineTelemetryError -Category 'Build' -Message "Failed to sign the JWT via Key Vault (key '$KeyName', vault '$KeyVaultName'): $_. Verify the service connection identity has the 'Key Vault Crypto User' role (Sign action) on the key." + exit 1 +} +finally { + $PSNativeCommandUseErrorActionPreference = $previousNativeCommandErrorPreference +} +if ($signExitCode -ne 0 -or [string]::IsNullOrWhiteSpace($signatureBase64)) { + Write-PipelineTelemetryError -Category 'Build' -Message "'az keyvault key sign' exited with code $signExitCode for key '$KeyName' in vault '$KeyVaultName'. Verify the service connection identity has the 'Key Vault Crypto User' role (Sign action) on the key." + exit 1 +} +$signatureUrl = $signatureBase64.Trim().TrimEnd('=').Replace('+', '-').Replace('/', '_') +$jwt = "$signingInput.$signatureUrl" + +$headers = @{ + Authorization = "Bearer $jwt" + 'X-GitHub-Api-Version' = '2022-11-28' + Accept = 'application/vnd.github+json' + 'User-Agent' = 'dotnet-arcade-onelocbuild' +} + +Write-Host "Looking up installation for '$InstallationOwner'..." +try { + $installations = @() + $page = 1 + do { + # Assign the response before wrapping it in @(). PowerShell otherwise + # preserves a top-level JSON array as one nested pipeline object. + $pageResponse = Invoke-RestMethod ` + -Uri "https://api.github.com/app/installations?per_page=100&page=$page" ` + -Headers $headers ` + -Method Get + $pageInstallations = @($pageResponse) + $installations += $pageInstallations + $page++ + } while ($pageInstallations.Count -eq 100) +} +catch { + Write-PipelineTelemetryError -Category 'Build' -Message "Failed to list GitHub App installations: $_. The signed JWT may be invalid or the App's Client ID ('$AppClientId') may be incorrect." + exit 1 +} +$matchingInstallations = @($installations | Where-Object { $_.account.login -ieq $InstallationOwner }) +if ($matchingInstallations.Count -eq 0) { + $found = ($installations | ForEach-Object { $_.account.login }) -join ', ' + Write-PipelineTelemetryError -Category 'Build' -Message "No installation found for '$InstallationOwner'. App is installed on: $found" + exit 1 +} +if ($matchingInstallations.Count -ne 1) { + $matchingIds = ($matchingInstallations | ForEach-Object { $_.id }) -join ', ' + Write-PipelineTelemetryError -Category 'Build' -Message "Found multiple installations for '$InstallationOwner': $matchingIds" + exit 1 +} +$installation = $matchingInstallations[0] +Write-Host "Using installation $($installation.id) for '$($installation.account.login)'." + +try { + $tokenResponse = Invoke-RestMethod ` + -Uri "https://api.github.com/app/installations/$($installation.id)/access_tokens" ` + -Headers $headers ` + -Method Post ` + -ContentType 'application/json' +} +catch { + Write-PipelineTelemetryError -Category 'Build' -Message "Failed to mint an installation access token for '$InstallationOwner' (installation $($installation.id)): $_" + exit 1 +} + +Write-Host "Got installation token for '$InstallationOwner' (expires $($tokenResponse.expires_at))." +if ($OutputVariableName) { + Write-Host "Setting pipeline variable '$OutputVariableName'." + Write-Host "##vso[task.setvariable variable=$OutputVariableName;issecret=true]$($tokenResponse.token)" +} +else { + Write-Host $tokenResponse.token -ForegroundColor Green +} diff --git a/eng/common/SetupNugetSources.ps1 b/eng/common/SetupNugetSources.ps1 index b3bddff355e7..b7a3769364dd 100644 --- a/eng/common/SetupNugetSources.ps1 +++ b/eng/common/SetupNugetSources.ps1 @@ -11,7 +11,7 @@ # condition: eq(variables['Agent.OS'], 'Windows_NT') # inputs: # filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.ps1 -# arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config -Password $Env:Token +# arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config # env: # Token: $(InternalFeedToken) # @@ -29,12 +29,14 @@ [CmdletBinding()] param ( [Parameter(Mandatory = $true)][string]$ConfigFile, - $Password + # Keep the legacy name as an alias while callers migrate secrets to the Token environment variable. + [Alias("Password")]$Credential ) $ErrorActionPreference = "Stop" Set-StrictMode -Version 2.0 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 +$feedCredential = if ($env:Token) { $env:Token } else { $Credential } # This script only consumes helper functions from tools.ps1 to configure NuGet feeds. # Skip importing configure-toolset.ps1 so that repo-specific toolset setup (e.g. acquiring @@ -44,14 +46,14 @@ $disableConfigureToolsetImport = $true . $PSScriptRoot\tools.ps1 # Adds or enables the package source with the given name -function AddOrEnablePackageSource($sources, $disabledPackageSources, $SourceName, $SourceEndPoint, $creds, $Username, $pwd) { - if ($disabledPackageSources -eq $null -or -not (EnableInternalPackageSource -DisabledPackageSources $disabledPackageSources -Creds $creds -PackageSourceName $SourceName)) { - AddPackageSource -Sources $sources -SourceName $SourceName -SourceEndPoint $SourceEndPoint -Creds $creds -Username $userName -pwd $Password +function AddOrEnablePackageSource($sources, $disabledPackageSources, $SourceName, $SourceEndPoint, $creds, $Username, $credential) { + if ($disabledPackageSources -eq $null -or -not (EnableInternalPackageSource -DisabledPackageSources $disabledPackageSources -Creds $creds -PackageSourceName $SourceName -Credential $credential)) { + AddPackageSource -Sources $sources -SourceName $SourceName -SourceEndPoint $SourceEndPoint -Creds $creds -Username $Username -credential $credential } } # Add source entry to PackageSources -function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Username, $pwd) { +function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Username, $credential) { $packageSource = $sources.SelectSingleNode("add[@key='$SourceName']") if ($packageSource -eq $null) @@ -67,13 +69,13 @@ function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Usern Write-Host "Package source $SourceName already present and enabled." } - AddCredential -Creds $creds -Source $SourceName -Username $Username -pwd $pwd + AddCredential -Creds $creds -Source $SourceName -Username $Username -credential $credential } # Add a credential node for the specified source -function AddCredential($creds, $source, $username, $pwd) { +function AddCredential($creds, $source, $username, $credential) { # If no cred supplied, don't do anything. - if (!$pwd) { + if (!$credential) { return; } @@ -108,19 +110,19 @@ function AddCredential($creds, $source, $username, $pwd) { $sourceElement.AppendChild($passwordElement) | Out-Null } - $passwordElement.SetAttribute("value", $pwd) + $passwordElement.SetAttribute("value", $credential) } # Enable all darc-int package sources. -function EnableMaestroInternalPackageSources($DisabledPackageSources, $Creds) { +function EnableMaestroInternalPackageSources($DisabledPackageSources, $Creds, $Credential) { $maestroInternalSources = $DisabledPackageSources.SelectNodes("add[contains(@key,'darc-int')]") ForEach ($DisabledPackageSource in $maestroInternalSources) { - EnableInternalPackageSource -DisabledPackageSources $DisabledPackageSources -Creds $Creds -PackageSourceName $DisabledPackageSource.key + EnableInternalPackageSource -DisabledPackageSources $DisabledPackageSources -Creds $Creds -PackageSourceName $DisabledPackageSource.key -Credential $Credential } } # Enables an internal package source by name, if found. Returns true if the package source was found and enabled, false otherwise. -function EnableInternalPackageSource($DisabledPackageSources, $Creds, $PackageSourceName) { +function EnableInternalPackageSource($DisabledPackageSources, $Creds, $PackageSourceName, $Credential) { $DisabledPackageSource = $DisabledPackageSources.SelectSingleNode("add[@key='$PackageSourceName']") if ($DisabledPackageSource) { Write-Host "Enabling internal source '$($DisabledPackageSource.key)'." @@ -128,7 +130,7 @@ function EnableInternalPackageSource($DisabledPackageSources, $Creds, $PackageSo # Due to https://github.com/NuGet/Home/issues/10291, we must actually remove the disabled entries $DisabledPackageSources.RemoveChild($DisabledPackageSource) - AddCredential -Creds $creds -Source $DisabledPackageSource.Key -Username $userName -pwd $Password + AddCredential -Creds $creds -Source $DisabledPackageSource.Key -Username $userName -credential $credential return $true } return $false @@ -153,7 +155,7 @@ if ($sources -eq $null) { $creds = $null $feedSuffix = "v3/index.json" -if ($Password) { +if ($feedCredential) { $feedSuffix = "v2" # Looks for a node. Create it if none is found. $creds = $doc.DocumentElement.SelectSingleNode("packageSourceCredentials") @@ -169,7 +171,7 @@ $userName = "dn-bot" $disabledSources = $doc.DocumentElement.SelectSingleNode("disabledPackageSources") if ($disabledSources -ne $null) { Write-Host "Checking for any darc-int disabled package sources in the disabledPackageSources node" - EnableMaestroInternalPackageSources -DisabledPackageSources $disabledSources -Creds $creds + EnableMaestroInternalPackageSources -DisabledPackageSources $disabledSources -Creds $creds -Credential $feedCredential } $dotnetVersions = @('5','6','7','8','9','10') @@ -177,8 +179,8 @@ foreach ($dotnetVersion in $dotnetVersions) { $feedPrefix = "dotnet" + $dotnetVersion; $dotnetSource = $sources.SelectSingleNode("add[@key='$feedPrefix']") if ($dotnetSource -ne $null) { - AddOrEnablePackageSource -Sources $sources -DisabledPackageSources $disabledSources -SourceName "$feedPrefix-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal/nuget/$feedSuffix" -Creds $creds -Username $userName -pwd $Password - AddOrEnablePackageSource -Sources $sources -DisabledPackageSources $disabledSources -SourceName "$feedPrefix-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal-transport/nuget/$feedSuffix" -Creds $creds -Username $userName -pwd $Password + AddOrEnablePackageSource -Sources $sources -DisabledPackageSources $disabledSources -SourceName "$feedPrefix-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal/nuget/$feedSuffix" -Creds $creds -Username $userName -credential $feedCredential + AddOrEnablePackageSource -Sources $sources -DisabledPackageSources $disabledSources -SourceName "$feedPrefix-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal-transport/nuget/$feedSuffix" -Creds $creds -Username $userName -credential $feedCredential } } diff --git a/eng/common/SetupNugetSources.sh b/eng/common/SetupNugetSources.sh index 67e7e0942ca1..c3ae8ac054fe 100644 --- a/eng/common/SetupNugetSources.sh +++ b/eng/common/SetupNugetSources.sh @@ -24,7 +24,9 @@ # This logic is also abstracted into enable-internal-sources.yml. ConfigFile=$1 -CredToken=$2 +# Prefer the environment variable so credentials do not appear in process arguments. +# Retain the positional argument as a compatibility fallback for existing callers. +CredToken=${Token:-$2} NL='\n' TB=' ' diff --git a/eng/common/build.ps1 b/eng/common/build.ps1 index 2cbb725323e8..fee2f839919a 100644 --- a/eng/common/build.ps1 +++ b/eng/common/build.ps1 @@ -8,6 +8,7 @@ Param( [bool] $warnAsError = $true, [string] $warnNotAsError = '', [bool] $nodeReuse = $true, + [bool][Alias('mt')]$msbuildMultiThreaded = $false, [switch] $buildCheck = $false, [switch][Alias('r')]$restore, [switch] $deployDeps, @@ -23,6 +24,7 @@ Param( [switch] $clean, [switch][Alias('pb')]$productBuild, [switch]$fromVMR, + [switch]$disablePipelineSetResult, [switch][Alias('bl')]$binaryLog, [string][Alias('bln')]$binaryLogName = '', [switch][Alias('nobl')]$excludeCIBinarylog, @@ -78,8 +80,10 @@ function Print-Usage() { Write-Host " -excludePrereleaseVS Set to exclude build engines in prerelease versions of Visual Studio" Write-Host " -nativeToolsOnMachine Sets the native tools on machine environment variable (indicating that the script should use native tools on machine)" Write-Host " -nodeReuse Sets nodereuse msbuild parameter ('true' or 'false')" + Write-Host " -msbuildMultiThreaded Sets MSBuild's multi-threaded mode, i.e. the -mt switch ('1' or '0') (short: -mt)" Write-Host " -buildCheck Sets /check msbuild parameter" Write-Host " -fromVMR Set when building from within the VMR" + Write-Host " -disablePipelineSetResult Set to disable masking the actual exit code in the pipeline when the build fails" Write-Host "" Write-Host "Command line arguments not listed above are passed thru to msbuild." @@ -173,9 +177,8 @@ try { if (-not $excludeCIBinarylog) { $binaryLog = $true } - # Disable node reuse on CI unless explicitly opted in via MSBUILD_NODEREUSE_ENABLED. - # Internal testing only; this env var will be replaced with a switch (https://github.com/dotnet/arcade/issues/17013) and must not be depended on. - if ($env:MSBUILD_NODEREUSE_ENABLED -ne "1") { + # Node reuse isn't used on CI unless it was explicitly requested via -nodeReuse. + if (-not $PSBoundParameters.ContainsKey('nodeReuse')) { $nodeReuse = $false } } diff --git a/eng/common/build.sh b/eng/common/build.sh index 3a9fdcfd0f59..109d83ff73f7 100644 --- a/eng/common/build.sh +++ b/eng/common/build.sh @@ -40,12 +40,15 @@ usage() echo " --projects Project or solution file(s) to build" echo " --ci Set when running on CI server" echo " --excludeCIBinarylog Don't output binary log (short: -nobl)" + echo " --pipelinesLog Promote msbuild errors/warnings to Azure Pipelines timeline issues; defaults to on in CI (short: -pl)" echo " --prepareMachine Prepare machine for CI run, clean up processes after build" echo " --nodeReuse Sets nodereuse msbuild parameter ('true' or 'false')" + echo " --msbuildMultiThreaded Sets MSBuild's multi-threaded mode, i.e. the -mt switch ('true' or 'false') (short: --mt)" echo " --warnAsError Sets warnaserror msbuild parameter ('true' or 'false')" echo " --warnNotAsError Sets a semi-colon delimited list of warning codes that should not be treated as errors" echo " --buildCheck Sets /check msbuild parameter" echo " --fromVMR Set when building from within the VMR" + echo " --disablePipelineSetResult Set to disable masking the actual exit code in the pipeline when the build fails" echo "" echo "Command line arguments not listed above are passed thru to msbuild." echo "Arguments can also be passed in with a single hyphen." @@ -68,6 +71,7 @@ build=false source_build=false product_build=false from_vmr=false +disable_pipeline_set_result=false rebuild=false test=false integration_test=false @@ -81,11 +85,14 @@ clean=false warn_as_error=true warn_not_as_error='' -node_reuse=true +# Empty means "not specified"; tools.sh defaults these to on for local builds and off on CI. +node_reuse='' +msbuild_multi_threaded='' build_check=false binary_log=false binary_log_name='' exclude_ci_binary_log=false +pipelines_log=false projects='' configuration='' @@ -124,6 +131,9 @@ while [[ $# -gt 0 ]]; do -excludecibinarylog|-nobl) exclude_ci_binary_log=true ;; + -pipelineslog|-pl) + pipelines_log=true + ;; -restore|-r) restore=true ;; @@ -152,6 +162,9 @@ while [[ $# -gt 0 ]]; do -fromvmr|-from-vmr) from_vmr=true ;; + -disablepipelinesetresult|-disable-pipeline-set-result) + disable_pipeline_set_result=true + ;; -test|-t) test=true ;; @@ -189,6 +202,10 @@ while [[ $# -gt 0 ]]; do node_reuse=$2 shift ;; + -msbuildmultithreaded|-mt) + msbuild_multi_threaded=$2 + shift + ;; -buildcheck) build_check=true ;; @@ -213,11 +230,7 @@ if [[ -z "$configuration" ]]; then fi if [[ "$ci" == true ]]; then - # Disable node reuse on CI unless explicitly opted in via MSBUILD_NODEREUSE_ENABLED. - # Internal testing only; this env var will be replaced with a switch (https://github.com/dotnet/arcade/issues/17013) and must not be depended on. - if [[ "${MSBUILD_NODEREUSE_ENABLED:-}" != "1" ]]; then - node_reuse=false - fi + pipelines_log=true if [[ "$exclude_ci_binary_log" == false ]]; then binary_log=true fi diff --git a/eng/common/core-templates/job/helix-job-monitor.yml b/eng/common/core-templates/job/helix-job-monitor.yml index 96287e55a15b..81ecccdd17bd 100644 --- a/eng/common/core-templates/job/helix-job-monitor.yml +++ b/eng/common/core-templates/job/helix-job-monitor.yml @@ -26,6 +26,11 @@ parameters: type: string default: '' +# Whether failures in the monitor job should allow the pipeline to continue. +- name: continueOnError + type: boolean + default: false + # NuGet package id of the Helix job monitor tool. - name: toolPackageId type: string @@ -65,6 +70,29 @@ parameters: type: boolean default: true +# When true, allow the monitor to succeed when this stage produces no Helix jobs in any attempt. +# Forwarded as --allow-no-helix-jobs. +- name: allowNoHelixJobs + type: boolean + default: false + +# When true, test results are reported to Azure DevOps using the fully qualified test name +# (Namespace.Type.Method) as the stable automatedTestName and the visible title is qualified as +# well (--use-fully-qualified-test-name). Opt-in because it changes AzDO test identity and display; +# primarily useful for frameworks like MSTest whose display name is only the method name. +- name: useFullyQualifiedTestName + type: boolean + default: false + +# Controls per-test output attachments. Defaults to Failed. +- name: testResultAttachmentMode + type: string + default: Failed + values: + - Failed + - All + - None + # Advanced: optional pipeline artifact (produced earlier in this run) that contains the tool # nupkg. When set, the artifact is downloaded and the tool is installed from the nupkg into # a local tool-path; this bypasses the repo's .config/dotnet-tools.json manifest and is @@ -89,6 +117,7 @@ jobs: - job: HelixJobMonitor displayName: Monitor Helix Jobs timeoutInMinutes: ${{ parameters.timeoutInMinutes }} + continueOnError: ${{ parameters.continueOnError }} ${{ if ne(length(parameters.dependsOn), 0) }}: dependsOn: ${{ parameters.dependsOn }} ${{ if ne(parameters.condition, '') }}: @@ -96,9 +125,11 @@ jobs: pool: ${{ if eq(variables['System.TeamProject'], 'public') }}: name: $(DncEngPublicBuildPool) + os: linux demands: ImageOverride -equals build.azurelinux.3.amd64.open ${{ else }}: name: $(DncEngInternalBuildPool) + os: linux demands: ImageOverride -equals build.azurelinux.3.amd64 steps: - checkout: self @@ -176,24 +207,34 @@ jobs: set -euo pipefail toolArgs=( - --helix-base-uri '${{ parameters.helixBaseUri }}' - --polling-interval-seconds '${{ parameters.pollingIntervalSeconds }}' - --fail-on-failed-tests '${{ parameters.failWorkItemsWithFailedTests }}' - --max-wait-minutes "$((${{ parameters.timeoutInMinutes }} - 5))" # Set the tool's timeout slightly lower than the Azure DevOps job timeout to allow it to exit gracefully. - --stage-name '$(System.StageName)' + --helix-base-uri '${{ parameters.helixBaseUri }}' + --polling-interval-seconds '${{ parameters.pollingIntervalSeconds }}' + --fail-on-failed-tests '${{ parameters.failWorkItemsWithFailedTests }}' + --allow-no-helix-jobs '${{ parameters.allowNoHelixJobs }}' + --use-fully-qualified-test-name '${{ parameters.useFullyQualifiedTestName }}' + --max-wait-minutes "$((${{ parameters.timeoutInMinutes }} - 5))" # Set the tool's timeout slightly lower than the Azure DevOps job timeout to allow it to exit gracefully. + --stage-name '$(System.StageName)' + --stage-attempt '$(System.StageAttempt)' ) organization='${{ parameters.organization }}' repository='${{ parameters.repository }}' + testResultAttachmentMode='${{ parameters.testResultAttachmentMode }}' # Fall back to Azure DevOps-provided environment variables when the caller did not # supply organization / repository explicitly. BUILD_REPOSITORY_NAME is typically - # 'owner/repo' for GitHub-backed builds. + # 'owner/repo' for GitHub-backed builds and 'owner-repo' for internal builds. if [ -z "$organization" ] || [ -z "$repository" ]; then buildRepoName="${BUILD_REPOSITORY_NAME:-}" if [ -n "$buildRepoName" ] && [[ "$buildRepoName" == */* ]]; then repoOwner="${buildRepoName%%/*}" repoName="${buildRepoName#*/}" + elif [ -n "$buildRepoName" ] && [[ "$buildRepoName" == *-* ]]; then + repoOwner="${buildRepoName%%-*}" + repoName="${buildRepoName#*-}" + fi + + if [ -n "${repoOwner:-}" ] && [ -n "${repoName:-}" ]; then if [ -z "$organization" ]; then organization="$repoOwner"; fi if [ -z "$repository" ]; then repository="$repoName"; fi fi @@ -201,6 +242,9 @@ jobs: if [ -n "$organization" ]; then toolArgs+=( --organization "$organization" ); fi if [ -n "$repository" ]; then toolArgs+=( --repository "$repository" ); fi + if [ -n "$testResultAttachmentMode" ]; then + toolArgs+=( --test-result-attachment-mode "$testResultAttachmentMode" ) + fi # Build.Reason and Build.SourceBranch are required to derive the Helix source filter # the same way the Helix SDK submitter does (PR -> 'pr', internal -> 'official', diff --git a/eng/common/core-templates/job/onelocbuild.yml b/eng/common/core-templates/job/onelocbuild.yml index 2816d2905a06..ce077368e40d 100644 --- a/eng/common/core-templates/job/onelocbuild.yml +++ b/eng/common/core-templates/job/onelocbuild.yml @@ -14,6 +14,16 @@ parameters: # exist, and any pipeline that sets this to '' fall back to PAT-based auth via the CeapexPat parameter. CeapexServiceConnection: 'dnceng-onelocbuild-ceapex' + # GitHub App authentication for the OneLoc check-in PR. + # dnceng/internal and DevDiv/DevDiv are enabled by default with their project-scoped service + # connections. Other projects must explicitly opt in after provisioning equivalent infrastructure. + UseGitHubAppAuthentication: true + UseGitHubAppAuthenticationInOtherProjects: false + GitHubAppServiceConnection: 'dnceng-oneloc-githubapp' + GitHubAppClientId: 'Iv23lijBU8x3gc9lDOc9' + GitHubAppKeyVaultName: 'EngKeyVault' + GitHubAppKeyName: 'oneloc-localization-app-key' + SourcesDirectory: $(System.DefaultWorkingDirectory) CreatePr: true AutoCompletePr: false @@ -89,6 +99,23 @@ jobs: outputVariableName: 'CeapexEntraToken' condition: ${{ parameters.condition }} + # Mint a short-lived GitHub App installation token for the loc check-in PR. Use the connection + # provisioned in each supported project; other projects must explicitly opt in and override it. + - ${{ if and(eq(parameters.RepoType, 'gitHub'), eq(parameters.UseGitHubAppAuthentication, true), or(eq(variables['System.TeamProject'], 'internal'), eq(variables['System.TeamProject'], 'DevDiv'), eq(parameters.UseGitHubAppAuthenticationInOtherProjects, true))) }}: + - template: /eng/common/core-templates/steps/get-github-app-token.yml + parameters: + is1ESPipeline: ${{ parameters.is1ESPipeline }} + ${{ if and(eq(variables['System.TeamProject'], 'DevDiv'), eq(parameters.GitHubAppServiceConnection, 'dnceng-oneloc-githubapp')) }}: + azureSubscription: 'devdiv-oneloc-githubapp' + ${{ else }}: + azureSubscription: ${{ parameters.GitHubAppServiceConnection }} + keyVaultName: ${{ parameters.GitHubAppKeyVaultName }} + keyName: ${{ parameters.GitHubAppKeyName }} + appClientId: ${{ parameters.GitHubAppClientId }} + installationOwner: ${{ parameters.GitHubOrg }} + outputVariableName: 'GitHubAppInstallationToken' + condition: ${{ parameters.condition }} + - task: OneLocBuild@2 displayName: OneLocBuild env: @@ -110,7 +137,10 @@ jobs: patVariable: ${{ parameters.CeapexPat }} ${{ if eq(parameters.RepoType, 'gitHub') }}: repoType: ${{ parameters.RepoType }} - gitHubPatVariable: "${{ parameters.GithubPat }}" + ${{ if and(eq(parameters.UseGitHubAppAuthentication, true), or(eq(variables['System.TeamProject'], 'internal'), eq(variables['System.TeamProject'], 'DevDiv'), eq(parameters.UseGitHubAppAuthenticationInOtherProjects, true))) }}: + gitHubPatVariable: "$(GitHubAppInstallationToken)" + ${{ else }}: + gitHubPatVariable: "${{ parameters.GithubPat }}" ${{ if ne(parameters.MirrorRepo, '') }}: isMirrorRepoSelected: true gitHubOrganization: ${{ parameters.GitHubOrg }} diff --git a/eng/common/core-templates/job/publish-build-assets.yml b/eng/common/core-templates/job/publish-build-assets.yml index 4229288d3d38..330225ae0938 100644 --- a/eng/common/core-templates/job/publish-build-assets.yml +++ b/eng/common/core-templates/job/publish-build-assets.yml @@ -58,8 +58,6 @@ jobs: parameters: is1ESPipeline: ${{ parameters.is1ESPipeline }} - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - group: Publish-Build-Assets - - group: AzureDevOps-Artifact-Feeds-Pats - name: runCodesignValidationInjection value: false # unconditional - needed for logs publishing (redactor tool version) diff --git a/eng/common/core-templates/post-build/common-variables.yml b/eng/common/core-templates/post-build/common-variables.yml index db298ae16bae..a3a8480e254a 100644 --- a/eng/common/core-templates/post-build/common-variables.yml +++ b/eng/common/core-templates/post-build/common-variables.yml @@ -1,6 +1,4 @@ variables: - - group: Publish-Build-Assets - # Whether the build is internal or not - name: IsInternalBuild value: ${{ and(ne(variables['System.TeamProject'], 'public'), contains(variables['Build.SourceBranch'], 'internal')) }} diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index 9d951352696e..6dcee6664d68 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -236,6 +236,7 @@ stages: StageLabel: 'Validation' JobLabel: 'Signing' BinlogToolVersion: $(BinlogToolVersion) + enableInternalRuntimes: false # SourceLink validation has been removed — the underlying CLI tool # (targeting netcoreapp2.1) has not functioned for years. diff --git a/eng/common/core-templates/stages/renovate.yml b/eng/common/core-templates/stages/renovate.yml index edab28182585..cfa9683794ad 100644 --- a/eng/common/core-templates/stages/renovate.yml +++ b/eng/common/core-templates/stages/renovate.yml @@ -81,6 +81,8 @@ resources: extends: template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates parameters: + settings: + networkIsolationPolicy: Permissive pool: ${{ parameters.pool }} sdl: sourceAnalysisPool: ${{ parameters.sdlPool }} diff --git a/eng/common/core-templates/steps/enable-internal-sources.yml b/eng/common/core-templates/steps/enable-internal-sources.yml index 51af9a017091..843cdff7821e 100644 --- a/eng/common/core-templates/steps/enable-internal-sources.yml +++ b/eng/common/core-templates/steps/enable-internal-sources.yml @@ -19,7 +19,7 @@ steps: displayName: Setup Internal Feeds inputs: filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.ps1 - arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config -Password $Env:Token + arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config env: Token: ${{ parameters.legacyCredential }} - task: Bash@3 @@ -28,7 +28,7 @@ steps: inputs: targetType: inline script: | - "$(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh" "$(System.DefaultWorkingDirectory)/NuGet.config" "$Token" + "$(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh" "$(System.DefaultWorkingDirectory)/NuGet.config" env: Token: ${{ parameters.legacyCredential }} # If running on dnceng (internal project), just use the default behavior for NuGetAuthenticate. @@ -58,13 +58,17 @@ steps: displayName: Setup Internal Feeds inputs: filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.ps1 - arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config -Password $(dnceng-artifacts-feeds-read-access-token) + arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config + env: + Token: $(dnceng-artifacts-feeds-read-access-token) - task: Bash@3 condition: and(succeeded(), ne(variables['Agent.Os'], 'Windows_NT')) displayName: Setup Internal Feeds inputs: filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh - arguments: $(System.DefaultWorkingDirectory)/NuGet.config $(dnceng-artifacts-feeds-read-access-token) + arguments: $(System.DefaultWorkingDirectory)/NuGet.config + env: + Token: $(dnceng-artifacts-feeds-read-access-token) # This is required in certain scenarios to install the ADO credential provider. # It installed by default in some msbuild invocations (e.g. VS msbuild), but needs to be installed for others # (e.g. dotnet msbuild). diff --git a/eng/common/core-templates/steps/get-github-app-token.yml b/eng/common/core-templates/steps/get-github-app-token.yml new file mode 100644 index 000000000000..6d42a48d3c36 --- /dev/null +++ b/eng/common/core-templates/steps/get-github-app-token.yml @@ -0,0 +1,79 @@ +# Mints a short-lived GitHub App installation access token by signing a JWT +# with a private key stored in Azure Key Vault (RSA, RS256). The JWT is +# exchanged with the GitHub API for a token scoped to a single installation. +# +# Requirements (per GitHub App you want to authenticate as): +# - A GitHub App with its private key uploaded into Key Vault as an RSA key +# (PEM converted to a key, NOT stored as a secret). +# - The Azure service connection passed via `azureSubscription` must be +# granted the `Key Vault Crypto User` role (or at minimum `Sign` action) +# on that key. +# - The App must be installed on the target organization/account +# (`installationOwner`) with the permissions/repositories you need. +# +# Output: a secret pipeline variable named ${{ parameters.outputVariableName }} +# containing the installation access token. Token lifetime is ~1 hour and is +# automatically scrubbed from logs. Installation tokens are exempt from the +# enterprise classic-PAT lifetime policy. + +parameters: +# Azure DevOps service connection (federated) that can call +# `az keyvault key sign` on the App's signing key. +- name: azureSubscription + type: string + +# Name of the Key Vault that holds the GitHub App's RSA signing key. +- name: keyVaultName + type: string + +# Name of the RSA key inside the Key Vault (the App's private key). +- name: keyName + type: string + +# The GitHub App's Client ID (the value to put in the `iss` JWT claim). +# Prefer this over the numeric App ID; GitHub accepts either, but Client ID +# is the documented form going forward. +- name: appClientId + type: string + +# Login of the organization or user account whose installation we should +# mint the token for (e.g. `dotnet`, `microsoft`). +- name: installationOwner + type: string + +# Name of the pipeline variable that will receive the installation token. +- name: outputVariableName + type: string + +- name: is1ESPipeline + type: boolean + +- name: stepName + type: string + default: getGitHubAppInstallationToken + +- name: condition + type: string + default: '' + +- name: displayName + type: string + default: Get GitHub App installation token + +steps: +- task: AzureCLI@2 + displayName: ${{ parameters.displayName }} + name: ${{ parameters.stepName }} + ${{ if ne(parameters.condition, '') }}: + condition: ${{ parameters.condition }} + inputs: + azureSubscription: ${{ parameters.azureSubscription }} + scriptType: pscore + scriptLocation: inlineScript + inlineScript: | + & "$(System.DefaultWorkingDirectory)/eng/common/Get-GitHubAppToken.ps1" ` + -KeyVaultName '${{ parameters.keyVaultName }}' ` + -KeyName '${{ parameters.keyName }}' ` + -AppClientId '${{ parameters.appClientId }}' ` + -InstallationOwner '${{ parameters.installationOwner }}' ` + -OutputVariableName '${{ parameters.outputVariableName }}' diff --git a/eng/common/core-templates/steps/publish-logs.yml b/eng/common/core-templates/steps/publish-logs.yml index c496f3d0dc7a..244fef0890e9 100644 --- a/eng/common/core-templates/steps/publish-logs.yml +++ b/eng/common/core-templates/steps/publish-logs.yml @@ -5,6 +5,7 @@ parameters: # A default - in case value from eng/common/core-templates/post-build/common-variables.yml is not passed BinlogToolVersion: '1.0.11' is1ESPipeline: false + enableInternalRuntimes: true steps: - task: Powershell@2 @@ -25,15 +26,20 @@ steps: # Sensitive data can as well be added to $(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' # If the file exists - sensitive data for redaction will be sourced from it # (single entry per line, lines starting with '# ' are considered comments and skipped) - arguments: -InputPath '$(System.DefaultWorkingDirectory)/PostBuildLogs' - -BinlogToolVersion '${{parameters.BinlogToolVersion}}' - -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' - -runtimeSourceFeed https://ci.dot.net/internal - -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' - '$(publishing-dnceng-devdiv-code-r-build-re)' - '$(akams-client-id)' - '$(System.AccessToken)' - ${{parameters.CustomSensitiveDataList}} + ${{ if and(eq(parameters.enableInternalRuntimes, true), ne(variables['System.TeamProject'], 'public')) }}: + arguments: -InputPath '$(System.DefaultWorkingDirectory)/PostBuildLogs' + -BinlogToolVersion '${{parameters.BinlogToolVersion}}' + -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' + -runtimeSourceFeed https://ci.dot.net/internal + -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' + '$(System.AccessToken)' + ${{parameters.CustomSensitiveDataList}} + ${{ else }}: + arguments: -InputPath '$(System.DefaultWorkingDirectory)/PostBuildLogs' + -BinlogToolVersion '${{parameters.BinlogToolVersion}}' + -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' + '$(System.AccessToken)' + ${{parameters.CustomSensitiveDataList}} continueOnError: true condition: always() @@ -56,4 +62,3 @@ steps: condition: always() retryCountOnTaskFailure: 10 # for any files being locked isProduction: false # logs are non-production artifacts - diff --git a/eng/common/cross/build-rootfs.sh b/eng/common/cross/build-rootfs.sh index 453bb1ba5b1e..f58abbd2d10a 100644 --- a/eng/common/cross/build-rootfs.sh +++ b/eng/common/cross/build-rootfs.sh @@ -8,8 +8,8 @@ usage() echo "BuildArch can be: arm(default), arm64, loongarch64, ppc64le, riscv64, s390x, x64, x86" echo "CodeName - optional, Code name for Linux, can be: xenial(default), zesty, bionic, alpine" echo " for alpine can be specified with version: alpineX.YY or alpineedge" - echo " for FreeBSD can be: freebsd13, freebsd14" - echo " for OpenBSD can be: openbsd" + echo " for FreeBSD can be: freebsd14, freebsd15" + echo " for OpenBSD can be: openbsd7.8, openbsd7.9" echo " for illumos can be: illumos" echo " for Haiku can be: haiku." echo "lldbx.y - optional, LLDB version, can be: lldb3.9(default), lldb4.0, lldb5.0, lldb6.0 no-lldb. Ignored for alpine and FreeBSD" @@ -78,9 +78,9 @@ __AlpinePackages+=" krb5-dev" __AlpinePackages+=" openssl-dev" __AlpinePackages+=" zlib-dev" -__FreeBSDBase="13.5-RELEASE" -__FreeBSDPkg="2.7.5" -__FreeBSDABI="13" +__FreeBSDBase="14.4-RELEASE" +__FreeBSDPkg="2.8.0" +__FreeBSDABI="14" __FreeBSDPackages="libunwind" __FreeBSDPackages+=" icu" __FreeBSDPackages+=" libinotify" @@ -187,17 +187,14 @@ while :; do __AlpineArch=loongarch64 __QEMUArch=loongarch64 __UbuntuArch=loong64 - __UbuntuSuites=unreleased __LLDB_Package="liblldb-19-dev" ;; riscv64) __BuildArch=riscv64 __AlpineArch=riscv64 - __AlpinePackages="${__AlpinePackages// lldb-dev/}" __QEMUArch=riscv64 __UbuntuArch=riscv64 - __UbuntuPackages="${__UbuntuPackages// libunwind8-dev/}" - unset __LLDB_Package + __LLDB_Package="liblldb-19-dev" ;; ppc64le) __BuildArch=ppc64le @@ -291,6 +288,10 @@ while :; do __CodeName=noble __LLDB_Package="liblldb-19-dev" ;; + resolute) # Ubuntu 26.04 + __CodeName=resolute + __LLDB_Package="liblldb-21-dev" + ;; stretch) # Debian 9 __CodeName=stretch __LLDB_Package="liblldb-6.0-dev" @@ -331,7 +332,7 @@ while :; do # Debian-Ports architectures need different values case "$__UbuntuArch" in - amd64|arm64|armhf|i386|mips64el|ppc64el|riscv64|s390x) + amd64|arm64|armhf|i386|mips64el|ppc64el|riscv64|loong64|s390x) __KeyringFile="/usr/share/keyrings/debian-archive-keyring.gpg" if [[ -z "$__UbuntuRepo" ]]; then @@ -365,20 +366,29 @@ while :; do __AlpineVersion="$__AlpineMajorVersion.$__AlpineMinorVersion" fi ;; - freebsd13) + freebsd14) __CodeName=freebsd __SkipUnmount=1 ;; - freebsd14) + freebsd15) __CodeName=freebsd - __FreeBSDBase="14.3-RELEASE" - __FreeBSDABI="14" + __FreeBSDBase="15.1-RELEASE" + __FreeBSDABI="15" __SkipUnmount=1 ;; openbsd) __CodeName=openbsd __SkipUnmount=1 ;; + openbsd7.8) + __CodeName=openbsd + __SkipUnmount=1 + ;; + openbsd7.9) + __CodeName=openbsd + __OpenBSDVersion="7.9" + __SkipUnmount=1 + ;; illumos) __CodeName=illumos __SkipUnmount=1 @@ -453,9 +463,12 @@ case "$__AlpineVersion" in elif [[ "$__AlpineArch" == "x86" ]]; then __AlpineVersion=3.17 # minimum version that supports lldb-dev __AlpinePackages+=" llvm15-libs" - elif [[ "$__AlpineArch" == "riscv64" || "$__AlpineArch" == "loongarch64" ]]; then + elif [[ "$__AlpineArch" == "loongarch64" ]]; then __AlpineVersion=3.21 # minimum version that supports lldb-dev __AlpinePackages+=" llvm19-libs" + elif [[ "$__AlpineArch" == "riscv64" ]]; then + __AlpineVersion=3.22 # lldb-dev requires 3.21+, but 3.22+ provides the newer linux-headers needed for RISC-V extension probes + __AlpinePackages+=" llvm20-libs" elif [[ -n "$__AlpineMajorVersion" ]]; then # use whichever alpine version is provided and select the latest toolchain libs __AlpineLlvmLibsLookup=1 diff --git a/eng/common/cross/toolchain.cmake b/eng/common/cross/toolchain.cmake index ead7fe3ef263..70b71395e3ba 100644 --- a/eng/common/cross/toolchain.cmake +++ b/eng/common/cross/toolchain.cmake @@ -87,6 +87,8 @@ elseif(TARGET_ARCH_NAME STREQUAL "ppc64le") set(CMAKE_SYSTEM_PROCESSOR ppc64le) if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/powerpc64le-alpine-linux-musl) set(TOOLCHAIN "powerpc64le-alpine-linux-musl") + elseif(FREEBSD) + set(TOOLCHAIN "powerpc64le-unknown-freebsd14") else() set(TOOLCHAIN "powerpc64le-linux-gnu") endif() diff --git a/eng/common/msbuild.ps1 b/eng/common/msbuild.ps1 index 495d533a9098..b6dfb570ea50 100644 --- a/eng/common/msbuild.ps1 +++ b/eng/common/msbuild.ps1 @@ -3,6 +3,7 @@ Param( [string] $verbosity = 'minimal', [bool] $warnAsError = $true, [bool] $nodeReuse = $true, + [bool][Alias('mt')]$msbuildMultiThreaded = $false, [switch] $ci, [switch] $prepareMachine, [switch] $excludePrereleaseVS, @@ -13,12 +14,9 @@ Param( . $PSScriptRoot\tools.ps1 try { - if ($ci) { - # Disable node reuse on CI unless explicitly opted in via MSBUILD_NODEREUSE_ENABLED. - # Internal testing only; this env var will be replaced with a switch (https://github.com/dotnet/arcade/issues/17013) and must not be depended on. - if ($env:MSBUILD_NODEREUSE_ENABLED -ne "1") { - $nodeReuse = $false - } + # Node reuse isn't used on CI unless it was explicitly requested via -nodeReuse. + if ($ci -and -not $PSBoundParameters.ContainsKey('nodeReuse')) { + $nodeReuse = $false } MSBuild @extraArgs diff --git a/eng/common/msbuild.sh b/eng/common/msbuild.sh index 333be3232fcf..a40c101237b1 100644 --- a/eng/common/msbuild.sh +++ b/eng/common/msbuild.sh @@ -14,7 +14,9 @@ scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" verbosity='minimal' warn_as_error=true -node_reuse=true +# Empty means "not specified"; tools.sh defaults these to on for local builds and off on CI. +node_reuse='' +msbuild_multi_threaded='' prepare_machine=false extra_args='' @@ -33,6 +35,10 @@ while (($# > 0)); do node_reuse=$2 shift 2 ;; + --msbuildmultithreaded|--mt) + msbuild_multi_threaded=$2 + shift 2 + ;; --ci) ci=true shift 1 @@ -50,13 +56,5 @@ done . "$scriptroot/tools.sh" -if [[ "$ci" == true ]]; then - # Disable node reuse on CI unless explicitly opted in via MSBUILD_NODEREUSE_ENABLED. - # Internal testing only; this env var will be replaced with a switch (https://github.com/dotnet/arcade/issues/17013) and must not be depended on. - if [[ "${MSBUILD_NODEREUSE_ENABLED:-}" != "1" ]]; then - node_reuse=false - fi -fi - MSBuild $extra_args ExitWithExitCode 0 diff --git a/eng/common/native/init-os-and-arch.sh b/eng/common/native/init-os-and-arch.sh index 38921d4338f7..62d62fed522a 100644 --- a/eng/common/native/init-os-and-arch.sh +++ b/eng/common/native/init-os-and-arch.sh @@ -27,6 +27,10 @@ if [ "$os" = "sunos" ]; then os="solaris" fi CPUName=$(isainfo -n) +elif [ "$os" = "freebsd" ]; then + # FreeBSD's `uname -m` is the machine class ("powerpc" for every PowerPC + # variant); `uname -p` gives the specific processor (e.g. powerpc64le). + CPUName=$(uname -p) else # For the rest of the operating systems, use uname(1) to determine what the CPU is. CPUName=$(uname -m) @@ -75,7 +79,7 @@ case "$CPUName" in arch=s390x ;; - ppc64le) + ppc64le|powerpc64le) arch=ppc64le ;; *) diff --git a/eng/common/sdk-task.ps1 b/eng/common/sdk-task.ps1 index 68119de603ef..8d72d803dd2a 100644 --- a/eng/common/sdk-task.ps1 +++ b/eng/common/sdk-task.ps1 @@ -4,7 +4,9 @@ Param( [string] $task, [string] $verbosity = 'minimal', [string] $msbuildEngine = $null, - [switch] $restore, + # Restore defaults to on; -restore is retained only so existing consumers that pass it don't break. Use -norestore to opt out. + [switch] $restore = $true, + [switch] $norestore, [switch] $prepareMachine, [switch][Alias('nobl')]$excludeCIBinaryLog, [switch]$noWarnAsError, @@ -18,12 +20,23 @@ $ci = $true $binaryLog = if ($excludeCIBinaryLog) { $false } else { $true } $warnAsError = if ($noWarnAsError) { $false } else { $true } +# Reconcile the restore state before importing tools.ps1: it reads $restore at import time to +# decide whether toolset/SDK acquisition installs. -norestore must win so that skipping restore +# also skips toolset initialization, not just the explicit Restore build below. +if ($norestore) { $restore = $false } + +# sdk-task runs a standalone Arcade SDK task and does not need repo-specific toolset setup. +# Skip importing configure-toolset.ps1 so its side effects (e.g. a repo's configure-toolset.ps1 +# calling exit) don't terminate this script before the task runs. +$disableConfigureToolsetImport = $true + . $PSScriptRoot\tools.ps1 function Print-Usage() { Write-Host "Common settings:" Write-Host " -task Name of Arcade task (name of a project in toolset directory of the Arcade SDK package)" - Write-Host " -restore Restore dependencies" + Write-Host " -restore (Legacy) Restore runs by default; retained for backward compatibility. Use -norestore to skip" + Write-Host " -norestore Skip restoring dependencies" Write-Host " -verbosity Msbuild verbosity: q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic]" Write-Host " -help Print help and exit" Write-Host "" diff --git a/eng/common/sdk-task.sh b/eng/common/sdk-task.sh index 1cf71bb2aea4..a7f1ba060d73 100644 --- a/eng/common/sdk-task.sh +++ b/eng/common/sdk-task.sh @@ -3,7 +3,8 @@ show_usage() { echo "Common settings:" echo " --task Name of Arcade task (name of a project in toolset directory of the Arcade SDK package)" - echo " --restore Restore dependencies" + echo " --restore (Legacy) Restore runs by default; retained for backward compatibility. Use --norestore to skip" + echo " --norestore Skip restoring dependencies" echo " --verbosity Msbuild verbosity: q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic]" echo " --help Print help and exit" echo "" @@ -50,10 +51,11 @@ binary_log=true configuration="Debug" verbosity="minimal" exclude_ci_binary_log=false -restore=false +# restore defaults to on; --restore is retained only so existing consumers that pass it don't break. Use --norestore to opt out. +restore=true help=false properties='' -warnAsError=true +warn_as_error=true while (($# > 0)); do lowerI="$(echo $1 | tr "[:upper:]" "[:lower:]")" @@ -63,7 +65,10 @@ while (($# > 0)); do shift 2 ;; --restore) - restore=true + shift 1 + ;; + --norestore) + restore=false shift 1 ;; --verbosity) @@ -75,8 +80,8 @@ while (($# > 0)); do exclude_ci_binary_log=true shift 1 ;; - --noWarnAsError) - warnAsError=false + --nowarnaserror) + warn_as_error=false shift 1 ;; --help) @@ -97,6 +102,11 @@ if $help; then exit 0 fi +# sdk-task runs a standalone Arcade SDK task and does not need repo-specific toolset setup. +# Skip importing configure-toolset.sh so its side effects (e.g. a repo's configure-toolset.sh +# calling exit) don't terminate this script before the task runs. +disable_configure_toolset_import=1 + . "$scriptroot/tools.sh" InitializeToolset diff --git a/eng/common/templates-official/steps/get-github-app-token.yml b/eng/common/templates-official/steps/get-github-app-token.yml new file mode 100644 index 000000000000..c89f3641a4db --- /dev/null +++ b/eng/common/templates-official/steps/get-github-app-token.yml @@ -0,0 +1,7 @@ +steps: +- template: /eng/common/core-templates/steps/get-github-app-token.yml + parameters: + is1ESPipeline: true + + ${{ each parameter in parameters }}: + ${{ parameter.key }}: ${{ parameter.value }} diff --git a/eng/common/templates/steps/get-github-app-token.yml b/eng/common/templates/steps/get-github-app-token.yml new file mode 100644 index 000000000000..79e182c64167 --- /dev/null +++ b/eng/common/templates/steps/get-github-app-token.yml @@ -0,0 +1,7 @@ +steps: +- template: /eng/common/core-templates/steps/get-github-app-token.yml + parameters: + is1ESPipeline: false + + ${{ each parameter in parameters }}: + ${{ parameter.key }}: ${{ parameter.value }} diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 6f664ad890ba..e84033dad90c 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -13,6 +13,12 @@ # Set to true to output binary log from msbuild. Note that emitting binary log slows down the build. [bool]$binaryLog = if (Test-Path variable:binaryLog) { $binaryLog } else { $ci -and !$excludeCIBinarylog } +# Set to true to use the pipelines logger which will enable Azure logging output. +# https://github.com/Microsoft/azure-pipelines-tasks/blob/master/docs/authoring/commands.md +# This flag is meant as a temporary opt-in for the feature while validating it across +# our consumers. It will be deleted in the future. +[bool]$pipelinesLog = if (Test-Path variable:pipelinesLog) { $pipelinesLog } else { $ci } + # Turns on machine preparation/clean up code that changes the machine state (e.g. kills build processes). [bool]$prepareMachine = if (Test-Path variable:prepareMachine) { $prepareMachine } else { $false } @@ -25,11 +31,16 @@ # Set to true to reuse msbuild nodes. Recommended to not reuse on CI. [bool]$nodeReuse = if (Test-Path variable:nodeReuse) { $nodeReuse } else { !$ci } +# Set to true to build with MSBuild's multi-threaded mode (-mt). Opt-in for now, so off unless it was +# explicitly requested. It's intended to become the default for local builds once it has proven out. +[bool]$msbuildMultiThreaded = if (Test-Path variable:msbuildMultiThreaded) { $msbuildMultiThreaded } else { $false } + # Configures warning treatment in msbuild. [bool]$warnAsError = if (Test-Path variable:warnAsError) { $warnAsError } else { $true } # Specifies semi-colon delimited list of warning codes that should not be treated as errors. -[string]$warnNotAsError = if (Test-Path variable:warnNotAsError) { $warnNotAsError } else { '' } +# Defaults to NuGet Audit warning codes NU1901-NU1904. +[string]$warnNotAsError = if ((Test-Path variable:warnNotAsError) -and $warnNotAsError) { $warnNotAsError } else { 'NU1901;NU1902;NU1903;NU1904' } # Specifies which msbuild engine to use for build: 'vs', 'dotnet' or unspecified (determined based on presence of tools.vs in global.json). [string]$msbuildEngine = if (Test-Path variable:msbuildEngine) { $msbuildEngine } else { $null } @@ -65,6 +76,8 @@ $ErrorActionPreference = 'Stop' # True when the build is running within the VMR. [bool]$fromVMR = if (Test-Path variable:fromVMR) { $fromVMR } else { $false } +[bool]$disablePipelineSetResult = if (Test-Path variable:disablePipelineSetResult) { $disablePipelineSetResult } else { $false } + function Create-Directory ([string[]] $path) { New-Item -Path $path -Force -ItemType 'Directory' | Out-Null } @@ -713,7 +726,17 @@ function InitializeToolset() { $downloadArgs += "--configfile" $downloadArgs += $nugetConfig } - DotNet @downloadArgs + + # 'dotnet package download' fails outright if any source in the repo's NuGet.config is + # unavailable (for example a transport feed that was decommissioned after a release). The + # Arcade SDK is always published to the public dotnet-eng feed, so if the config-driven + # download fails, retry once against that feed directly (which ignores the other sources) + # before giving up, so a single dead source doesn't block the build. + $downloadExitCode = DotNet -ignoreFailure @downloadArgs + if ($downloadExitCode) { + Write-Host "Restoring the Arcade SDK from the configured sources failed; retrying from the public dotnet-eng feed." + DotNet @downloadArgs --source "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" + } $packageDir = Join-Path $nugetPackageCachePath (Join-Path 'microsoft.dotnet.arcade.sdk' $toolsetVersion) $packageToolsetDir = Join-Path $packageDir 'toolset' @@ -775,10 +798,23 @@ function MSBuild() { $buildTool = InitializeBuildTool + if ($pipelinesLog) { + $toolsetBuildProject = InitializeToolset + $basePath = Split-Path -parent $toolsetBuildProject + $selectedPath = Join-Path $basePath (Join-Path 'net' 'Microsoft.DotNet.ArcadeLogging.dll') + + # Only inject the logger when it's present. A last-known-good Arcade used to bootstrap + # the build may not ship the logger yet, so its absence must not be a hard error. + # Specify the logger type explicitly so loading is deterministic. + if (Test-Path $selectedPath) { + $args += "/logger:Microsoft.DotNet.ArcadeLogging.PipelinesLogger,$selectedPath" + } + } + $cmdArgs = "$($buildTool.Command) /m /nologo /clp:Summary /v:$verbosity /nr:$nodeReuse /p:ContinuousIntegrationBuild=$ci" - # Add -mt flag for MSBuild multithreaded mode if enabled via environment variable - if ($env:MSBUILD_MT_ENABLED -eq "1") { + # Build with MSBuild's multi-threaded mode. + if ($msbuildMultiThreaded) { $cmdArgs += ' -mt' } @@ -790,7 +826,8 @@ function MSBuild() { } if ($warnAsError -and $warnNotAsError) { - $cmdArgs += " /warnnotaserror:$warnNotAsError /p:AdditionalWarningsNotAsErrors=$warnNotAsError" + $escapedWarnNotAsError = $warnNotAsError -replace ';', '%3B' + $cmdArgs += " /warnnotaserror:$warnNotAsError /p:AdditionalWarningsNotAsErrors=$escapedWarnNotAsError" } foreach ($arg in $args) { @@ -813,8 +850,8 @@ function MSBuild() { Write-Host "Build failed with exit code $exitCode. Check errors above." -ForegroundColor Red # When running on Azure Pipelines, override the returned exit code to avoid double logging. - # Skip this when the build is a child of the VMR build. - if ($ci -and $env:SYSTEM_TEAMPROJECT -ne $null -and !$fromVMR) { + # Skip this when the build is a child of the VMR build, or when -disablePipelineSetResult is set so the real exit code propagates. + if ($ci -and $env:SYSTEM_TEAMPROJECT -ne $null -and !$fromVMR -and !$disablePipelineSetResult) { Write-PipelineSetResult -Result "Failed" -Message "msbuild execution failed." # Exiting with an exit code causes the azure pipelines task to log yet another "noise" error # The above Write-PipelineSetResult will cause the task to be marked as failure without adding yet another error @@ -829,7 +866,7 @@ function MSBuild() { # Executes a dotnet command with arguments passed to the function. # Terminates the script if the command fails. # -function DotNet() { +function DotNet([switch]$ignoreFailure) { $dotnetRoot = InitializeDotNetCli -install:$restore $dotnetPath = Join-Path $dotnetRoot (GetExecutableFileName 'dotnet') @@ -848,9 +885,15 @@ function DotNet() { $exitCode = Exec-Process $dotnetPath $cmdArgs if ($exitCode -ne 0) { + # When -ignoreFailure is set, return the exit code to the caller so it can implement + # its own fallback logic instead of terminating the script. + if ($ignoreFailure) { + return $exitCode + } + Write-Host "dotnet command failed with exit code $exitCode. Check errors above." -ForegroundColor Red - if ($ci -and $env:SYSTEM_TEAMPROJECT -ne $null -and !$fromVMR) { + if ($ci -and $env:SYSTEM_TEAMPROJECT -ne $null -and !$fromVMR -and !$disablePipelineSetResult) { Write-PipelineSetResult -Result "Failed" -Message "dotnet command execution failed." ExitWithExitCode 0 } else { diff --git a/eng/common/tools.sh b/eng/common/tools.sh index 347a29b8884f..4d14b100b063 100644 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -1,5 +1,15 @@ #!/usr/bin/env bash +# Normalizes the value of a boolean build argument. Accepts 1/0 in addition to true/false so that +# the same value works with the PowerShell scripts, whose [bool] parameters only bind 1/0. +function NormalizeBoolArg { + case "${1:-}" in + 1) echo true ;; + 0) echo false ;; + *) echo "${1:-}" ;; + esac +} + # Initialize variables if they aren't already defined. # CI mode - set to true on CI server for PR validation build or official build. @@ -8,6 +18,16 @@ ci=${ci:-false} # Build mode source_build=${source_build:-false} +# Set to true to use the pipelines logger which will enable Azure logging output. +# https://github.com/Microsoft/azure-pipelines-tasks/blob/master/docs/authoring/commands.md +# This flag is meant as a temporary opt-in for the feature while validating it across +# our consumers. It will be deleted in the future. +if [[ "$ci" == true ]]; then + pipelines_log=${pipelines_log:-true} +else + pipelines_log=${pipelines_log:-false} +fi + # Build configuration. Common values include 'Debug' and 'Release', but the repository may use other names. configuration=${configuration:-'Debug'} @@ -33,17 +53,25 @@ restore=${restore:-true} verbosity=${verbosity:-'minimal'} # Set to true to reuse msbuild nodes. Recommended to not reuse on CI. +node_reuse=$(NormalizeBoolArg "${node_reuse:-}") if [[ "$ci" == true ]]; then node_reuse=${node_reuse:-false} else node_reuse=${node_reuse:-true} fi +# Set to true to build with MSBuild's multi-threaded mode (-mt). Opt-in for now, so off unless it was +# explicitly requested. It's intended to become the default for local builds once it has proven out. +msbuild_multi_threaded=$(NormalizeBoolArg "${msbuild_multi_threaded:-}") +msbuild_multi_threaded=${msbuild_multi_threaded:-false} + # Configures warning treatment in msbuild. +warn_as_error=$(NormalizeBoolArg "${warn_as_error:-}") warn_as_error=${warn_as_error:-true} # Specifies semi-colon delimited list of warning codes that should not be treated as errors. -warn_not_as_error=${warn_not_as_error:-''} +# Defaults to NuGet Audit warning codes NU1901-NU1904. +warn_not_as_error="${warn_not_as_error:-NU1901;NU1902;NU1903;NU1904}" # True to attempt using .NET Core already that meets requirements specified in global.json # installed on the machine instead of downloading one. @@ -68,6 +96,8 @@ runtime_source_feed_key=${runtime_source_feed_key:-''} # True when the build is running within the VMR. from_vmr=${from_vmr:-false} +disable_pipeline_set_result=${disable_pipeline_set_result:-false} + # Resolve any symlinks in the given path. function ResolvePath { local path=$1 @@ -442,7 +472,16 @@ function InitializeToolset { if [[ -n "$nuget_config" ]]; then download_args+=("--configfile" "$nuget_config") fi - DotNet "${download_args[@]}" + + # 'dotnet package download' fails outright if any source in the repo's NuGet.config is + # unavailable (for example a transport feed that was decommissioned after a release). The + # Arcade SDK is always published to the public dotnet-eng feed, so if the config-driven + # download fails, retry once against that feed directly (which ignores the other sources) + # before giving up, so a single dead source doesn't block the build. + if ! DotNet true "${download_args[@]}"; then + echo "Restoring the Arcade SDK from the configured sources failed; retrying from the public dotnet-eng feed." + DotNet "${download_args[@]}" --source "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" + fi local package_dir="$_InitializeNuGetPackageCachePath/microsoft.dotnet.arcade.sdk/$toolset_version" @@ -481,6 +520,15 @@ function StopProcesses { } function DotNet { + # When the first argument is 'true' or 'false' it controls the exit behavior on failure: + # 'true' returns the dotnet exit code to the caller (so it can implement its own fallback), + # while the default terminates the script. Any other first argument is treated as a dotnet argument. + local ignore_failure=false + if [[ "$1" == 'true' || "$1" == 'false' ]]; then + ignore_failure="$1" + shift + fi + InitializeDotNetCli $restore local dotnet_path="$_InitializeDotNetCli/dotnet" @@ -489,9 +537,14 @@ function DotNet { "$dotnet_path" "$@" || { local exit_code=$? + + if [[ "$ignore_failure" == true ]]; then + return $exit_code + fi + echo "dotnet command failed with exit code $exit_code. Check errors above." - if [[ "$ci" == true && -n ${SYSTEM_TEAMPROJECT:-} && "$from_vmr" != true ]]; then + if [[ "$ci" == true && -n ${SYSTEM_TEAMPROJECT:-} && "$from_vmr" != true && "$disable_pipeline_set_result" != true ]]; then Write-PipelineSetResult -result "Failed" -message "dotnet command execution failed." ExitWithExitCode 0 else @@ -510,6 +563,21 @@ function MSBuild { InitializeBuildTool + local logger_switch=() + if [[ "$pipelines_log" == true ]]; then + InitializeToolset + + local toolset_dir="${_InitializeToolset%/*}" + local selectedPath="$toolset_dir/net/Microsoft.DotNet.ArcadeLogging.dll" + + # Only inject the logger when it's present. A last-known-good Arcade used to bootstrap + # the build may not ship the logger yet, so its absence must not be a hard error. + # Specify the logger type explicitly so loading is deterministic. + if [[ -f "$selectedPath" ]]; then + logger_switch=("-logger:Microsoft.DotNet.ArcadeLogging.PipelinesLogger,$selectedPath") + fi + fi + local warnaserror_switch="" if [[ $warn_as_error == true ]]; then warnaserror_switch="/warnaserror" @@ -525,8 +593,8 @@ function MSBuild { echo "Build failed with exit code $exit_code. Check errors above." # When running on Azure Pipelines, override the returned exit code to avoid double logging. - # Skip this when the build is a child of the VMR build. - if [[ "$ci" == true && -n ${SYSTEM_TEAMPROJECT:-} && "$from_vmr" != true ]]; then + # Skip this when the build is a child of the VMR build, or when -disablePipelineSetResult is set so the real exit code propagates. + if [[ "$ci" == true && -n ${SYSTEM_TEAMPROJECT:-} && "$from_vmr" != true && "$disable_pipeline_set_result" != true ]]; then Write-PipelineSetResult -result "Failed" -message "msbuild execution failed." # Exiting with an exit code causes the azure pipelines task to log yet another "noise" error # The above Write-PipelineSetResult will cause the task to be marked as failure without adding yet another error @@ -537,18 +605,18 @@ function MSBuild { } } - # Add -mt flag for MSBuild multithreaded mode if enabled via environment variable + # Build with MSBuild's multi-threaded mode. local mt_switch="" - if [[ "${MSBUILD_MT_ENABLED:-}" == "1" ]]; then + if [[ "$msbuild_multi_threaded" == true ]]; then mt_switch="-mt" fi local warnnotaserror_switch="" if [[ -n "$warn_not_as_error" && "$warn_as_error" == true ]]; then - warnnotaserror_switch="/warnnotaserror:$warn_not_as_error /p:AdditionalWarningsNotAsErrors=$warn_not_as_error" + warnnotaserror_switch="/warnnotaserror:$warn_not_as_error /p:AdditionalWarningsNotAsErrors=${warn_not_as_error//;/%3B}" fi - RunBuildTool "$_InitializeBuildToolCommand" /m /nologo /clp:Summary /v:$verbosity /nr:$node_reuse $warnaserror_switch $mt_switch $warnnotaserror_switch /p:TreatWarningsAsErrors=$warn_as_error /p:ContinuousIntegrationBuild=$ci "$@" + RunBuildTool "$_InitializeBuildToolCommand" /m /nologo /clp:Summary /v:$verbosity /nr:$node_reuse $warnaserror_switch $mt_switch $warnnotaserror_switch ${logger_switch[@]+"${logger_switch[@]}"} /p:TreatWarningsAsErrors=$warn_as_error /p:ContinuousIntegrationBuild=$ci "$@" } function GetDarc { diff --git a/global.json b/global.json index f1678b7cb5cb..2cc673b4fc94 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "11.0.100-preview.7.26365.101", + "version": "11.0.100-rc.2.26426.102", "paths": [ "builds/downloads/dotnet", "$host$" @@ -8,9 +8,9 @@ "errorMessage": "The .NET SDK could not be found, please run 'make dotnet -C builds'." }, "tools": { - "dotnet": "11.0.100-preview.7.26365.101" + "dotnet": "11.0.100-rc.2.26426.102" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26365.101" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26426.102" } } diff --git a/msbuild/Xamarin.MacDev.Tasks/Tasks/XamarinBuildTask.cs b/msbuild/Xamarin.MacDev.Tasks/Tasks/XamarinBuildTask.cs index 3327f3a06d07..3488936ddd66 100644 --- a/msbuild/Xamarin.MacDev.Tasks/Tasks/XamarinBuildTask.cs +++ b/msbuild/Xamarin.MacDev.Tasks/Tasks/XamarinBuildTask.cs @@ -33,10 +33,6 @@ protected string ComputeValueUsingTarget (string computeValueTarget, string targ net{TargetFramework.Version}-{PlatformName} - - - - true {computeValueTarget} diff --git a/tests/Directory.Build.props b/tests/Directory.Build.props index ef1f3f98f1a3..e368fb9daaf4 100644 --- a/tests/Directory.Build.props +++ b/tests/Directory.Build.props @@ -3,9 +3,5 @@ $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)')) - - - - true diff --git a/tests/dotnet/UnitTests/DotNetWatchTest.cs b/tests/dotnet/UnitTests/DotNetWatchTest.cs index 9e0daebd8c86..682c88504f53 100644 --- a/tests/dotnet/UnitTests/DotNetWatchTest.cs +++ b/tests/dotnet/UnitTests/DotNetWatchTest.cs @@ -55,6 +55,30 @@ void DotNetWatchImpl (ApplePlatform platform, bool useMonoRuntime, bool enableSa { Configuration.IgnoreIfIgnoredPlatform (platform); + // Hot Reload with CoreCLR is currently broken on the mobile platforms: the app crashes with + // "System.BadImageFormatException: Bad IL range" right after the update has been applied. + // Desktop macOS is not affected. + // + // That error comes from CoreCLR's PEAssembly::GetIL, which means the runtime looked up the + // updated method's IL in the *baseline* PE image using the RVA from the metadata delta - and + // that RVA is delta-relative, so it's out of range in the baseline image. In other words the + // runtime didn't pick up the delta IL when compiling the updated method. + // + // This is fallout from https://github.com/dotnet/runtime/pull/130159 ("Use CodeVersioning for + // EnC"), which made the delta IL be stored as an ILCodeVersion: only + // VersionedPrepareCodeConfig::GetILHeader returns it, while the plain + // PrepareCodeConfig::GetILHeader falls back to MethodDesc::GetILHeader (= the baseline RVA + // lookup that ends up throwing). Something on the mobile-only code path prepares the updated + // method with a non-versioned config. The mobile difference isn't code versioning as such + // (that's enabled everywhere, since FEATURE_METADATA_UPDATER turns on FEATURE_CODE_VERSIONING), + // but rather that FEATURE_DYNAMIC_CODE_COMPILED is off for Apple mobile, so there's no JIT and + // these apps run the CoreCLR interpreter instead. + // + // Tracked upstream here: https://github.com/dotnet/runtime/issues/132804 + // Re-enable these test cases once the fix has flowed into our runtime. + if (!useMonoRuntime && platform != ApplePlatform.MacOSX) + Assert.Ignore ("Hot Reload with CoreCLR is currently broken on this platform: https://github.com/dotnet/macios/issues/26470"); + var projectPath = GetProjectPath ("HotReloadTestApp", platform: platform); var projectDirectory = Path.GetDirectoryName (projectPath)!; diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt index 3f7562da28c3..a10d7ed66fec 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-preservedapis.txt @@ -1944,10 +1944,14 @@ System.Private.CoreLib.dll:/__StaticArrayInitTypeS System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::2F3EFC9595514E83DED03093C4F3E3C781A650E1AAB8CA350537CD1A47E1EE8E System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::F8919BA0F50317229A66884F9CE4E004B755100D8A4000A28D468B0627472F4D +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128_Align=8 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128_Align=8 ::4EFE2D3A64964C812874074A7FEE8B5A2B4425064A81A9D44C0E7A3025C716388 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316 ::A72EB4166B1B422391E0F6E483BEF87AE75881E655BCB152E37F3D9688B2AA71 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2 ::7BEC6AD454781FDCD8D475B3418629CBABB3BF9CA66FA80009D608A1A60D06962 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8 ::DD471F12FFA94CC557A02A91C2CBB95F551AB28C8BBF297B2F953B8886BCCF6D8 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552 ::3A2A62DD9288C777284B5B71FB3EFB59CFDF6BF81068A16795E6155DB8BFA701 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=16 @@ -1986,6 +1990,8 @@ System.Private.CoreLib.dll:/__StaticArrayInitTypeS System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=256_Align=8 ::40BC6C50487BFA78776C051EF7555931E4F15E5CEE9481EB280B1C2630B906B48 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=2 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=2 ::374EE580A55269D9E298B7EFD9DB0DFE1798E301679B89E48D722345EB74B59B2 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=4 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=4 ::2106C9B520169CFE919ED2D7BAE85C716D866D8DC2716F286D9C95511F1B9B014 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4 ::74BCD6ED20AF2231F2BB1CDE814C5F4FF48E54BAC46029EEF90DDF4A208E2B204 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32 @@ -2403,6 +2409,7 @@ System.Private.CoreLib.dll:method System.Void *(System.Byte&) System.RuntimeType System.Private.CoreLib.dll:method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::OnCompletedValueTaskSource System.Private.CoreLib.dll:method System.Void *(System.Object,System.Int16,System.Byte&) System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::_getResult System.Private.CoreLib.dll:method System.Void *(System.Object) System.RuntimeType/ActivatorCache::_pfnRefCtor +System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.Continuation,System.Int32,System.Action) System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterContinuation System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*) System.Runtime.CompilerServices.PortableTailCallFrame::NextCall System.Private.CoreLib.dll:method System.Void *(System.Threading.Tasks.Task,System.Byte&) System.Runtime.CompilerServices.RuntimeAsyncTaskContinuation::_getResult System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle @@ -2428,7 +2435,7 @@ System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Path() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_SupportsRandomAccess() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_ThreadPoolBinding() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Type() -System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeek() +System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeekCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileLength() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileTypeCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetThreadPoolValueTaskSource() @@ -2877,6 +2884,9 @@ System.Private.CoreLib.dll:System.Boolean System.Collections.ObjectModel.ReadOnl System.Private.CoreLib.dll:System.Boolean System.DateTimeRawInfo::hasSameDateAndTimeSeparators System.Private.CoreLib.dll:System.Boolean System.Decimal/DecCalc::IsNegative() System.Private.CoreLib.dll:System.Boolean System.DefaultBinder/BinderState::_isParamArray +System.Private.CoreLib.dll:System.Boolean System.Delegate::HasSingleTarget() +System.Private.CoreLib.dll:System.Boolean System.Delegate::IsClosed() +System.Private.CoreLib.dll:System.Boolean System.Delegate::IsUnmanagedFunctionPtr() System.Private.CoreLib.dll:System.Boolean System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Diagnostics.Debugger::IsAttached() System.Private.CoreLib.dll:System.Boolean System.Diagnostics.StackFrame::_isLastFrameFromForeignExceptionStackTrace @@ -3001,9 +3011,10 @@ System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::ForceI System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::FormatJapaneseFirstYearAsANumber() System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::ShowILOffsets() System.Private.CoreLib.dll:System.Boolean System.Memory`1::IsEmpty() -System.Private.CoreLib.dll:System.Boolean System.MulticastDelegate::HasSingleTarget() System.Private.CoreLib.dll:System.Boolean System.Nullable`1::hasValue System.Private.CoreLib.dll:System.Boolean System.Nullable`1::HasValue() +System.Private.CoreLib.dll:System.Boolean System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Number/DecodedDecimalIeee754`1::Signed() System.Private.CoreLib.dll:System.Boolean System.Number/NumberBuffer::HasNonZeroTail System.Private.CoreLib.dll:System.Boolean System.Number/NumberBuffer::IsNegative System.Private.CoreLib.dll:System.Boolean System.Numerics.Vector::IsHardwareAccelerated() @@ -3115,8 +3126,9 @@ System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_r System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_suppressContextualReflectionContext System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_throwOnError System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::SupportsUnboundGenerics() -System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncMethodBuilderCore::TrackAsyncMethodCompletion() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::CurrentContinuationCompleted +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::CurrentContinuationResumes +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::ReachedLastContinuation System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::_finalized System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::_invalid System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::HasCapacity() @@ -3721,12 +3733,12 @@ System.Private.CoreLib.dll:System.Byte modreq(System.Runtime.CompilerServices.Is System.Private.CoreLib.dll:System.Byte System.Byte::m_value System.Private.CoreLib.dll:System.Byte System.Byte::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Byte System.Collections.Generic.InsertionBehavior::value__ System.Private.CoreLib.dll:System.Byte System.DateTimeParse/DS::value__ System.Private.CoreLib.dll:System.Byte System.Decimal::Scale() -System.Private.CoreLib.dll:System.Byte System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::value__ System.Private.CoreLib.dll:System.Byte System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::value__ System.Private.CoreLib.dll:System.Byte System.DTSubStringType::value__ System.Private.CoreLib.dll:System.Byte System.GCMemoryInfoData::_compacted @@ -3771,12 +3783,17 @@ System.Private.CoreLib.dll:System.Byte System.TimeZoneInfo/TZifType::Abbreviatio System.Private.CoreLib.dll:System.Byte System.TimeZoneInfo/TZVersion::value__ System.Private.CoreLib.dll:System.Byte.CompareTo(System.Byte) System.Private.CoreLib.dll:System.Byte.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Byte.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Byte.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Byte.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Byte.DivRem(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Equals(System.Byte) System.Private.CoreLib.dll:System.Byte.Equals(System.Object) System.Private.CoreLib.dll:System.Byte.GetHashCode() System.Private.CoreLib.dll:System.Byte.GetTypeCode() +System.Private.CoreLib.dll:System.Byte.IsOddInteger(System.Byte) +System.Private.CoreLib.dll:System.Byte.LeadingZeroCount(System.Byte) +System.Private.CoreLib.dll:System.Byte.Log2(System.Byte) System.Private.CoreLib.dll:System.Byte.Max(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Min(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -3812,32 +3829,42 @@ System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastFrom(Sys System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastFrom(System.UInt64) System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastToUInt32(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IAdditionOperators.op_Addition(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_GreaterThan(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_LessThan(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IDivisionOperators.op_Division(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IEqualityOperators.op_Equality(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IEqualityOperators.op_Inequality(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Byte.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Byte.System.Numerics.IMultiplyOperators.op_Multiply(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsFinite(System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsInfinity(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsNaN(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsNegative(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsZero(System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToChecked`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.IShiftOperators.op_LeftShift(System.Byte, System.Int32) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IShiftOperators.op_RightShift(System.Byte, System.Int32) System.Private.CoreLib.dll:System.Byte.System.Numerics.ISubtractionOperators.op_Subtraction(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Byte) System.Private.CoreLib.dll:System.Byte.ToString() System.Private.CoreLib.dll:System.Byte.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Byte.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Byte.TryConvertFromChecked`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryConvertFromSaturating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryConvertFromTruncating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -3906,6 +3933,7 @@ System.Private.CoreLib.dll:System.Char System.Buffers.RangeCharSearchValues`1::_ System.Private.CoreLib.dll:System.Char System.Char::m_value System.Private.CoreLib.dll:System.Char System.Char::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Char System.CharEnumerator::Current() @@ -3986,27 +4014,39 @@ System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastFrom(Sys System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastFrom(System.UInt64) System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastToUInt32(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IAdditionOperators.op_Addition(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryInteger.GetByteCount() +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryInteger.LeadingZeroCount(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryNumber.Log2(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_GreaterThan(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_LessThan(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IDivisionOperators.op_Division(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IEqualityOperators.op_Equality(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IEqualityOperators.op_Inequality(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Char.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Char.System.Numerics.IMultiplyOperators.op_Multiply(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsFinite(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsInfinity(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsNaN(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsNegative(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsOddInteger(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsZero(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToChecked`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.IShiftOperators.op_LeftShift(System.Char, System.Int32) +System.Private.CoreLib.dll:System.Char.System.Numerics.IShiftOperators.op_RightShift(System.Char, System.Int32) System.Private.CoreLib.dll:System.Char.System.Numerics.ISubtractionOperators.op_Subtraction(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Char) System.Private.CoreLib.dll:System.Char.ToString() @@ -5195,6 +5235,7 @@ System.Private.CoreLib.dll:System.Decimal System.Decimal::MultiplicativeIdentity System.Private.CoreLib.dll:System.Decimal System.Decimal::NegativeOne System.Private.CoreLib.dll:System.Decimal System.Decimal::One System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Decimal System.Decimal::Zero @@ -5218,6 +5259,7 @@ System.Private.CoreLib.dll:System.Decimal..ctor(System.UInt64) System.Private.CoreLib.dll:System.Decimal.AsMutable(System.Decimal&) System.Private.CoreLib.dll:System.Decimal.CompareTo(System.Decimal) System.Private.CoreLib.dll:System.Decimal.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Decimal.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Decimal.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Decimal.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Decimal.DecDivMod1E9(System.Decimal&) @@ -5232,8 +5274,10 @@ System.Private.CoreLib.dll:System.Decimal.get_Scale() System.Private.CoreLib.dll:System.Decimal.GetHashCode() System.Private.CoreLib.dll:System.Decimal.GetTypeCode() System.Private.CoreLib.dll:System.Decimal.IsNegative(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.IsOddInteger(System.Decimal) System.Private.CoreLib.dll:System.Decimal.IsValid(System.Int32) System.Private.CoreLib.dll:System.Decimal.op_Addition(System.Decimal, System.Decimal) +System.Private.CoreLib.dll:System.Decimal.op_Division(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Equality(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Explicit(System.Decimal) => System.Byte System.Private.CoreLib.dll:System.Decimal.op_Explicit(System.Decimal) => System.Char @@ -5262,6 +5306,7 @@ System.Private.CoreLib.dll:System.Decimal.op_Implicit(System.UInt64) => System.D System.Private.CoreLib.dll:System.Decimal.op_Inequality(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_LessThan(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_LessThanOrEqual(System.Decimal, System.Decimal) +System.Private.CoreLib.dll:System.Decimal.op_Multiply(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Subtraction(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_UnaryNegation(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -5285,11 +5330,14 @@ System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt16(System.IF System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Decimal.System.Numerics.IMinMaxValue.get_MinValue() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsFinite(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsInfinity(System.Decimal) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsNaN(System.Decimal) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsZero(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertToChecked`1(System.Decimal, out TOther&) @@ -5310,40 +5358,77 @@ System.Private.CoreLib.dll:System.Decimal.ToUInt64(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Truncate(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Truncate(System.Decimal&) System.Private.CoreLib.dll:System.Decimal.TryConvertFrom`1(TOther, out System.Decimal&) +System.Private.CoreLib.dll:System.Decimal.TryConvertFromChecked`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.TryConvertTo`1(System.Decimal, out TOther&) System.Private.CoreLib.dll:System.Decimal.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal/DecCalc +System.Private.CoreLib.dll:System.Decimal/DecCalc..cctor() +System.Private.CoreLib.dll:System.Decimal/DecCalc.Add32To96(System.Decimal/DecCalc/Buf12&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecAddSub(System.Decimal/DecCalc&, System.Decimal/DecCalc&, System.Boolean) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecDivMod1E9(System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPoint`1(System.UInt64, System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPointExact(System.UInt64, System.UInt32, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div128By64(System.Decimal/DecCalc/Buf16&, System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div128By96(System.Decimal/DecCalc/Buf16&, System.Decimal/DecCalc/Buf12&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div64By32(System.UInt64, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96By32(System.Decimal/DecCalc/Buf12&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96By64(System.Decimal/DecCalc/Buf12&, System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96ByConst(System.UInt64&, System.UInt32&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DivByConst(System.UInt32*, System.UInt32, out System.UInt32&, out System.UInt32&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Equals(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.get_High() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_IsNegative() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Mid() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Scale() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_UInt32Powers10() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_UInt64Powers10() System.Private.CoreLib.dll:System.Decimal/DecCalc.GetHashCode(System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale(System.Decimal/DecCalc/Buf12&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale(System.Decimal/DecCalc/Buf16&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale64(System.Decimal/DecCalc/Buf12&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.InternalRound(System.Decimal/DecCalc&, System.UInt32, System.MidpointRounding) +System.Private.CoreLib.dll:System.Decimal/DecCalc.OverflowUnscale(System.Decimal/DecCalc/Buf12&, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Decimal/DecCalc.Pow5(System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.RoundShiftRightEven(System.UInt128, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.ScaleResult(System.Decimal/DecCalc/Buf24*, System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.SearchScale(System.UInt64, System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.set_High(System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Low(System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Low64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Mid(System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.Unscale(System.UInt32&, System.UInt64&, System.Int32&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarCyFromDec(System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecCmp(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecCmpSub(System.Decimal&, System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecDiv(System.Decimal/DecCalc&, System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromFloat`1(TNumber, out System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromR4(System.Single, out System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromR8(System.Double, out System.Decimal/DecCalc&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecMul(System.Decimal/DecCalc&, System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarR4FromDec(System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarR8FromDec(System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 System.Decimal/DecCalc/Buf16::High96 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 System.Decimal/DecCalc/Buf16::Low96 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.get_High64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.set_High64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.set_Low64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.get_High64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.set_High64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.set_Low64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24 System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_High64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_Low64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_Mid64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl..ctor(System.UInt32, System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl[] System.Decimal/DecCalc::PowerOvflValues System.Private.CoreLib.dll:System.DefaultBinder System.Private.CoreLib.dll:System.DefaultBinder System.DefaultBinder::Instance System.Private.CoreLib.dll:System.DefaultBinder..cctor() @@ -5387,47 +5472,74 @@ System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/ System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/Primitives::UInt32 System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/Primitives::UInt64 System.Private.CoreLib.dll:System.Delegate +System.Private.CoreLib.dll:System.Delegate System.Delegate/Wrapper::Value System.Private.CoreLib.dll:System.Delegate System.Threading.CancellationTokenSource/CallbackNode::Callback System.Private.CoreLib.dll:System.Delegate System.Threading.Tasks.Task::m_action System.Private.CoreLib.dll:System.Delegate System.Threading.Thread/StartHelper::_start -System.Private.CoreLib.dll:System.Delegate.g____PInvoke|19_0(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags) -System.Private.CoreLib.dll:System.Delegate.g____PInvoke|32_0(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.g____PInvoke|34_0(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Delegate/BindToMethodDetails*) +System.Private.CoreLib.dll:System.Delegate.g____PInvoke|39_0(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, System.Delegate/BindToMethodDetails*) System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Runtime.CompilerServices.MethodTable*, System.IntPtr) System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Object, System.IRuntimeMethodInfo, System.RuntimeType, System.DelegateBindingFlags) -System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags) +System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags, System.Runtime.CompilerServices.ObjectHandleOnStack, out System.Delegate/BindToMethodDetails&) System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) -System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) +System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) +System.Private.CoreLib.dll:System.Delegate.CtorClosed(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorClosedStatic(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleClosedStatic(System.Object, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleOpen(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleVirtualDispatch(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorOpen(System.Object, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorRTClosed(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorVirtualDispatch(System.Object, System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.Delegate.DelegateConstruct(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.DeleteFromInvocationList(System.ReadOnlySpan`1, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Delegate.EnumerateInvocationList`1(TDelegate) System.Private.CoreLib.dll:System.Delegate.Equals(System.Object) -System.Private.CoreLib.dll:System.Delegate.FindMethodHandle() -System.Private.CoreLib.dll:System.Delegate.FindMethodHandle(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.get_HasSingleTarget() +System.Private.CoreLib.dll:System.Delegate.get_IsClosed() +System.Private.CoreLib.dll:System.Delegate.get_IsUnmanagedFunctionPtr() System.Private.CoreLib.dll:System.Delegate.get_Method() +System.Private.CoreLib.dll:System.Delegate.get_MethodDesc() System.Private.CoreLib.dll:System.Delegate.GetHashCode() System.Private.CoreLib.dll:System.Delegate.GetInvokeMethod() System.Private.CoreLib.dll:System.Delegate.GetInvokeMethod(System.Runtime.CompilerServices.MethodTable*) +System.Private.CoreLib.dll:System.Delegate.GetMethodDesc() +System.Private.CoreLib.dll:System.Delegate.GetMethodDesc(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.GetMethodImpl() +System.Private.CoreLib.dll:System.Delegate.GetMethodImplUncached() System.Private.CoreLib.dll:System.Delegate.GetMulticastInvoke() System.Private.CoreLib.dll:System.Delegate.GetMulticastInvoke(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.GetMulticastInvokeSlow(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.GetTargetForSingleCastInstanceDelegate() System.Private.CoreLib.dll:System.Delegate.InitializeVirtualCallStub(System.IntPtr) System.Private.CoreLib.dll:System.Delegate.InitializeVirtualCallStub(System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.InternalAlloc(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.InternalAlloc(System.RuntimeType) -System.Private.CoreLib.dll:System.Delegate.InternalEqualMethodHandles(System.Delegate, System.Delegate) -System.Private.CoreLib.dll:System.Delegate.InternalEqualMethodHandles(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.InternalEqualTypes(System.Object, System.Object) +System.Private.CoreLib.dll:System.Delegate.NewMulticastDelegate(System.Delegate/Wrapper[], System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Delegate.op_Equality(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.Remove(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.RemoveImpl(System.Delegate) +System.Private.CoreLib.dll:System.Delegate.ThrowNullThisInDelegateToInstance() +System.Private.CoreLib.dll:System.Delegate.TryGetAt(System.Int32) +System.Private.CoreLib.dll:System.Delegate.TryGetInvocations(out System.ReadOnlySpan`1&) +System.Private.CoreLib.dll:System.Delegate.TrySetSlot(System.Delegate&, System.Delegate) +System.Private.CoreLib.dll:System.Delegate/BindToMethodDetails System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1 System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1..ctor(System.MulticastDelegate) System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.get_Current() System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.GetEnumerator() System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.MoveNext() +System.Private.CoreLib.dll:System.Delegate/Wrapper +System.Private.CoreLib.dll:System.Delegate/Wrapper..ctor(System.Delegate) +System.Private.CoreLib.dll:System.Delegate/Wrapper.Equals(System.Delegate/Wrapper) +System.Private.CoreLib.dll:System.Delegate/Wrapper.Equals(System.Object) +System.Private.CoreLib.dll:System.Delegate/Wrapper.GetHashCode() System.Private.CoreLib.dll:System.DelegateBindingFlags System.Private.CoreLib.dll:System.DelegateBindingFlags System.DelegateBindingFlags::CaselessMatching System.Private.CoreLib.dll:System.DelegateBindingFlags System.DelegateBindingFlags::ClosedDelegateOnly @@ -5654,20 +5766,6 @@ System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource System.Diagnostics.Tracing.NativeRuntimeEventSource::Log System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource..cctor() System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource..ctor() -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.IntPtr, System.IntPtr, System.UInt64) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStart(System.Threading.Lock) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStop(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStop(System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogContentionStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.IntPtr, System.IntPtr, System.UInt64) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogContentionStop(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogWaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.IntPtr, System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogWaitHandleWaitStop(System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.IntPtr, System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.Object) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStop(System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::Managed -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::Native System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::MonitorWait System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::Unknown @@ -5693,9 +5791,11 @@ System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatingPointIeee754.PositiveInfinity() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Double System.NotFiniteNumberException::_offendingNumber +System.Private.CoreLib.dll:System.Double System.Number/SqrtCoefficients::C System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_date System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_r8 System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.NFloat::_value @@ -5721,9 +5821,11 @@ System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalDays() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalHours() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalMilliseconds() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalSeconds() +System.Private.CoreLib.dll:System.Double.Abs(System.Double) System.Private.CoreLib.dll:System.Double.CompareTo(System.Double) System.Private.CoreLib.dll:System.Double.CompareTo(System.Object) System.Private.CoreLib.dll:System.Double.ConvertToIntegerNative`1(System.Double) +System.Private.CoreLib.dll:System.Double.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Double.CreateDouble(System.Boolean, System.UInt16, System.UInt64) System.Private.CoreLib.dll:System.Double.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Double.CreateTruncating`1(TOther) @@ -5732,14 +5834,19 @@ System.Private.CoreLib.dll:System.Double.Equals(System.Object) System.Private.CoreLib.dll:System.Double.GetHashCode() System.Private.CoreLib.dll:System.Double.GetTypeCode() System.Private.CoreLib.dll:System.Double.IsFinite(System.Double) +System.Private.CoreLib.dll:System.Double.IsInfinity(System.Double) +System.Private.CoreLib.dll:System.Double.IsInteger(System.Double) System.Private.CoreLib.dll:System.Double.IsNaN(System.Double) System.Private.CoreLib.dll:System.Double.IsNaNOrZero(System.Double) System.Private.CoreLib.dll:System.Double.IsNegative(System.Double) +System.Private.CoreLib.dll:System.Double.IsOddInteger(System.Double) System.Private.CoreLib.dll:System.Double.IsZero(System.Double) +System.Private.CoreLib.dll:System.Double.Log2(System.Double) System.Private.CoreLib.dll:System.Double.Max(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.Min(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_Equality(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_GreaterThan(System.Double, System.Double) +System.Private.CoreLib.dll:System.Double.op_GreaterThanOrEqual(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_Inequality(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_LessThan(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_LessThanOrEqual(System.Double, System.Double) @@ -5789,15 +5896,20 @@ System.Private.CoreLib.dll:System.Double.System.IConvertible.ToUInt64(System.IFo System.Private.CoreLib.dll:System.Double.System.Numerics.IAdditionOperators.op_Addition(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Double, System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.IDivisionOperators.op_Division(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NaN() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NegativeInfinity() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NegativeZero() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_PositiveInfinity() System.Private.CoreLib.dll:System.Double.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Double.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Double.System.Numerics.IMultiplyOperators.op_Multiply(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.IsZero(System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertToChecked`1(System.Double, out TOther&) @@ -5808,6 +5920,7 @@ System.Private.CoreLib.dll:System.Double.System.Numerics.IUnaryNegationOperators System.Private.CoreLib.dll:System.Double.ToString() System.Private.CoreLib.dll:System.Double.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Double.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Double.Truncate(System.Double) System.Private.CoreLib.dll:System.Double.TryConvertFrom`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.TryConvertTo`1(System.Double, out TOther&) System.Private.CoreLib.dll:System.Double.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -6279,11 +6392,6 @@ System.Private.CoreLib.dll:System.GC/GC_ALLOC_FLAGS System.GC/GC_ALLOC_FLAGS::GC System.Private.CoreLib.dll:System.GC/GC_ALLOC_FLAGS System.GC/GC_ALLOC_FLAGS::GC_ALLOC_ZEROING_OPTIONAL System.Private.CoreLib.dll:System.GC/GCHeapHardLimitInfo System.Private.CoreLib.dll:System.GCGenerationInfo -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo0 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo1 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo2 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo3 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo4 System.Private.CoreLib.dll:System.GCKind System.Private.CoreLib.dll:System.GCKind System.GCKind::Any System.Private.CoreLib.dll:System.GCKind System.GCKind::Background @@ -7220,11 +7328,12 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globaliz System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::InvariantInfo() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..cctor() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData) -System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|58_0(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|60_0(System.IFormatProvider) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|167_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|166_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|165_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.AllowHyphenDuringParsing() +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CreateUtf8Cache(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyGroupSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencySymbolTChar`1() @@ -7247,6 +7356,7 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PercentPosi System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetFormat(System.Type) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetUtf8Span(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.InitializeInvariantAndNegativeSignFlags() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NaNSymbolTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NegativeInfinitySymbolTChar`1() @@ -7272,7 +7382,6 @@ System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalizatio System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowLeadingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowParentheses System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowThousands -System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingInvalidCharacters System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingSign System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::Any @@ -7681,6 +7790,7 @@ System.Private.CoreLib.dll:System.Guid/ParseFailure System.Guid/ParseFailure::Ov System.Private.CoreLib.dll:System.Guid/ParseFailure System.Guid/ParseFailure::Overflow_UInt32 System.Private.CoreLib.dll:System.Half System.Private.CoreLib.dll:System.Half System.Half::MaxValue() +System.Private.CoreLib.dll:System.Half System.Half::MinValue() System.Private.CoreLib.dll:System.Half System.Half::NaN() System.Private.CoreLib.dll:System.Half System.Half::NegativeInfinity() System.Private.CoreLib.dll:System.Half System.Half::NegativeZero() @@ -7692,6 +7802,7 @@ System.Private.CoreLib.dll:System.Half..ctor(System.UInt16) System.Private.CoreLib.dll:System.Half.AreZero(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.CompareTo(System.Half) System.Private.CoreLib.dll:System.Half.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Half.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Half.CreateDoubleNaN(System.Boolean, System.UInt64) System.Private.CoreLib.dll:System.Half.CreateHalfNaN(System.Boolean, System.UInt64) System.Private.CoreLib.dll:System.Half.CreateSaturating`1(TOther) @@ -7702,6 +7813,7 @@ System.Private.CoreLib.dll:System.Half.ExtractBiasedExponentFromBits(System.UInt System.Private.CoreLib.dll:System.Half.ExtractTrailingSignificandFromBits(System.UInt16) System.Private.CoreLib.dll:System.Half.get_BiasedExponent() System.Private.CoreLib.dll:System.Half.get_MaxValue() +System.Private.CoreLib.dll:System.Half.get_MinValue() System.Private.CoreLib.dll:System.Half.get_NaN() System.Private.CoreLib.dll:System.Half.get_NegativeInfinity() System.Private.CoreLib.dll:System.Half.get_NegativeZero() @@ -7709,12 +7821,16 @@ System.Private.CoreLib.dll:System.Half.get_One() System.Private.CoreLib.dll:System.Half.get_PositiveInfinity() System.Private.CoreLib.dll:System.Half.get_TrailingSignificand() System.Private.CoreLib.dll:System.Half.get_Zero() +System.Private.CoreLib.dll:System.Half.GetCompareKey(System.UInt16) System.Private.CoreLib.dll:System.Half.GetHashCode() System.Private.CoreLib.dll:System.Half.IsFinite(System.Half) +System.Private.CoreLib.dll:System.Half.IsInfinity(System.Half) System.Private.CoreLib.dll:System.Half.IsNaN(System.Half) System.Private.CoreLib.dll:System.Half.IsNaNOrZero(System.Half) System.Private.CoreLib.dll:System.Half.IsNegative(System.Half) +System.Private.CoreLib.dll:System.Half.IsOddInteger(System.Half) System.Private.CoreLib.dll:System.Half.IsZero(System.Half) +System.Private.CoreLib.dll:System.Half.Log2(System.Half) System.Private.CoreLib.dll:System.Half.NormSubnormalF16Sig(System.UInt32) System.Private.CoreLib.dll:System.Half.op_Addition(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) @@ -7725,6 +7841,12 @@ System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_Division(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Equality(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Explicit(System.Char) => System.Half System.Private.CoreLib.dll:System.Half.op_Explicit(System.Decimal) => System.Half @@ -7761,6 +7883,7 @@ System.Private.CoreLib.dll:System.Half.op_Implicit(System.SByte) => System.Half System.Private.CoreLib.dll:System.Half.op_Inequality(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_LessThan(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_LessThanOrEqual(System.Half, System.Half) +System.Private.CoreLib.dll:System.Half.op_Multiply(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Subtraction(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_UnaryNegation(System.Half) System.Private.CoreLib.dll:System.Half.RoundPackToHalf(System.Boolean, System.Int16, System.UInt16) @@ -7793,8 +7916,10 @@ System.Private.CoreLib.dll:System.Half.System.IBinaryFloatParseAndFormatInfo.get_ZeroBits() System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Half, System.Half) +System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.IsZero(System.Half) +System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertToChecked`1(System.Half, out TOther&) @@ -7903,6 +8028,42 @@ System.Private.CoreLib.dll:System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.ICustomFormatter System.Private.CoreLib.dll:System.ICustomFormatter.Format(System.String, System.Object, System.IFormatProvider) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2 +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.ConvertToExponent(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.CountDigits(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.DivRemPow10(TValue, System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_BufferLength() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_ExponentBias() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G0G1Mask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxSignificand() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MinExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NaN() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NaNMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NegativeInfinity() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_PositiveInfinity() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_Precision() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_SignMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_Zero() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsFinite(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNaN(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNegative(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNegativeInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsPositiveInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.Power10(System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.ToDecStr(TValue) System.Private.CoreLib.dll:System.IDisposable System.Private.CoreLib.dll:System.IDisposable.Dispose() System.Private.CoreLib.dll:System.IEquatable`1 @@ -7919,6 +8080,7 @@ System.Private.CoreLib.dll:System.Index System.Range::k__BackingField System.Private.CoreLib.dll:System.Index System.Range::k__BackingField System.Private.CoreLib.dll:System.Index System.Range::End() System.Private.CoreLib.dll:System.Index System.Range::Start() +System.Private.CoreLib.dll:System.Index..ctor(System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Index..ctor(System.Int32) System.Private.CoreLib.dll:System.Index.Equals(System.Index) System.Private.CoreLib.dll:System.Index.Equals(System.Object) @@ -7951,8 +8113,10 @@ System.Private.CoreLib.dll:System.Int128 System.Int128::Zero() System.Private.CoreLib.dll:System.Int128..ctor(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.Int128.CompareTo(System.Int128) System.Private.CoreLib.dll:System.Int128.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int128.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int128.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int128.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int128.DivRem(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.Equals(System.Int128) System.Private.CoreLib.dll:System.Int128.Equals(System.Object) System.Private.CoreLib.dll:System.Int128.get_MaxValue() @@ -7961,7 +8125,11 @@ System.Private.CoreLib.dll:System.Int128.get_One() System.Private.CoreLib.dll:System.Int128.get_Zero() System.Private.CoreLib.dll:System.Int128.GetHashCode() System.Private.CoreLib.dll:System.Int128.IsNegative(System.Int128) +System.Private.CoreLib.dll:System.Int128.IsOddInteger(System.Int128) System.Private.CoreLib.dll:System.Int128.IsPositive(System.Int128) +System.Private.CoreLib.dll:System.Int128.LeadingZeroCount(System.Int128) +System.Private.CoreLib.dll:System.Int128.LeadingZeroCountAsInt32(System.Int128) +System.Private.CoreLib.dll:System.Int128.Log2(System.Int128) System.Private.CoreLib.dll:System.Int128.op_Addition(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_BitwiseAnd(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_BitwiseOr(System.Int128, System.Int128) @@ -7974,7 +8142,14 @@ System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Single) +System.Private.CoreLib.dll:System.Int128.op_Division(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Equality(System.Int128, System.Int128) +System.Private.CoreLib.dll:System.Int128.op_ExclusiveOr(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Decimal) => System.Int128 System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Double) => System.Int128 System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Int128) => System.Byte @@ -8013,6 +8188,7 @@ System.Private.CoreLib.dll:System.Int128.op_LessThan(System.Int128, System.Int12 System.Private.CoreLib.dll:System.Int128.op_LessThanOrEqual(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Multiply(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_OnesComplement(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_RightShift(System.Int128, System.Int32) System.Private.CoreLib.dll:System.Int128.op_Subtraction(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_UnaryNegation(System.Int128) System.Private.CoreLib.dll:System.Int128.op_UnsignedRightShift(System.Int128, System.Int32) @@ -8024,9 +8200,12 @@ System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.IsGreaterThanAsUnsigned(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy10(System.Int128) System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy16(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsFinite(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsInfinity(System.Int128) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsNaN(System.Int128) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsZero(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int128, out TOther&) @@ -8035,6 +8214,7 @@ System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -8047,6 +8227,7 @@ System.Private.CoreLib.dll:System.Int16 System.Guid::_c System.Private.CoreLib.dll:System.Int16 System.Int16::m_value System.Private.CoreLib.dll:System.Int16 System.Int16::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token @@ -8085,13 +8266,18 @@ System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1::_tok System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_token System.Private.CoreLib.dll:System.Int16.CompareTo(System.Int16) System.Private.CoreLib.dll:System.Int16.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int16.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int16.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int16.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int16.DivRem(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Equals(System.Int16) System.Private.CoreLib.dll:System.Int16.Equals(System.Object) System.Private.CoreLib.dll:System.Int16.GetHashCode() System.Private.CoreLib.dll:System.Int16.GetTypeCode() System.Private.CoreLib.dll:System.Int16.IsNegative(System.Int16) +System.Private.CoreLib.dll:System.Int16.IsOddInteger(System.Int16) +System.Private.CoreLib.dll:System.Int16.LeadingZeroCount(System.Int16) +System.Private.CoreLib.dll:System.Int16.Log2(System.Int16) System.Private.CoreLib.dll:System.Int16.Max(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Min(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -8121,31 +8307,41 @@ System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.System.Numerics.IAdditionOperators.op_Addition(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_LessThan(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IDivisionOperators.op_Division(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IEqualityOperators.op_Equality(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IEqualityOperators.op_Inequality(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int16.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int16.System.Numerics.IMultiplyOperators.op_Multiply(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsFinite(System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsInfinity(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsNaN(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsZero(System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.IShiftOperators.op_LeftShift(System.Int16, System.Int32) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IShiftOperators.op_RightShift(System.Int16, System.Int32) System.Private.CoreLib.dll:System.Int16.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int16) System.Private.CoreLib.dll:System.Int16.ToString() System.Private.CoreLib.dll:System.Int16.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Int16.TryConvertFromChecked`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryConvertFromSaturating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryConvertFromTruncating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -8297,6 +8493,7 @@ System.Private.CoreLib.dll:System.Int32 System.Decimal::_flags System.Private.CoreLib.dll:System.Int32 System.Decimal/DecCalc::Scale() System.Private.CoreLib.dll:System.Int32 System.DefaultBinder/BinderState::_originalSize System.Private.CoreLib.dll:System.Int32 System.DefaultBinder/Primitives::value__ +System.Private.CoreLib.dll:System.Int32 System.Delegate/BindToMethodDetails::selfReferentialTarget System.Private.CoreLib.dll:System.Int32 System.Delegate/InvocationListEnumerator`1::_index System.Private.CoreLib.dll:System.Int32 System.DelegateBindingFlags::value__ System.Private.CoreLib.dll:System.Int32 System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes::value__ @@ -8492,6 +8689,14 @@ System.Private.CoreLib.dll:System.Int32 System.IBinaryFloatParseAndFormatInfo`1: System.Private.CoreLib.dll:System.Int32 System.IBinaryFloatParseAndFormatInfo`1::OverflowDecimalExponent() System.Private.CoreLib.dll:System.Int32 System.IBinaryIntegerParseAndFormatInfo`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.IBinaryIntegerParseAndFormatInfo`1::MaxHexDigitCount() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::BufferLength() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MinExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::Precision() System.Private.CoreLib.dll:System.Int32 System.Index::_value System.Private.CoreLib.dll:System.Int32 System.Index::Value() System.Private.CoreLib.dll:System.Int32 System.Int128::System.IBinaryIntegerParseAndFormatInfo.MaxDigitCount() @@ -8503,6 +8708,7 @@ System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParse System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParseAndFormatInfo.MaxHexDigitCount() System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int32 System.Int64::System.IBinaryIntegerParseAndFormatInfo.MaxDigitCount() @@ -8553,12 +8759,40 @@ System.Private.CoreLib.dll:System.Int32 System.Memory`1::Length() System.Private.CoreLib.dll:System.Int32 System.MidpointRounding::value__ System.Private.CoreLib.dll:System.Int32 System.Number/BigInteger::_length System.Private.CoreLib.dll:System.Int32 System.Number/BinaryParser`1::MaxDigitCount() +System.Private.CoreLib.dll:System.Int32 System.Number/DecimalIeee754ToIntegerStatus::value__ +System.Private.CoreLib.dll:System.Int32 System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Number/DecodedDecimalIeee754`1::UnbiasedExponent() System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp::e +System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp128::_exponent System.Private.CoreLib.dll:System.Int32 System.Number/HexParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/IHexOrBinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::DigitsCount System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::Scale System.Private.CoreLib.dll:System.Int32 System.Number/ParsingStatus::value__ +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.Precision() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.Precision() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.Precision() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector::Alignment() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector`1::Count() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector`1::System.Runtime.Intrinsics.ISimdVector,T>.Alignment() @@ -8668,6 +8902,7 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::Generic System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_maxCacheSize @@ -8835,7 +9070,6 @@ System.Private.CoreLib.dll:System.Int32 System.Threading.AbandonedMutexException System.Private.CoreLib.dll:System.Int32 System.Threading.CancellationTokenSource/States::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.EventResetMode::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::_owningThreadId -System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::OwningThreadId() System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::s_staticsInitializationStage System.Private.CoreLib.dll:System.Int32 System.Threading.Lock/Scope::_currentThreadId System.Private.CoreLib.dll:System.Int32 System.Threading.Lock/StaticsInitializationStage::value__ @@ -8955,11 +9189,14 @@ System.Private.CoreLib.dll:System.Int32.CompareTo(System.Object) System.Private.CoreLib.dll:System.Int32.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int32.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int32.DivRem(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Equals(System.Int32) System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.IsOddInteger(System.Int32) +System.Private.CoreLib.dll:System.Int32.LeadingZeroCount(System.Int32) System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) @@ -8990,26 +9227,35 @@ System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int32.System.Numerics.IAdditionOperators.op_Addition(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_LessThan(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IDivisionOperators.op_Division(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IEqualityOperators.op_Equality(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IEqualityOperators.op_Inequality(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int32.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int32.System.Numerics.IMultiplyOperators.op_Multiply(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsFinite(System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsInfinity(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsNaN(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsZero(System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.IShiftOperators.op_LeftShift(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IShiftOperators.op_RightShift(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int32) System.Private.CoreLib.dll:System.Int32.ToString() @@ -9110,6 +9356,7 @@ System.Private.CoreLib.dll:System.Int64 System.Globalization.PersianCalendar::s_ System.Private.CoreLib.dll:System.Int64 System.Int64::m_value System.Private.CoreLib.dll:System.Int64 System.Int64::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int64 System.IO.FileStream::Length() @@ -9167,13 +9414,18 @@ System.Private.CoreLib.dll:System.Int64 System.TimeZoneInfo/DateTimeNowCache::_n System.Private.CoreLib.dll:System.Int64 System.TimeZoneInfo/DateTimeNowCache::_nowUtcOffsetTicks System.Private.CoreLib.dll:System.Int64.CompareTo(System.Int64) System.Private.CoreLib.dll:System.Int64.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int64.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int64.DivRem(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Equals(System.Int64) System.Private.CoreLib.dll:System.Int64.Equals(System.Object) System.Private.CoreLib.dll:System.Int64.GetHashCode() System.Private.CoreLib.dll:System.Int64.GetTypeCode() System.Private.CoreLib.dll:System.Int64.IsNegative(System.Int64) +System.Private.CoreLib.dll:System.Int64.IsOddInteger(System.Int64) +System.Private.CoreLib.dll:System.Int64.LeadingZeroCount(System.Int64) +System.Private.CoreLib.dll:System.Int64.Log2(System.Int64) System.Private.CoreLib.dll:System.Int64.Max(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Min(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -9203,32 +9455,42 @@ System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.System.Numerics.IAdditionOperators.op_Addition(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_LessThan(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IDivisionOperators.op_Division(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IEqualityOperators.op_Equality(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IEqualityOperators.op_Inequality(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int64.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int64.System.Numerics.IMultiplyOperators.op_Multiply(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsFinite(System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsInfinity(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsNaN(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsZero(System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.IShiftOperators.op_LeftShift(System.Int64, System.Int32) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IShiftOperators.op_RightShift(System.Int64, System.Int32) System.Private.CoreLib.dll:System.Int64.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int64) System.Private.CoreLib.dll:System.Int64.ToString() System.Private.CoreLib.dll:System.Int64.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.ToString(System.String) +System.Private.CoreLib.dll:System.Int64.TryConvertFromChecked`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryConvertFromSaturating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryConvertFromTruncating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -9244,19 +9506,24 @@ System.Private.CoreLib.dll:System.IntPtr System.ArgIterator::_argPtr System.Private.CoreLib.dll:System.IntPtr System.ArgIterator/SigPointer::_ptr System.Private.CoreLib.dll:System.IntPtr System.ComAwareWeakReference::_weakHandle System.Private.CoreLib.dll:System.IntPtr System.ComAwareWeakReference/ComInfo::_pComWeakRef +System.Private.CoreLib.dll:System.IntPtr System.Delegate::_extraData System.Private.CoreLib.dll:System.IntPtr System.Delegate::_methodPtr System.Private.CoreLib.dll:System.IntPtr System.Delegate::_methodPtrAux +System.Private.CoreLib.dll:System.IntPtr System.Delegate::UnmanagedMarker +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::extraData +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::methodPtr +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::methodPtrAux System.Private.CoreLib.dll:System.IntPtr System.Diagnostics.Tracing.EventSource::m_writeEventStringEventHandle System.Private.CoreLib.dll:System.IntPtr System.Exception::_xptrs System.Private.CoreLib.dll:System.IntPtr System.IntPtr::_value System.Private.CoreLib.dll:System.IntPtr System.IntPtr::MaxValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::MinValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::Zero System.Private.CoreLib.dll:System.IntPtr System.IO.Enumeration.FileSystemEnumerator`1::_directoryHandle -System.Private.CoreLib.dll:System.IntPtr System.MulticastDelegate::_invocationCount System.Private.CoreLib.dll:System.IntPtr System.Reflection.ConstArray::m_constArray System.Private.CoreLib.dll:System.IntPtr System.Reflection.ConstArray::Signature() System.Private.CoreLib.dll:System.IntPtr System.Reflection.FieldAccessor::_addressOrOffset @@ -9337,7 +9604,6 @@ System.Private.CoreLib.dll:System.IntPtr System.RuntimeType::m_cache System.Private.CoreLib.dll:System.IntPtr System.RuntimeType::m_handle System.Private.CoreLib.dll:System.IntPtr System.RuntimeTypeHandle::Value() System.Private.CoreLib.dll:System.IntPtr System.Threading.AutoreleasePool::s_AutoreleasePoolInstance -System.Private.CoreLib.dll:System.IntPtr System.Threading.Lock::LockIdForEvents() System.Private.CoreLib.dll:System.IntPtr System.Threading.LowLevelMonitor::_nativeMonitor System.Private.CoreLib.dll:System.IntPtr System.Threading.Thread::_DONT_USE_InternalThread System.Private.CoreLib.dll:System.IntPtr System.Threading.Thread/DirectOnThreadLocalData::pNativeThread @@ -9351,8 +9617,10 @@ System.Private.CoreLib.dll:System.IntPtr..ctor(System.Int64) System.Private.CoreLib.dll:System.IntPtr..ctor(System.Void*) System.Private.CoreLib.dll:System.IntPtr.CompareTo(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.CompareTo(System.Object) +System.Private.CoreLib.dll:System.IntPtr.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.IntPtr.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.IntPtr.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.IntPtr.DivRem(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Equals(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Equals(System.Object) System.Private.CoreLib.dll:System.IntPtr.get_MaxValue() @@ -9360,29 +9628,41 @@ System.Private.CoreLib.dll:System.IntPtr.get_MinValue() System.Private.CoreLib.dll:System.IntPtr.get_Size() System.Private.CoreLib.dll:System.IntPtr.GetHashCode() System.Private.CoreLib.dll:System.IntPtr.IsNegative(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.IsOddInteger(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.LeadingZeroCount(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.Log2(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Max(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Min(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.op_Equality(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.op_Inequality(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IAdditionOperators.op_Addition(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_OnesComplement(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_GreaterThan(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_LessThan(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IDivisionOperators.op_Division(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMultiplyOperators.op_Multiply(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsFinite(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsInfinity(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsNaN(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsZero(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToChecked`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToSaturating`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToTruncating`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IShiftOperators.op_LeftShift(System.IntPtr, System.Int32) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IShiftOperators.op_RightShift(System.IntPtr, System.Int32) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.ISubtractionOperators.op_Subtraction(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.ToInt64() @@ -9390,6 +9670,7 @@ System.Private.CoreLib.dll:System.IntPtr.ToPointer() System.Private.CoreLib.dll:System.IntPtr.ToString() System.Private.CoreLib.dll:System.IntPtr.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.IntPtr.ToString(System.String) +System.Private.CoreLib.dll:System.IntPtr.TryConvertFromChecked`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryConvertFromSaturating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryConvertFromTruncating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -9835,6 +10116,7 @@ System.Private.CoreLib.dll:System.IO.RandomAccess.ReadScatterAtOffset(Microsoft. System.Private.CoreLib.dll:System.IO.RandomAccess.ShouldFallBackToNonOffsetSyscall(Interop/ErrorInfo) System.Private.CoreLib.dll:System.IO.RandomAccess.ValidateInput(Microsoft.Win32.SafeHandles.SafeFileHandle, System.Int64, System.Boolean) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlySpan`1, System.Int64) +System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlySpan`1, System.Int64&) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffsetAsync(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlyMemory`1, System.Int64, System.Threading.CancellationToken, System.IO.Strategies.OSFileStreamStrategy) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteGatherAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.Collections.Generic.IReadOnlyList`1>, System.Int64) System.Private.CoreLib.dll:System.IO.SearchOption @@ -10101,7 +10383,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value -System.Private.CoreLib.dll:System.IRuntimeMethodInfo.get_Value() +System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable System.Private.CoreLib.dll:System.ISpanFormattable.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.IUtf8SpanFormattable @@ -10134,8 +10416,8 @@ System.Private.CoreLib.dll:System.Marvin.ComputeHash32OrdinalIgnoreCaseSlow(Syst System.Private.CoreLib.dll:System.Marvin.GenerateSeed() System.Private.CoreLib.dll:System.Marvin.get_DefaultSeed() System.Private.CoreLib.dll:System.Math -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|47_0(System.UInt64, System.UInt64, out System.UInt64&) -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|53_0(System.Double, System.Double) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|45_0(System.UInt64, System.UInt64, out System.UInt64&) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|51_0(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Int32) System.Private.CoreLib.dll:System.Math.Abs(System.Single) @@ -10150,10 +10432,18 @@ System.Private.CoreLib.dll:System.Math.ConvertToUInt32Checked(System.Double) System.Private.CoreLib.dll:System.Math.ConvertToUInt64Checked(System.Double) System.Private.CoreLib.dll:System.Math.CopySign(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Cos(System.Double) +System.Private.CoreLib.dll:System.Math.DivRem(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Math.DivRem(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Math.DivRem(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Math.DivRem(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Math.DivRem(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Math.DivRem(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.Math.DivRem(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.Math.DivRem(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.Math.DivRem(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Math.DivRem(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.Math.Floor(System.Double) +System.Private.CoreLib.dll:System.Math.Log2(System.Double) System.Private.CoreLib.dll:System.Math.Max(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Math.Max(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Max(System.Int16, System.Int16) @@ -10190,8 +10480,11 @@ System.Private.CoreLib.dll:System.Math.ThrowNegateTwosCompOverflow() System.Private.CoreLib.dll:System.Math.Truncate(System.Double) System.Private.CoreLib.dll:System.MathF System.Private.CoreLib.dll:System.MathF.Abs(System.Single) +System.Private.CoreLib.dll:System.MathF.Log2(System.Single) System.Private.CoreLib.dll:System.MathF.Max(System.Single, System.Single) System.Private.CoreLib.dll:System.MathF.Min(System.Single, System.Single) +System.Private.CoreLib.dll:System.MathF.ModF(System.Single, System.Single*) +System.Private.CoreLib.dll:System.MathF.Truncate(System.Single) System.Private.CoreLib.dll:System.MdUtf8String System.Private.CoreLib.dll:System.MdUtf8String System.RuntimeType/RuntimeTypeCache/Filter::m_name System.Private.CoreLib.dll:System.MdUtf8String..ctor(System.Byte*, System.Int32) @@ -10256,6 +10549,7 @@ System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExcept`1(System.Rea System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExceptInRange`1(System.ReadOnlySpan`1, T, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyInRange`1(System.ReadOnlySpan`1, T, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyWhiteSpace(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.Max`1(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.Min`1(System.ReadOnlySpan`1) @@ -10355,29 +10649,6 @@ System.Private.CoreLib.dll:System.ModuleHandle.ResolveTypeHandle(System.Int32) System.Private.CoreLib.dll:System.ModuleHandle.ValidateModulePointer(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.MulticastDelegate System.Private.CoreLib.dll:System.MulticastDelegate System.Delegate/InvocationListEnumerator`1::_delegate -System.Private.CoreLib.dll:System.MulticastDelegate.CombineImpl(System.Delegate) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorClosed(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorClosedStatic(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleClosedStatic(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleOpened(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleVirtualDispatch(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorOpened(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorRTClosed(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorVirtualDispatch(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.DeleteFromInvocationList(System.Object[], System.Int32, System.Int32, System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.EqualInvocationLists(System.Object[], System.Object[], System.Int32, System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.Equals(System.Object) -System.Private.CoreLib.dll:System.MulticastDelegate.get_HasSingleTarget() -System.Private.CoreLib.dll:System.MulticastDelegate.GetHashCode() -System.Private.CoreLib.dll:System.MulticastDelegate.GetMethodImpl() -System.Private.CoreLib.dll:System.MulticastDelegate.InvocationListEquals(System.MulticastDelegate) -System.Private.CoreLib.dll:System.MulticastDelegate.IsUnmanagedFunctionPtr() -System.Private.CoreLib.dll:System.MulticastDelegate.NewMulticastDelegate(System.Object[], System.Int32, System.Boolean) -System.Private.CoreLib.dll:System.MulticastDelegate.NewMulticastDelegate(System.Object[], System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.RemoveImpl(System.Delegate) -System.Private.CoreLib.dll:System.MulticastDelegate.ThrowNullThisInDelegateToInstance() -System.Private.CoreLib.dll:System.MulticastDelegate.TryGetAt(System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.TrySetSlot(System.Object[], System.Int32, System.Object) System.Private.CoreLib.dll:System.MulticastNotSupportedException System.Private.CoreLib.dll:System.MulticastNotSupportedException..ctor() System.Private.CoreLib.dll:System.MulticastNotSupportedException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -10433,46 +10704,73 @@ System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String, Sy System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String) System.Private.CoreLib.dll:System.Number System.Private.CoreLib.dll:System.Number..cctor() -System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|192_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) -System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|60_0(System.Int128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|52_0(System.Int32, System.Int32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|56_0(System.Int64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|62_0(System.UInt128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|54_0(System.UInt32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|58_0(System.UInt64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__Slow|45_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) -System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|198_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|61_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|53_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|57_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|63_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|55_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|59_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|81_0(System.UInt32) +System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|560_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) +System.Private.CoreLib.dll:System.Number.g__InternalInfinityCompare|3_1`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.g__InternalUnsignedCompare|3_0`2(System.Number/DecodedDecimalIeee754`1, System.Number/DecodedDecimalIeee754`1) +System.Private.CoreLib.dll:System.Number.g__MaterializePreferredZeros|85_0`3(System.Number/NumberBuffer&, System.Span`1) +System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|416_0(System.Int128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|408_0(System.Int32, System.Int32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|412_0(System.Int64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|418_0(System.UInt128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|410_0(System.UInt32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|414_0(System.UInt64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__Slow|401_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.g__ClampExponentOverflow|9_0`2(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|566_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|417_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|409_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|413_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|419_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|411_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|415_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|437_0(System.UInt32) System.Private.CoreLib.dll:System.Number.AccumulateDecimalDigitsIntoBigInteger(System.Number/NumberBuffer&, System.UInt32, System.UInt32, out System.Number/BigInteger&) +System.Private.CoreLib.dll:System.Number.AddDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.AlignmentScaleFactor`2(System.Int32) System.Private.CoreLib.dll:System.Number.AppendUnknownChar`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) System.Private.CoreLib.dll:System.Number.AssembleFloatingPointBits`1(System.UInt64, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.CalculatePower(System.Int32) +System.Private.CoreLib.dll:System.Number.ClassifyIntegerParityDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.CompareDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.ComputeFloat`1(System.Int64, System.UInt64) System.Private.CoreLib.dll:System.Number.ComputeProductApproximation(System.Int32, System.Int64, System.UInt64) System.Private.CoreLib.dll:System.Number.ConsumeTrailingNulls`1(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.ConvertBigIntegerToFloatingPointBits`1(System.Number/BigInteger&, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754`4(TSourceValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToDecimal`2(TValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToFloat`3(TValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToInteger`3(TValue, System.Boolean) +System.Private.CoreLib.dll:System.Number.ConvertDecimalToDecimalIeee754`2(System.Decimal) +System.Private.CoreLib.dll:System.Number.ConvertFloatToDecimalIeee754`3(TFloat) +System.Private.CoreLib.dll:System.Number.ConvertIntegerToDecimalIeee754`3(TInteger) System.Private.CoreLib.dll:System.Number.CurrencyGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.DecimalIeee754FiniteNumberBinaryEncoding`2(System.Boolean, TValue, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754FromMagnitude`2(System.Boolean, System.UInt128, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754Rounding`2(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754ToIntegerMagnitude`2(TValue, out System.Boolean&, out System.UInt128&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.DecimalIeee754ToNumber`2(TValue, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.DecimalToNumber(System.Decimal&, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.DigitsToUInt32(System.Byte*, System.Int32) System.Private.CoreLib.dll:System.Number.DigitsToUInt64(System.Byte*, System.Int32) -System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.DivideDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&, out System.Boolean&) System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.DropDigits`2(TValue&, TValue&, System.Int32, System.Boolean&, out System.Int32&) +System.Private.CoreLib.dll:System.Number.EqualsDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.ExtractFractionAndBiasedExponent`1(TNumber, out System.Int32&) System.Private.CoreLib.dll:System.Number.FindSection(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.FormatCurrency`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatDecimal(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.FormatDecimalIeee754`2(TValue, System.String, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.FormatDecimalIeee754`3(System.Collections.Generic.ValueListBuilder`1&, TValue, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatExponent`1(System.Collections.Generic.ValueListBuilder`1&, System.Globalization.NumberFormatInfo, System.Int32, System.Char, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.FormatFixed`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Int32[], System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.FormatFloat`1(TNumber, System.String, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatFloat`2(System.Collections.Generic.ValueListBuilder`1&, TNumber, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatFloatingPointAsHex`2(System.Collections.Generic.ValueListBuilder`1&, TNumber, System.Char, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatGeneral`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Globalization.NumberFormatInfo, System.Char, System.Boolean) +System.Private.CoreLib.dll:System.Number.FormatGeneralAndRoundTripDecimalIeee754`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Char, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatInt128(System.Int128, System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Number.FormatInt32(System.Int32, System.Int32, System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Number.FormatInt64(System.Int64, System.String, System.IFormatProvider) @@ -10486,9 +10784,12 @@ System.Private.CoreLib.dll:System.Number.get_Pow10DoubleTable() System.Private.CoreLib.dll:System.Number.get_Pow5128Table() System.Private.CoreLib.dll:System.Number.get_TwoDigitsBytes() System.Private.CoreLib.dll:System.Number.get_TwoDigitsCharsAsBytes() +System.Private.CoreLib.dll:System.Number.GetDecimalIeee754HashCode`2(TValue) System.Private.CoreLib.dll:System.Number.GetFloatingPointMaxDigitsAndPrecision(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) System.Private.CoreLib.dll:System.Number.GetHexBase(System.Char) System.Private.CoreLib.dll:System.Number.GetTwoDigitsBytesRef(System.Boolean) +System.Private.CoreLib.dll:System.Number.GreaterThanDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.GreaterThanOrEqualDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.HasNegativeSection(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.Int128DivMod1E19(System.UInt128&) System.Private.CoreLib.dll:System.Number.Int128ToDecStr(System.Int128) @@ -10504,15 +10805,22 @@ System.Private.CoreLib.dll:System.Number.Int64ToHexChars`1(TChar*, System.UInt64 System.Private.CoreLib.dll:System.Number.Int64ToHexStr(System.Int64, System.Char, System.Int32) System.Private.CoreLib.dll:System.Number.Int64ToNumber(System.Int64, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.IsDigit(System.UInt32) +System.Private.CoreLib.dll:System.Number.IsOddIntegerDecimalIeee754`2(TValue) System.Private.CoreLib.dll:System.Number.IsSpaceReplacingChar(System.UInt32) System.Private.CoreLib.dll:System.Number.IsWhite(System.UInt32) +System.Private.CoreLib.dll:System.Number.IsZeroDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.LessThanDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.LessThanOrEqualDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.MatchChars`1(TChar*, TChar*, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.MatchNegativeSignChars`1(TChar*, TChar*, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.MultiplyDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.NegativeInt128ToDecStr(System.Int128, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NegativeInt32ToDecStr(System.Int32, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NegativeInt64ToDecStr(System.Int64, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NormalizeSpaceReplacingChar(System.UInt32) System.Private.CoreLib.dll:System.Number.NumberGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.NumberToDecimalIeee754Bits`2(System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.NumberToDecimalIeee754BitsFromWide`2(System.Boolean, TValue, TValue, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.NumberToFloat`1(System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.NumberToFloatingPointBits`1(System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.NumberToFloatingPointBitsSlow`1(System.Number/NumberBuffer&, System.UInt32, System.UInt32, System.UInt32) @@ -10524,20 +10832,28 @@ System.Private.CoreLib.dll:System.Number.ParseEightDigitsUnrolled(System.Byte*) System.Private.CoreLib.dll:System.Number.ParseFloat`2(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.ParseFormatSpecifier(System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.PercentGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.PropagateNaN`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.RightShiftWithRounding(System.UInt64, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.RoundNumber(System.Number/NumberBuffer&, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.RoundToZeroOrEpsilon`2(System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.RoundWideToSignificand`2(System.Boolean, TValue, TValue, System.Int32, System.Int32, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.RoundWideToZeroOrEpsilon`2(System.Boolean, TValue, TValue, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.ShouldRoundUp(System.Boolean, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Number.SinglePassPow10`1(out TValue&) System.Private.CoreLib.dll:System.Number.SpanEqualsOrdinalIgnoreCase`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.SpanStartsWith`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.StringComparison) System.Private.CoreLib.dll:System.Number.SpanStartsWith`1(System.ReadOnlySpan`1, TChar) System.Private.CoreLib.dll:System.Number.SpanTrim`1(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.SpanTrimStart`1(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Number.SubtractDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.ThrowDecimalOverflowException() System.Private.CoreLib.dll:System.Number.ThrowFormatException`1(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.Number.ThrowOverflowException(System.String) System.Private.CoreLib.dll:System.Number.ThrowOverflowException`1() System.Private.CoreLib.dll:System.Number.ThrowOverflowOrFormatException`2(System.Number/ParsingStatus, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.TryCopyTo`1(System.String, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.TryFloatingPointBitsFromMantissa`1(System.UInt64, System.Int32, out System.UInt64&) System.Private.CoreLib.dll:System.Number.TryFormatDecimal`1(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.TryFormatDecimalIeee754`3(TValue, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatFloat`2(TNumber, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatInt128`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatInt32`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) @@ -10594,6 +10910,12 @@ System.Private.CoreLib.dll:System.Number.UInt64ToDecChars`1(TChar*, System.UInt6 System.Private.CoreLib.dll:System.Number.UInt64ToDecStr(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Number.UInt64ToDecStr(System.UInt64) System.Private.CoreLib.dll:System.Number.UInt64ToNumber(System.UInt64, System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.UnpackDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.WideDigitCount`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.WideDivideByPow10`1(TValue&, TValue&, TValue) +System.Private.CoreLib.dll:System.Number.WideMultiply`1(TValue, TValue, out TValue&, out TValue&) +System.Private.CoreLib.dll:System.Number.WidePow10`1(System.Int32) +System.Private.CoreLib.dll:System.Number.WriteDecimalDigits(System.UInt128, System.Span`1) System.Private.CoreLib.dll:System.Number.WriteDigits`1(System.UInt32, TChar*, System.Int32) System.Private.CoreLib.dll:System.Number.WriteFourDigits`1(System.UInt32, TChar*) System.Private.CoreLib.dll:System.Number.WriteTwoDigits`1(System.UInt32, TChar*) @@ -10630,6 +10952,7 @@ System.Private.CoreLib.dll:System.Number/BigInteger.SetValue(out System.Number/B System.Private.CoreLib.dll:System.Number/BigInteger.SetZero(out System.Number/BigInteger&) System.Private.CoreLib.dll:System.Number/BigInteger.ShiftLeft(System.Int32) System.Private.CoreLib.dll:System.Number/BigInteger.SubtractDivisor(System.Number/BigInteger&, System.Int32, System.Number/BigInteger&, System.UInt64) +System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt128() System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt32() System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt64() System.Private.CoreLib.dll:System.Number/BigInteger/BlocksBuffer @@ -10640,6 +10963,16 @@ System.Private.CoreLib.dll:System.Number/BinaryParser`1.get_MaxDigitCount() System.Private.CoreLib.dll:System.Number/BinaryParser`1.get_MaxDigitValue() System.Private.CoreLib.dll:System.Number/BinaryParser`1.IsValidChar(System.UInt32) System.Private.CoreLib.dll:System.Number/BinaryParser`1.ShiftLeftForNextDigit(TInteger) +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::Finite +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::NaN +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::NegativeInfinity +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::PositiveInfinity +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1 +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1..ctor(System.Boolean, System.Int32, TSignificand) +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_Signed() +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_Significand() +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_UnbiasedExponent() System.Private.CoreLib.dll:System.Number/DiyFp System.Private.CoreLib.dll:System.Number/DiyFp..ctor(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Number/DiyFp.Create`1(TNumber) @@ -10648,6 +10981,31 @@ System.Private.CoreLib.dll:System.Number/DiyFp.GetBoundaries(System.Int32, out S System.Private.CoreLib.dll:System.Number/DiyFp.Multiply(System.Number/DiyFp&) System.Private.CoreLib.dll:System.Number/DiyFp.Normalize() System.Private.CoreLib.dll:System.Number/DiyFp.Subtract(System.Number/DiyFp&) +System.Private.CoreLib.dll:System.Number/DiyFp128 +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxHalf +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxOne +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxThreeQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128..ctor(System.UInt32, System.Int32, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::InvTrigConstants +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::PiFractionConstants +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Exp10Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::ExpCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperCoshCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperSinhCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Log2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Pow2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::PowLog2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigCosCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigSinCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanNumeratorCoefficients System.Private.CoreLib.dll:System.Number/Grisu3 System.Private.CoreLib.dll:System.Number/Grisu3.BiggestPowerTen(System.UInt32, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Number/Grisu3.get_CachedPowersBinaryExponent() @@ -10682,6 +11040,7 @@ System.Private.CoreLib.dll:System.Number/NumberBuffer.ToString() System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBuffer::Kind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Decimal +System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::DecimalIeee754 System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::FloatingPoint System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Integer System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Unknown @@ -10689,9 +11048,13 @@ System.Private.CoreLib.dll:System.Number/ParsingStatus System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Failed System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::OK System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Overflow +System.Private.CoreLib.dll:System.Number/SqrtCoefficients +System.Private.CoreLib.dll:System.Number/SqrtCoefficients..ctor(System.Single, System.Single, System.Double) +System.Private.CoreLib.dll:System.Number/SqrtCoefficients[] System.Number::s_sqrtTable System.Private.CoreLib.dll:System.Numerics.BitOperations System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|22_0(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|23_0(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.BitOperations.FlipBit(System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.get_Log2DeBruijn() System.Private.CoreLib.dll:System.Numerics.BitOperations.get_TrailingZeroCountDeBruijn() System.Private.CoreLib.dll:System.Numerics.BitOperations.IsPow2(System.Int32) @@ -10701,6 +11064,7 @@ System.Private.CoreLib.dll:System.Numerics.BitOperations.LeadingZeroCount(System System.Private.CoreLib.dll:System.Numerics.BitOperations.LeadingZeroCount(System.UIntPtr) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UIntPtr) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2SoftwareFallback(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.PopCount(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.PopCount(System.UInt64) @@ -10710,19 +11074,459 @@ System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UInt3 System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UIntPtr, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateRight(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Numerics.BitOperations.RoundUpToPowerOf2(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.TrailingZeroCount(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.TrailingZeroCount(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::One() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128..cctor() +System.Private.CoreLib.dll:System.Numerics.Decimal128..ctor(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CompareTo(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.Equals(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeInfinityValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeZeroValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_OneValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_PositiveInfinityValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_QuietNaNValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_ZeroValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsFinite(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNaN(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNegative(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNegativeInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsOddInteger(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsPositiveInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Addition(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Division(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Equality(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Double) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Half) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Int128) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Single) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.UInt128) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_GreaterThan(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_GreaterThanOrEqual(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Byte) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Char) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Decimal) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int16) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.IntPtr) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.SByte) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt16) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UIntPtr) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Inequality(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_LessThan(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_LessThanOrEqual(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Multiply(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Subtraction(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_UnaryNegation(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt128, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal128.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryConvertFrom`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryConvertTo`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::One() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32..ctor(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CompareTo(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.Equals(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_UInt32Powers10() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsFinite(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNaN(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNegative(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNegativeInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsOddInteger(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsPositiveInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Addition(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Division(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Equality(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Decimal) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Double) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Half) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int32) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.IntPtr) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Single) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt32) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UIntPtr) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_GreaterThan(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_GreaterThanOrEqual(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Byte) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Char) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Int16) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Numerics.Decimal32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Numerics.Decimal32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.SByte) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.UInt16) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Inequality(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_LessThan(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_LessThanOrEqual(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Multiply(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Subtraction(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_UnaryNegation(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal32.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryConvertFrom`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryConvertTo`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::One() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64..ctor(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CompareTo(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.Equals(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_UInt64Powers10() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsFinite(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNaN(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNegative(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNegativeInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsOddInteger(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsPositiveInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Addition(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Division(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Equality(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Decimal) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Double) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Half) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Int128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Int64) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.IntPtr) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Single) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UInt128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UInt64) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UIntPtr) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_GreaterThan(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_GreaterThanOrEqual(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Byte) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Char) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Int16) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Int32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Numerics.Decimal64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.SByte) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.UInt16) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.UInt32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Inequality(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_LessThan(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_LessThanOrEqual(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Multiply(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Subtraction(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_UnaryNegation(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt64, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal64.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryConvertFrom`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryConvertTo`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Numerics.IAdditionOperators`3 System.Private.CoreLib.dll:System.Numerics.IAdditionOperators`3.op_Addition(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1 +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.DivRem(TSelf, TSelf) +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.GetByteCount() +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.LeadingZeroCount(TSelf) +System.Private.CoreLib.dll:System.Numerics.IBinaryNumber`1 +System.Private.CoreLib.dll:System.Numerics.IBinaryNumber`1.Log2(TSelf) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3 System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_BitwiseAnd(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_BitwiseOr(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_ExclusiveOr(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_OnesComplement(TSelf) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3 System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_GreaterThan(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_GreaterThanOrEqual(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_LessThan(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_LessThanOrEqual(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IDivisionOperators`3 +System.Private.CoreLib.dll:System.Numerics.IDivisionOperators`3.op_Division(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3 System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3.op_Equality(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3.op_Inequality(TSelf, TOther) @@ -10734,16 +11538,23 @@ System.Private.CoreLib.dll:System.Numerics.IFloatingPointIeee754`1.get_NegativeZ System.Private.CoreLib.dll:System.Numerics.IFloatingPointIeee754`1.get_PositiveInfinity() System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1 System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.IMultiplyOperators`3 +System.Private.CoreLib.dll:System.Numerics.IMultiplyOperators`3.op_Multiply(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.INumber`1 System.Private.CoreLib.dll:System.Numerics.INumberBase`1 +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.get_One() System.Private.CoreLib.dll:System.Numerics.INumberBase`1.get_Zero() System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsFinite(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsInfinity(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsNaN(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsNegative(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsOddInteger(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsZero(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromChecked`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromSaturating`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromTruncating`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToChecked`1(TSelf, out TOther&) @@ -10751,6 +11562,7 @@ System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToSaturating` System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToTruncating`1(TSelf, out TOther&) System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3 System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3.op_LeftShift(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3.op_RightShift(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.ISubtractionOperators`3 System.Private.CoreLib.dll:System.Numerics.ISubtractionOperators`3.op_Subtraction(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IUnaryNegationOperators`2 @@ -10796,12 +11608,15 @@ System.Private.CoreLib.dll:System.Numerics.Vector`1.GetHashCode() System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector`1, System.Numerics.Vector`1) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Division(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector`1) => System.Numerics.Vector`1 System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_LeftShift(System.Numerics.Vector`1, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector`1) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_RightShift(System.Numerics.Vector`1, System.Int32) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Numerics.Vector`1, System.Numerics.Vector`1, System.Numerics.Vector`1) @@ -10852,7 +11667,6 @@ System.Private.CoreLib.dll:System.Object System.Exception/DispatchState::StackTr System.Private.CoreLib.dll:System.Object System.IAsyncResult::AsyncState() System.Private.CoreLib.dll:System.Object System.IO.Enumeration.FileSystemEnumerator`1::_lock System.Private.CoreLib.dll:System.Object System.Memory`1::_object -System.Private.CoreLib.dll:System.Object System.MulticastDelegate::_invocationList System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value @@ -11198,8 +12012,11 @@ System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Decimal/D System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/BigInteger::Pow10BigNumTable() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/BigInteger::Pow10UInt32Table() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/Grisu3::SmallPowersOfTen() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Numerics.Decimal32::UInt32Powers10() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Decimal/DecCalc::UInt64Powers10() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number::Pow5128Table() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/Grisu3::CachedPowersSignificand() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Numerics.Decimal64::UInt64Powers10() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlyMemory`1::Span() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlySpan`1::Empty() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlySpan`1/Enumerator::_span @@ -12675,7 +13492,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.InternalLoad(System System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.InternalLoad(System.Reflection.NativeAssemblyNameParts*, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.StackCrawlMarkHandle, System.Boolean, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo..ctor(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, System.Reflection.MethodAttributes, System.Reflection.BindingFlags) -System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.g__LazyCreateSignature|21_0() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.g__LazyCreateSignature|19_0() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.CheckCanCreateInstance(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ComputeAndUpdateInvocationFlags() @@ -12708,7 +13525,6 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(Syste System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.InvokeClassConstructor() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.IsDefined(System.Type, System.Boolean) -System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ThrowNoInvokeException() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeCustomAttributeData @@ -12794,8 +13610,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimePropertyInfo::m_getterMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimePropertyInfo::m_setterMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo..ctor(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, System.Reflection.MethodAttributes, System.Reflection.BindingFlags, System.Object) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__IsDisallowedByRefType|98_0(System.Type) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|27_0() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__IsDisallowedByRefType|96_0(System.Type) +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) @@ -12839,7 +13655,6 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDe System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.IsDefined(System.Type, System.Boolean) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeException() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule @@ -13247,11 +14062,16 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await(System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await`1(System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await`1(System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaitAwaiterInContinuation`1(System.Int32) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaiterOnCompletedFromContinuation`1(System.Runtime.CompilerServices.Continuation, System.Int32, System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaitTaskWithRareOptions(System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContexts(out System.Threading.Thread&, out System.Threading.ExecutionContext&, out System.Threading.SynchronizationContext&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContinuationContext(System.Object&, System.Runtime.CompilerServices.ContinuationFlags&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContinuationContextFlags(System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureExecutionContext() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionContinueOnThreadPool(System.Boolean, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionNoContinuationContext(System.Boolean, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionWithContinuationContext(System.Boolean, System.Object&, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncTask(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncTask`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncValueTask(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) @@ -13262,12 +14082,14 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSu System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContexts(System.Boolean, System.Threading.Thread, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContextsOnSuspension(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreExecutionContext(System.Threading.Thread, System.Threading.ExecutionContext) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreInlinedFrameContexts(System.Threading.ExecutionContext, System.Object, System.Runtime.CompilerServices.ContinuationFlags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ResumeInterpreterContinuation(System.Runtime.CompilerServices.Continuation, System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ReturnTaskContinuation(System.Runtime.CompilerServices.RuntimeAsyncTaskContinuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend(System.Threading.Tasks.Sources.IValueTaskSource, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend(System.Threading.Tasks.Task, System.Threading.Tasks.ConfigureAwaitOptions) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend`1(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend`1(System.Threading.Tasks.Task`1, System.Threading.Tasks.ConfigureAwaitOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.SwitchToContinuationContext(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&, System.Object, System.Runtime.CompilerServices.ContinuationFlags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TailAwait() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TaskFromException(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TaskFromException`1(System.Exception) @@ -13280,6 +14102,8 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Transpar System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TransparentSuspend`1(System.Threading.Tasks.Task`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TransparentSuspend`1(System.Threading.Tasks.ValueTask`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaitAwaiter`1(TAwaiter) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaitAwaiterInContinuation`1(System.Int32) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaiterOnCompletedFromContinuation`1(System.Runtime.CompilerServices.Continuation, System.Int32, System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTaskFromException(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTaskFromException`1(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/AsyncContexts @@ -13350,9 +14174,10 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::Synchronize System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::Tpl System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::UnwindAsyncException +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/IsEnabled +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/IsEnabled.Tpl(System.Runtime.CompilerServices.AsyncInstrumentation/Flags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.get_TrackAsyncMethodCompletion() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine, System.Threading.Tasks.Task) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start`1(TStateMachine&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncProfiler @@ -13375,6 +14200,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilde System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.get_Context() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.get_MoveNextAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext(System.Threading.Thread, System.Runtime.CompilerServices.AsyncInstrumentation/Flags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext(System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder..cctor() @@ -13577,6 +14403,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags Sys System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ExecutionContextIndexNumBits System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ResultIndexFirstBit System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ResultIndexNumBits +System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ValueTaskAdaptedToTask System.Private.CoreLib.dll:System.Runtime.CompilerServices.CustomConstantAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.CustomConstantAttribute.get_Value() System.Private.CoreLib.dll:System.Runtime.CompilerServices.DateTimeConstantAttribute @@ -13648,6 +14475,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.GenericsStaticsInfo S System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox +System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox System.Runtime.CompilerServices.AsyncProfiler/Info::LastContinuation System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.get_MoveNextAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IConfiguredTaskAwaiter @@ -13661,9 +14489,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitClass System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitClassSlow(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitInstantiatedClass(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodDesc*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 System.GCMemoryInfoData::_pauseDurations System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.DateTimeRawInfo::num System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray4`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 System.GCMemoryInfoData::_generationInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Buffers.BitVector256::_values System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArrayAttribute @@ -13687,6 +14518,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.IteratorStateMachineA System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.get_MethodTable() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodDescChunk() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable @@ -14343,6 +15175,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.FieldOffsetAttribute.. System.Private.CoreLib.dll:System.Runtime.InteropServices.FieldOffsetAttribute.get_Value() System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Buffers.MemoryHandle::_handle +System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Delegate/BindToMethodDetails::loaderAllocatorGCHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/NativeObjectWrapper::_proxyHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/NativeObjectWrapper::_proxyHandleTrackingResurrection System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/ReferenceTrackerNativeObjectWrapper::_nativeObjectWrapperWeakHandle @@ -14608,6 +15441,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NativeMemory.Clear(Sys System.Private.CoreLib.dll:System.Runtime.InteropServices.NativeMemory.Free(System.Void*) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::MaxValue() +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::MinValue() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NaN() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NegativeInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NegativeZero() @@ -14617,19 +15451,24 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime. System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat..ctor(System.Double) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CompareTo(System.Object) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CompareTo(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Equals(System.Object) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Equals(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_MaxValue() +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_MinValue() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NaN() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NegativeInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NegativeZero() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_PositiveInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.GetHashCode() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsFinite(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsInfinity(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsNaN(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsNegative(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsOddInteger(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Log2(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Addition(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) @@ -14644,6 +15483,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExpli System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Division(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Equality(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Explicit(System.Decimal) => System.Runtime.InteropServices.NFloat System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Explicit(System.Double) => System.Runtime.InteropServices.NFloat @@ -14684,14 +15524,17 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Implicit(Sys System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Inequality(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_LessThan(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_LessThanOrEqual(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Multiply(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Subtraction(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_UnaryNegation(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.IsZero(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertToChecked`1(System.Runtime.InteropServices.NFloat, out TOther&) @@ -14949,6 +15792,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.ISimdVector`2.StoreUnsafe(T System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Add(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.AddSaturate(T, T) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Divide(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Equals(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ExtractMostSignificantBit(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.get_AllBitsSet() @@ -14960,6 +15804,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.LessThan(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.LessThanOrEqual(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Max(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Min(T, T) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Multiply(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ObjectEquals(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ShiftLeft(T, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ShiftRightArithmetic(T, System.Int32) @@ -15076,10 +15921,12 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Addition(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Division(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Equality(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Inequality(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_LeftShift(System.Runtime.Intrinsics.Vector128`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Multiply(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_OnesComplement(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_RightShift(System.Runtime.Intrinsics.Vector128`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Subtraction(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) @@ -15156,11 +16003,14 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Addition(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Division(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Equality(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Inequality(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_LeftShift(System.Runtime.Intrinsics.Vector256`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Multiply(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_OnesComplement(System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_RightShift(System.Runtime.Intrinsics.Vector256`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Subtraction(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_UnaryNegation(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) @@ -15234,11 +16084,14 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Addition(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Division(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Equality(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Inequality(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_LeftShift(System.Runtime.Intrinsics.Vector512`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Multiply(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_OnesComplement(System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_RightShift(System.Runtime.Intrinsics.Vector512`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Subtraction(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_UnaryNegation(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) @@ -15327,10 +16180,12 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Addition(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Division(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Equality(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Inequality(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_LeftShift(System.Runtime.Intrinsics.Vector64`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Multiply(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_OnesComplement(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_RightShift(System.Runtime.Intrinsics.Vector64`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Subtraction(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) @@ -15633,11 +16488,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.IRuntimeMethodInfo::Value() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.RuntimeConstructorInfo::System.IRuntimeMethodInfo.Value() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.RuntimeMethodInfo::System.IRuntimeMethodInfo.Value() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodInfoStub::System.IRuntimeMethodInfo.Value() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Signature::_pMethod @@ -15648,7 +16499,6 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) -System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType @@ -16101,17 +16951,23 @@ System.Private.CoreLib.dll:System.SByte System.Runtime.InteropServices.Marshalli System.Private.CoreLib.dll:System.SByte System.SByte::m_value System.Private.CoreLib.dll:System.SByte System.SByte::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.SByte.CompareTo(System.Object) System.Private.CoreLib.dll:System.SByte.CompareTo(System.SByte) +System.Private.CoreLib.dll:System.SByte.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.SByte.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.SByte.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.SByte.DivRem(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Equals(System.Object) System.Private.CoreLib.dll:System.SByte.Equals(System.SByte) System.Private.CoreLib.dll:System.SByte.GetHashCode() System.Private.CoreLib.dll:System.SByte.GetTypeCode() System.Private.CoreLib.dll:System.SByte.IsNegative(System.SByte) +System.Private.CoreLib.dll:System.SByte.IsOddInteger(System.SByte) +System.Private.CoreLib.dll:System.SByte.LeadingZeroCount(System.SByte) +System.Private.CoreLib.dll:System.SByte.Log2(System.SByte) System.Private.CoreLib.dll:System.SByte.Max(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Min(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -16141,31 +16997,41 @@ System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.System.Numerics.IAdditionOperators.op_Addition(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_OnesComplement(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_GreaterThan(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_LessThan(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IDivisionOperators.op_Division(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IEqualityOperators.op_Equality(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IEqualityOperators.op_Inequality(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.SByte.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.SByte.System.Numerics.IMultiplyOperators.op_Multiply(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsFinite(System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsInfinity(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsNaN(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsZero(System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToChecked`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToSaturating`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToTruncating`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.IShiftOperators.op_LeftShift(System.SByte, System.Int32) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IShiftOperators.op_RightShift(System.SByte, System.Int32) System.Private.CoreLib.dll:System.SByte.System.Numerics.ISubtractionOperators.op_Subtraction(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.SByte) System.Private.CoreLib.dll:System.SByte.ToString() System.Private.CoreLib.dll:System.SByte.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.SByte.TryConvertFromChecked`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryConvertFromSaturating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryConvertFromTruncating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -16233,6 +17099,8 @@ System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single System.Private.CoreLib.dll:System.Single System.Collections.Hashtable::_loadFactor +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::A +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::B System.Private.CoreLib.dll:System.Single System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_r4 System.Private.CoreLib.dll:System.Single System.Single::m_value System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NaN() @@ -16240,12 +17108,14 @@ System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.PositiveInfinity() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Single System.Threading.PortableThreadPool/HillClimbing/LogEntry::lastHistoryMean System.Private.CoreLib.dll:System.Single.Abs(System.Single) System.Private.CoreLib.dll:System.Single.CompareTo(System.Object) System.Private.CoreLib.dll:System.Single.CompareTo(System.Single) +System.Private.CoreLib.dll:System.Single.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Single.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Single.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Single.Equals(System.Object) @@ -16253,14 +17123,19 @@ System.Private.CoreLib.dll:System.Single.Equals(System.Single) System.Private.CoreLib.dll:System.Single.GetHashCode() System.Private.CoreLib.dll:System.Single.GetTypeCode() System.Private.CoreLib.dll:System.Single.IsFinite(System.Single) +System.Private.CoreLib.dll:System.Single.IsInfinity(System.Single) +System.Private.CoreLib.dll:System.Single.IsInteger(System.Single) System.Private.CoreLib.dll:System.Single.IsNaN(System.Single) System.Private.CoreLib.dll:System.Single.IsNaNOrZero(System.Single) System.Private.CoreLib.dll:System.Single.IsNegative(System.Single) +System.Private.CoreLib.dll:System.Single.IsOddInteger(System.Single) System.Private.CoreLib.dll:System.Single.IsZero(System.Single) +System.Private.CoreLib.dll:System.Single.Log2(System.Single) System.Private.CoreLib.dll:System.Single.Max(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.Min(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_Equality(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_GreaterThan(System.Single, System.Single) +System.Private.CoreLib.dll:System.Single.op_GreaterThanOrEqual(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_Inequality(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_LessThan(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_LessThanOrEqual(System.Single, System.Single) @@ -16310,15 +17185,20 @@ System.Private.CoreLib.dll:System.Single.System.IConvertible.ToUInt64(System.IFo System.Private.CoreLib.dll:System.Single.System.Numerics.IAdditionOperators.op_Addition(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Single, System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.IDivisionOperators.op_Division(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NaN() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NegativeInfinity() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NegativeZero() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_PositiveInfinity() System.Private.CoreLib.dll:System.Single.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Single.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Single.System.Numerics.IMultiplyOperators.op_Multiply(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.IsZero(System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertToChecked`1(System.Single, out TOther&) @@ -16329,6 +17209,7 @@ System.Private.CoreLib.dll:System.Single.System.Numerics.IUnaryNegationOperators System.Private.CoreLib.dll:System.Single.ToString() System.Private.CoreLib.dll:System.Single.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Single.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Single.Truncate(System.Single) System.Private.CoreLib.dll:System.Single.TryConvertFrom`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.TryConvertTo`1(System.Single, out TOther&) System.Private.CoreLib.dll:System.Single.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -16410,6 +17291,9 @@ System.Private.CoreLib.dll:System.SpanHelpers.IndexOfNullByte(System.Byte*) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfNullCharacter(System.Char*) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfValueType`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf(System.Byte&, System.Int32, System.Byte&, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf(System.Char&, System.Int32, System.Char&, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf`1(T&, System.Int32, T&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOfValueType`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOfValueType`2(TValue&, TValue, System.Int32) @@ -17267,7 +18151,7 @@ System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.System.StubHe System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1/SizeHolder System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1/SizeHolder..cctor() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers -System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|18_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) +System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|17_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.AddToCleanupList(System.StubHelpers.CleanupWorkListElement&, System.Runtime.InteropServices.SafeHandle) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CalcVaListSize(System.IntPtr) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CheckStringLength(System.Int32) @@ -17283,7 +18167,6 @@ System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CreateCustomMarshaler( System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CreateLayoutClassMarshalStubs(System.Runtime.CompilerServices.QCallTypeHandle, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.DestroyCleanupList(System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.FreeArrayContents`2(System.Byte*, System.Int32) -System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetDelegateTarget(System.Delegate) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetHRExceptionObject(System.Int32) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetPendingExceptionObject() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetStubContext() @@ -18157,8 +19040,6 @@ System.Private.CoreLib.dll:System.Threading.Lock.ExitAll() System.Private.CoreLib.dll:System.Threading.Lock.ExitImpl() System.Private.CoreLib.dll:System.Threading.Lock.get_IsHeldByCurrentThread() System.Private.CoreLib.dll:System.Threading.Lock.get_IsSingleProcessor() -System.Private.CoreLib.dll:System.Threading.Lock.get_LockIdForEvents() -System.Private.CoreLib.dll:System.Threading.Lock.get_OwningThreadId() System.Private.CoreLib.dll:System.Threading.Lock.get_ShouldStopPreemptingWaiters() System.Private.CoreLib.dll:System.Threading.Lock.get_WaitEvent() System.Private.CoreLib.dll:System.Threading.Lock.GetOrCreateCondition() @@ -19302,6 +20183,7 @@ System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue System.Threading System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue System.Threading.ThreadPoolWorkQueueThreadLocals::workQueue System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue..cctor() System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue..ctor() +System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.AssignWorkItemQueue(System.Threading.ThreadPoolWorkQueueThreadLocals) System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.CreateThreadLocals() System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.Dequeue(System.Threading.ThreadPoolWorkQueueThreadLocals, System.Boolean&) System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.Dispatch() @@ -19698,8 +20580,6 @@ System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeResult::timeZoneOffset -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration0 -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration1 System.Private.CoreLib.dll:System.TimeSpan System.Globalization.TimeSpanParse/TimeSpanResult::parsedTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.Threading.Timeout::InfiniteTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MaxValue @@ -20263,6 +21143,25 @@ System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.Runtime.Ser System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.String) System.Private.CoreLib.dll:System.UInt128 +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::NegativeInfinityValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::NegativeZeroValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::OneValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::PositiveInfinityValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::QuietNaNValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.Zero() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::ZeroValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::MaxValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::MinValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() @@ -20275,6 +21174,7 @@ System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(S System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt128.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt128.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.UInt128.DivRem(System.UInt128, System.UInt128) @@ -20287,6 +21187,7 @@ System.Private.CoreLib.dll:System.UInt128.get_One() System.Private.CoreLib.dll:System.UInt128.get_Upper() System.Private.CoreLib.dll:System.UInt128.get_Zero() System.Private.CoreLib.dll:System.UInt128.GetHashCode() +System.Private.CoreLib.dll:System.UInt128.IsOddInteger(System.UInt128) System.Private.CoreLib.dll:System.UInt128.LeadingZeroCount(System.UInt128) System.Private.CoreLib.dll:System.UInt128.LeadingZeroCountAsInt32(System.UInt128) System.Private.CoreLib.dll:System.UInt128.Log2(System.UInt128) @@ -20307,8 +21208,14 @@ System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Division(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Equality(System.UInt128, System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_ExclusiveOr(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Decimal) => System.UInt128 System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Double) => System.UInt128 System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Int16) => System.UInt128 @@ -20346,6 +21253,7 @@ System.Private.CoreLib.dll:System.UInt128.op_Inequality(System.UInt128, System.U System.Private.CoreLib.dll:System.UInt128.op_LeftShift(System.UInt128, System.Int32) System.Private.CoreLib.dll:System.UInt128.op_LessThan(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_LessThanOrEqual(System.UInt128, System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_Modulus(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Multiply(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_OnesComplement(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_RightShift(System.UInt128, System.Int32) @@ -20360,10 +21268,13 @@ System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInf System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.IsGreaterThanAsUnsigned(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy10(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy16(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsFinite(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsInfinity(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsNaN(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsNegative(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsZero(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt128, out TOther&) @@ -20372,9 +21283,11 @@ System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt128[] System.Numerics.Decimal128::UInt128Powers10 System.Private.CoreLib.dll:System.UInt16 System.Private.CoreLib.dll:System.UInt16 System.Double::System.IBinaryFloatParseAndFormatInfo.DenormalMantissaBits() System.Private.CoreLib.dll:System.UInt16 System.Double::System.IBinaryFloatParseAndFormatInfo.ExponentBits() @@ -20417,16 +21330,22 @@ System.Private.CoreLib.dll:System.UInt16 System.Threading.LowLevelLifoSemaphore/ System.Private.CoreLib.dll:System.UInt16 System.UInt16::m_value System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt16.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt16.CompareTo(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt16.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt16.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt16.DivRem(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Equals(System.Object) System.Private.CoreLib.dll:System.UInt16.Equals(System.UInt16) System.Private.CoreLib.dll:System.UInt16.GetHashCode() System.Private.CoreLib.dll:System.UInt16.GetTypeCode() +System.Private.CoreLib.dll:System.UInt16.IsOddInteger(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.LeadingZeroCount(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.Log2(System.UInt16) System.Private.CoreLib.dll:System.UInt16.Max(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Min(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -20456,32 +21375,42 @@ System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IAdditionOperators.op_Addition(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_LessThan(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IDivisionOperators.op_Division(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IEqualityOperators.op_Equality(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IEqualityOperators.op_Inequality(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsFinite(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsInfinity(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsNaN(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsNegative(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsZero(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IShiftOperators.op_LeftShift(System.UInt16, System.Int32) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IShiftOperators.op_RightShift(System.UInt16, System.Int32) System.Private.CoreLib.dll:System.UInt16.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt16) System.Private.CoreLib.dll:System.UInt16.ToString() System.Private.CoreLib.dll:System.UInt16.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt16.TryConvertFromChecked`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryConvertFromSaturating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryConvertFromTruncating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20518,16 +21447,26 @@ System.Private.CoreLib.dll:System.UInt32 System.Decimal::High() System.Private.CoreLib.dll:System.UInt32 System.Decimal::Low() System.Private.CoreLib.dll:System.UInt32 System.Decimal::Mid() System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::High() +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::Low() +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::Mid() System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::uflags System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::uhi System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::ulo System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::umid +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U0 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U1 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U2 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U0 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U1 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U2 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U3 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U0 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U1 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U2 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U3 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U4 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U5 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/PowerOvfl::Hi System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleGroupingData::value__ System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleNumberData::value__ System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleStringData::value__ @@ -20547,8 +21486,23 @@ System.Private.CoreLib.dll:System.UInt32 System.HashCode::s_seed System.Private.CoreLib.dll:System.UInt32 System.HexConverter/Casing::value__ System.Private.CoreLib.dll:System.UInt32 System.Number/BigInteger/BlocksBuffer::e0 System.Private.CoreLib.dll:System.UInt32 System.Number/BinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Number/DiyFp128::_sign System.Private.CoreLib.dll:System.UInt32 System.Number/HexParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Number/IHexOrBinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::_value +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.Zero() System.Private.CoreLib.dll:System.UInt32 System.Reflection.InvocationFlags::value__ System.Private.CoreLib.dll:System.UInt32 System.Runtime.CompilerServices.AsyncInstrumentation/Flags::value__ System.Private.CoreLib.dll:System.UInt32 System.Runtime.CompilerServices.AsyncProfiler/Info::ContinuationIndex @@ -20595,6 +21549,7 @@ System.Private.CoreLib.dll:System.UInt32 System.TimeZoneInfo/TZifHead::TypeCount System.Private.CoreLib.dll:System.UInt32 System.UInt32::m_value System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt32.CompareTo(System.Object) @@ -20602,10 +21557,12 @@ System.Private.CoreLib.dll:System.UInt32.CompareTo(System.UInt32) System.Private.CoreLib.dll:System.UInt32.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt32.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt32.DivRem(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.Equals(System.Object) System.Private.CoreLib.dll:System.UInt32.Equals(System.UInt32) System.Private.CoreLib.dll:System.UInt32.GetHashCode() System.Private.CoreLib.dll:System.UInt32.GetTypeCode() +System.Private.CoreLib.dll:System.UInt32.IsOddInteger(System.UInt32) System.Private.CoreLib.dll:System.UInt32.LeadingZeroCount(System.UInt32) System.Private.CoreLib.dll:System.UInt32.Log2(System.UInt32) System.Private.CoreLib.dll:System.UInt32.Max(System.UInt32, System.UInt32) @@ -20637,27 +21594,36 @@ System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IAdditionOperators.op_Addition(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_LessThan(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IDivisionOperators.op_Division(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IEqualityOperators.op_Equality(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IEqualityOperators.op_Inequality(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsFinite(System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsInfinity(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsNaN(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsNegative(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsZero(System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IShiftOperators.op_LeftShift(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IShiftOperators.op_RightShift(System.UInt32, System.Int32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt32) System.Private.CoreLib.dll:System.UInt32.ToString() @@ -20689,11 +21655,19 @@ System.Private.CoreLib.dll:System.UInt64 System.Decimal::_lo64 System.Private.CoreLib.dll:System.UInt64 System.Decimal::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc::ulomid +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::High64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::Low64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::uhigh64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::ulo64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf16::High64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf16::Low64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::High64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::Mid64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::uhigh64LE System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::ulo64LE System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::umid64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/PowerOvfl::MidLo System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.DenormalMantissaMask() System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.InfinityBits() System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.MaxMantissaFastPath() @@ -20722,12 +21696,33 @@ System.Private.CoreLib.dll:System.UInt64 System.Int128::_upper System.Private.CoreLib.dll:System.UInt64 System.Marvin::k__BackingField System.Private.CoreLib.dll:System.UInt64 System.Marvin::DefaultSeed() System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp::f +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_hi +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_lo +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::High +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::Low +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal128::_lower +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal128::_upper +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::_value +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.Zero() System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_00 System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_01 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s0 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s1 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s2 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s3 +System.Private.CoreLib.dll:System.UInt64 System.Runtime.CompilerServices.AsyncProfiler/Info::DispatcherId System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.ComWrappers/ManagedObjectWrapper::RefCount System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_ui8 System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.SafeBuffer::ByteLength() @@ -20747,10 +21742,12 @@ System.Private.CoreLib.dll:System.UInt64 System.UInt128::Upper() System.Private.CoreLib.dll:System.UInt64 System.UInt64::m_value System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) @@ -20758,6 +21755,7 @@ System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() System.Private.CoreLib.dll:System.UInt64.GetTypeCode() +System.Private.CoreLib.dll:System.UInt64.IsOddInteger(System.UInt64) System.Private.CoreLib.dll:System.UInt64.LeadingZeroCount(System.UInt64) System.Private.CoreLib.dll:System.UInt64.Log2(System.UInt64) System.Private.CoreLib.dll:System.UInt64.Max(System.UInt64, System.UInt64) @@ -20789,32 +21787,42 @@ System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IAdditionOperators.op_Addition(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_LessThan(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IDivisionOperators.op_Division(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IEqualityOperators.op_Equality(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IEqualityOperators.op_Inequality(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsFinite(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsInfinity(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsNaN(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsNegative(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsZero(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IShiftOperators.op_LeftShift(System.UInt64, System.Int32) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IShiftOperators.op_RightShift(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.UInt64.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt64) System.Private.CoreLib.dll:System.UInt64.ToString() System.Private.CoreLib.dll:System.UInt64.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt64.TryConvertFromChecked`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryConvertFromSaturating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryConvertFromTruncating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20859,46 +21867,62 @@ System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::_value System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::MaxValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::MinValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::Zero System.Private.CoreLib.dll:System.UIntPtr.CompareTo(System.Object) System.Private.CoreLib.dll:System.UIntPtr.CompareTo(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UIntPtr.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UIntPtr.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UIntPtr.DivRem(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Equals(System.Object) System.Private.CoreLib.dll:System.UIntPtr.Equals(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.get_MaxValue() System.Private.CoreLib.dll:System.UIntPtr.get_MinValue() System.Private.CoreLib.dll:System.UIntPtr.GetHashCode() +System.Private.CoreLib.dll:System.UIntPtr.IsOddInteger(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.LeadingZeroCount(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.Log2(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Max(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Min(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.op_Equality(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.op_Inequality(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IAdditionOperators.op_Addition(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_GreaterThan(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_LessThan(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IDivisionOperators.op_Division(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMultiplyOperators.op_Multiply(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsFinite(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsInfinity(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsNaN(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsNegative(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsZero(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToChecked`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IShiftOperators.op_LeftShift(System.UIntPtr, System.Int32) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IShiftOperators.op_RightShift(System.UIntPtr, System.Int32) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.ISubtractionOperators.op_Subtraction(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.ToString() System.Private.CoreLib.dll:System.UIntPtr.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromChecked`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromSaturating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromTruncating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -21036,6 +22060,7 @@ System.Private.CoreLib.dll:T System.Reflection.MethodBase/ArgumentData`1::_arg0 System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray2`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray3`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray4`1::t +System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray5`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray8`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.StrongBox`1::Value System.Private.CoreLib.dll:T System.Runtime.InteropServices.GCHandle`1::Target() @@ -21119,9 +22144,12 @@ System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::Negati System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::NegativeZero() System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::PositiveInfinity() System.Private.CoreLib.dll:TSelf System.Numerics.IMinMaxValue`1::MaxValue() +System.Private.CoreLib.dll:TSelf System.Numerics.IMinMaxValue`1::MinValue() System.Private.CoreLib.dll:TSelf System.Numerics.INumberBase`1::One() System.Private.CoreLib.dll:TSelf System.Numerics.INumberBase`1::Zero() System.Private.CoreLib.dll:TSelf System.Runtime.Intrinsics.ISimdVector`2::Zero() +System.Private.CoreLib.dll:TSignificand System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:TSignificand System.Number/DecodedDecimalIeee754`1::Significand() System.Private.CoreLib.dll:TState System.Threading.QueueUserWorkItemCallback`1::_state System.Private.CoreLib.dll:TState System.Threading.QueueUserWorkItemCallbackDefaultContext`1::_state System.Private.CoreLib.dll:TStateMachine System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1::StateMachine @@ -21136,6 +22164,19 @@ System.Private.CoreLib.dll:TValue System.Collections.Generic.Dictionary`2::Item( System.Private.CoreLib.dll:TValue System.Collections.Generic.Dictionary`2/Entry::value System.Private.CoreLib.dll:TValue System.Collections.Generic.KeyValuePair`2::value System.Private.CoreLib.dll:TValue System.Collections.Generic.KeyValuePair`2::Value() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G0G1Mask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::GwPlus4SignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::MaxSignificand() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NaN() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NaNMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NegativeInfinity() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::PositiveInfinity() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::SignMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::Zero() System.Private.CoreLib.dll:TValue System.Runtime.CompilerServices.GenericCache`2/Entry::_value System.Private.CoreLib.dll:V System.Reflection.CerHashtable`2::Item(K) System.Private.CoreLib.dll:V[] System.Reflection.CerHashtable`2/Table::m_values diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-size.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-size.txt index d484584005bc..c56543a52afa 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-Interpreter-size.txt @@ -1,29 +1,29 @@ -AppBundleSize: 9,444,813 bytes (9,223.5 KB = 9.0 MB) +AppBundleSize: 9,841,352 bytes (9,610.7 KB = 9.4 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 1,060 bytes (1.0 KB = 0.0 MB) + 1,039 bytes (1.0 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 166,888 bytes (163.0 KB = 0.2 MB) + 166,104 bytes (162.2 KB = 0.2 MB) Contents/MonoBundle/libcoreclr.dylib: - 5,482,504 bytes (5,354.0 KB = 5.2 MB) + 5,575,296 bytes (5,444.6 KB = 5.3 MB) Contents/MonoBundle/libSystem.Globalization.Native.dylib: - 92,776 bytes (90.6 KB = 0.1 MB) + 126,112 bytes (123.2 KB = 0.1 MB) Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: - 1,413,320 bytes (1,380.2 KB = 1.3 MB) + 1,446,480 bytes (1,412.6 KB = 1.4 MB) Contents/MonoBundle/libSystem.Native.dylib: - 130,440 bytes (127.4 KB = 0.1 MB) + 163,584 bytes (159.8 KB = 0.2 MB) Contents/MonoBundle/libSystem.Net.Security.Native.dylib: - 53,544 bytes (52.3 KB = 0.1 MB) + 86,592 bytes (84.6 KB = 0.1 MB) Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: - 209,928 bytes (205.0 KB = 0.2 MB) + 245,600 bytes (239.8 KB = 0.2 MB) Contents/MonoBundle/Microsoft.MacCatalyst.dll: - 101,888 bytes (99.5 KB = 0.1 MB) + 100,864 bytes (98.5 KB = 0.1 MB) Contents/MonoBundle/runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) Contents/MonoBundle/SizeTestApp.dll: - 7,680 bytes (7.5 KB = 0.0 MB) + 7,168 bytes (7.0 KB = 0.0 MB) Contents/MonoBundle/System.Collections.Immutable.dll: - 14,848 bytes (14.5 KB = 0.0 MB) + 14,336 bytes (14.0 KB = 0.0 MB) Contents/MonoBundle/System.Diagnostics.StackTrace.dll: 8,192 bytes (8.0 KB = 0.0 MB) Contents/MonoBundle/System.IO.Compression.dll: @@ -31,7 +31,7 @@ Contents/MonoBundle/System.IO.Compression.dll: Contents/MonoBundle/System.IO.MemoryMappedFiles.dll: 22,016 bytes (21.5 KB = 0.0 MB) Contents/MonoBundle/System.Private.CoreLib.dll: - 1,620,992 bytes (1,583.0 KB = 1.5 MB) + 1,759,232 bytes (1,718.0 KB = 1.7 MB) Contents/MonoBundle/System.Reflection.Metadata.dll: 84,480 bytes (82.5 KB = 0.1 MB) Contents/MonoBundle/System.Runtime.dll: diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt index 3f7562da28c3..a10d7ed66fec 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-preservedapis.txt @@ -1944,10 +1944,14 @@ System.Private.CoreLib.dll:/__StaticArrayInitTypeS System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::2F3EFC9595514E83DED03093C4F3E3C781A650E1AAB8CA350537CD1A47E1EE8E System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::F8919BA0F50317229A66884F9CE4E004B755100D8A4000A28D468B0627472F4D +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128_Align=8 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128_Align=8 ::4EFE2D3A64964C812874074A7FEE8B5A2B4425064A81A9D44C0E7A3025C716388 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316 ::A72EB4166B1B422391E0F6E483BEF87AE75881E655BCB152E37F3D9688B2AA71 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2 ::7BEC6AD454781FDCD8D475B3418629CBABB3BF9CA66FA80009D608A1A60D06962 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8 ::DD471F12FFA94CC557A02A91C2CBB95F551AB28C8BBF297B2F953B8886BCCF6D8 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552 ::3A2A62DD9288C777284B5B71FB3EFB59CFDF6BF81068A16795E6155DB8BFA701 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=16 @@ -1986,6 +1990,8 @@ System.Private.CoreLib.dll:/__StaticArrayInitTypeS System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=256_Align=8 ::40BC6C50487BFA78776C051EF7555931E4F15E5CEE9481EB280B1C2630B906B48 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=2 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=2 ::374EE580A55269D9E298B7EFD9DB0DFE1798E301679B89E48D722345EB74B59B2 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=4 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=4 ::2106C9B520169CFE919ED2D7BAE85C716D866D8DC2716F286D9C95511F1B9B014 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4 ::74BCD6ED20AF2231F2BB1CDE814C5F4FF48E54BAC46029EEF90DDF4A208E2B204 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32 @@ -2403,6 +2409,7 @@ System.Private.CoreLib.dll:method System.Void *(System.Byte&) System.RuntimeType System.Private.CoreLib.dll:method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::OnCompletedValueTaskSource System.Private.CoreLib.dll:method System.Void *(System.Object,System.Int16,System.Byte&) System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::_getResult System.Private.CoreLib.dll:method System.Void *(System.Object) System.RuntimeType/ActivatorCache::_pfnRefCtor +System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.Continuation,System.Int32,System.Action) System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterContinuation System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*) System.Runtime.CompilerServices.PortableTailCallFrame::NextCall System.Private.CoreLib.dll:method System.Void *(System.Threading.Tasks.Task,System.Byte&) System.Runtime.CompilerServices.RuntimeAsyncTaskContinuation::_getResult System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle @@ -2428,7 +2435,7 @@ System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Path() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_SupportsRandomAccess() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_ThreadPoolBinding() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Type() -System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeek() +System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeekCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileLength() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileTypeCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetThreadPoolValueTaskSource() @@ -2877,6 +2884,9 @@ System.Private.CoreLib.dll:System.Boolean System.Collections.ObjectModel.ReadOnl System.Private.CoreLib.dll:System.Boolean System.DateTimeRawInfo::hasSameDateAndTimeSeparators System.Private.CoreLib.dll:System.Boolean System.Decimal/DecCalc::IsNegative() System.Private.CoreLib.dll:System.Boolean System.DefaultBinder/BinderState::_isParamArray +System.Private.CoreLib.dll:System.Boolean System.Delegate::HasSingleTarget() +System.Private.CoreLib.dll:System.Boolean System.Delegate::IsClosed() +System.Private.CoreLib.dll:System.Boolean System.Delegate::IsUnmanagedFunctionPtr() System.Private.CoreLib.dll:System.Boolean System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Diagnostics.Debugger::IsAttached() System.Private.CoreLib.dll:System.Boolean System.Diagnostics.StackFrame::_isLastFrameFromForeignExceptionStackTrace @@ -3001,9 +3011,10 @@ System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::ForceI System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::FormatJapaneseFirstYearAsANumber() System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::ShowILOffsets() System.Private.CoreLib.dll:System.Boolean System.Memory`1::IsEmpty() -System.Private.CoreLib.dll:System.Boolean System.MulticastDelegate::HasSingleTarget() System.Private.CoreLib.dll:System.Boolean System.Nullable`1::hasValue System.Private.CoreLib.dll:System.Boolean System.Nullable`1::HasValue() +System.Private.CoreLib.dll:System.Boolean System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Number/DecodedDecimalIeee754`1::Signed() System.Private.CoreLib.dll:System.Boolean System.Number/NumberBuffer::HasNonZeroTail System.Private.CoreLib.dll:System.Boolean System.Number/NumberBuffer::IsNegative System.Private.CoreLib.dll:System.Boolean System.Numerics.Vector::IsHardwareAccelerated() @@ -3115,8 +3126,9 @@ System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_r System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_suppressContextualReflectionContext System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_throwOnError System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::SupportsUnboundGenerics() -System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncMethodBuilderCore::TrackAsyncMethodCompletion() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::CurrentContinuationCompleted +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::CurrentContinuationResumes +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::ReachedLastContinuation System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::_finalized System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::_invalid System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::HasCapacity() @@ -3721,12 +3733,12 @@ System.Private.CoreLib.dll:System.Byte modreq(System.Runtime.CompilerServices.Is System.Private.CoreLib.dll:System.Byte System.Byte::m_value System.Private.CoreLib.dll:System.Byte System.Byte::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Byte System.Collections.Generic.InsertionBehavior::value__ System.Private.CoreLib.dll:System.Byte System.DateTimeParse/DS::value__ System.Private.CoreLib.dll:System.Byte System.Decimal::Scale() -System.Private.CoreLib.dll:System.Byte System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::value__ System.Private.CoreLib.dll:System.Byte System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::value__ System.Private.CoreLib.dll:System.Byte System.DTSubStringType::value__ System.Private.CoreLib.dll:System.Byte System.GCMemoryInfoData::_compacted @@ -3771,12 +3783,17 @@ System.Private.CoreLib.dll:System.Byte System.TimeZoneInfo/TZifType::Abbreviatio System.Private.CoreLib.dll:System.Byte System.TimeZoneInfo/TZVersion::value__ System.Private.CoreLib.dll:System.Byte.CompareTo(System.Byte) System.Private.CoreLib.dll:System.Byte.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Byte.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Byte.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Byte.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Byte.DivRem(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Equals(System.Byte) System.Private.CoreLib.dll:System.Byte.Equals(System.Object) System.Private.CoreLib.dll:System.Byte.GetHashCode() System.Private.CoreLib.dll:System.Byte.GetTypeCode() +System.Private.CoreLib.dll:System.Byte.IsOddInteger(System.Byte) +System.Private.CoreLib.dll:System.Byte.LeadingZeroCount(System.Byte) +System.Private.CoreLib.dll:System.Byte.Log2(System.Byte) System.Private.CoreLib.dll:System.Byte.Max(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Min(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -3812,32 +3829,42 @@ System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastFrom(Sys System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastFrom(System.UInt64) System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastToUInt32(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IAdditionOperators.op_Addition(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_GreaterThan(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_LessThan(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IDivisionOperators.op_Division(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IEqualityOperators.op_Equality(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IEqualityOperators.op_Inequality(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Byte.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Byte.System.Numerics.IMultiplyOperators.op_Multiply(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsFinite(System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsInfinity(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsNaN(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsNegative(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsZero(System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToChecked`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.IShiftOperators.op_LeftShift(System.Byte, System.Int32) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IShiftOperators.op_RightShift(System.Byte, System.Int32) System.Private.CoreLib.dll:System.Byte.System.Numerics.ISubtractionOperators.op_Subtraction(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Byte) System.Private.CoreLib.dll:System.Byte.ToString() System.Private.CoreLib.dll:System.Byte.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Byte.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Byte.TryConvertFromChecked`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryConvertFromSaturating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryConvertFromTruncating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -3906,6 +3933,7 @@ System.Private.CoreLib.dll:System.Char System.Buffers.RangeCharSearchValues`1::_ System.Private.CoreLib.dll:System.Char System.Char::m_value System.Private.CoreLib.dll:System.Char System.Char::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Char System.CharEnumerator::Current() @@ -3986,27 +4014,39 @@ System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastFrom(Sys System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastFrom(System.UInt64) System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastToUInt32(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IAdditionOperators.op_Addition(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryInteger.GetByteCount() +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryInteger.LeadingZeroCount(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryNumber.Log2(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_GreaterThan(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_LessThan(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IDivisionOperators.op_Division(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IEqualityOperators.op_Equality(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IEqualityOperators.op_Inequality(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Char.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Char.System.Numerics.IMultiplyOperators.op_Multiply(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsFinite(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsInfinity(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsNaN(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsNegative(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsOddInteger(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsZero(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToChecked`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.IShiftOperators.op_LeftShift(System.Char, System.Int32) +System.Private.CoreLib.dll:System.Char.System.Numerics.IShiftOperators.op_RightShift(System.Char, System.Int32) System.Private.CoreLib.dll:System.Char.System.Numerics.ISubtractionOperators.op_Subtraction(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Char) System.Private.CoreLib.dll:System.Char.ToString() @@ -5195,6 +5235,7 @@ System.Private.CoreLib.dll:System.Decimal System.Decimal::MultiplicativeIdentity System.Private.CoreLib.dll:System.Decimal System.Decimal::NegativeOne System.Private.CoreLib.dll:System.Decimal System.Decimal::One System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Decimal System.Decimal::Zero @@ -5218,6 +5259,7 @@ System.Private.CoreLib.dll:System.Decimal..ctor(System.UInt64) System.Private.CoreLib.dll:System.Decimal.AsMutable(System.Decimal&) System.Private.CoreLib.dll:System.Decimal.CompareTo(System.Decimal) System.Private.CoreLib.dll:System.Decimal.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Decimal.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Decimal.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Decimal.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Decimal.DecDivMod1E9(System.Decimal&) @@ -5232,8 +5274,10 @@ System.Private.CoreLib.dll:System.Decimal.get_Scale() System.Private.CoreLib.dll:System.Decimal.GetHashCode() System.Private.CoreLib.dll:System.Decimal.GetTypeCode() System.Private.CoreLib.dll:System.Decimal.IsNegative(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.IsOddInteger(System.Decimal) System.Private.CoreLib.dll:System.Decimal.IsValid(System.Int32) System.Private.CoreLib.dll:System.Decimal.op_Addition(System.Decimal, System.Decimal) +System.Private.CoreLib.dll:System.Decimal.op_Division(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Equality(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Explicit(System.Decimal) => System.Byte System.Private.CoreLib.dll:System.Decimal.op_Explicit(System.Decimal) => System.Char @@ -5262,6 +5306,7 @@ System.Private.CoreLib.dll:System.Decimal.op_Implicit(System.UInt64) => System.D System.Private.CoreLib.dll:System.Decimal.op_Inequality(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_LessThan(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_LessThanOrEqual(System.Decimal, System.Decimal) +System.Private.CoreLib.dll:System.Decimal.op_Multiply(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Subtraction(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_UnaryNegation(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -5285,11 +5330,14 @@ System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt16(System.IF System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Decimal.System.Numerics.IMinMaxValue.get_MinValue() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsFinite(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsInfinity(System.Decimal) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsNaN(System.Decimal) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsZero(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertToChecked`1(System.Decimal, out TOther&) @@ -5310,40 +5358,77 @@ System.Private.CoreLib.dll:System.Decimal.ToUInt64(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Truncate(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Truncate(System.Decimal&) System.Private.CoreLib.dll:System.Decimal.TryConvertFrom`1(TOther, out System.Decimal&) +System.Private.CoreLib.dll:System.Decimal.TryConvertFromChecked`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.TryConvertTo`1(System.Decimal, out TOther&) System.Private.CoreLib.dll:System.Decimal.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal/DecCalc +System.Private.CoreLib.dll:System.Decimal/DecCalc..cctor() +System.Private.CoreLib.dll:System.Decimal/DecCalc.Add32To96(System.Decimal/DecCalc/Buf12&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecAddSub(System.Decimal/DecCalc&, System.Decimal/DecCalc&, System.Boolean) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecDivMod1E9(System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPoint`1(System.UInt64, System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPointExact(System.UInt64, System.UInt32, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div128By64(System.Decimal/DecCalc/Buf16&, System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div128By96(System.Decimal/DecCalc/Buf16&, System.Decimal/DecCalc/Buf12&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div64By32(System.UInt64, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96By32(System.Decimal/DecCalc/Buf12&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96By64(System.Decimal/DecCalc/Buf12&, System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96ByConst(System.UInt64&, System.UInt32&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DivByConst(System.UInt32*, System.UInt32, out System.UInt32&, out System.UInt32&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Equals(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.get_High() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_IsNegative() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Mid() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Scale() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_UInt32Powers10() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_UInt64Powers10() System.Private.CoreLib.dll:System.Decimal/DecCalc.GetHashCode(System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale(System.Decimal/DecCalc/Buf12&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale(System.Decimal/DecCalc/Buf16&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale64(System.Decimal/DecCalc/Buf12&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.InternalRound(System.Decimal/DecCalc&, System.UInt32, System.MidpointRounding) +System.Private.CoreLib.dll:System.Decimal/DecCalc.OverflowUnscale(System.Decimal/DecCalc/Buf12&, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Decimal/DecCalc.Pow5(System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.RoundShiftRightEven(System.UInt128, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.ScaleResult(System.Decimal/DecCalc/Buf24*, System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.SearchScale(System.UInt64, System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.set_High(System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Low(System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Low64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Mid(System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.Unscale(System.UInt32&, System.UInt64&, System.Int32&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarCyFromDec(System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecCmp(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecCmpSub(System.Decimal&, System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecDiv(System.Decimal/DecCalc&, System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromFloat`1(TNumber, out System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromR4(System.Single, out System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromR8(System.Double, out System.Decimal/DecCalc&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecMul(System.Decimal/DecCalc&, System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarR4FromDec(System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarR8FromDec(System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 System.Decimal/DecCalc/Buf16::High96 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 System.Decimal/DecCalc/Buf16::Low96 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.get_High64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.set_High64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.set_Low64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.get_High64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.set_High64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.set_Low64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24 System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_High64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_Low64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_Mid64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl..ctor(System.UInt32, System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl[] System.Decimal/DecCalc::PowerOvflValues System.Private.CoreLib.dll:System.DefaultBinder System.Private.CoreLib.dll:System.DefaultBinder System.DefaultBinder::Instance System.Private.CoreLib.dll:System.DefaultBinder..cctor() @@ -5387,47 +5472,74 @@ System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/ System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/Primitives::UInt32 System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/Primitives::UInt64 System.Private.CoreLib.dll:System.Delegate +System.Private.CoreLib.dll:System.Delegate System.Delegate/Wrapper::Value System.Private.CoreLib.dll:System.Delegate System.Threading.CancellationTokenSource/CallbackNode::Callback System.Private.CoreLib.dll:System.Delegate System.Threading.Tasks.Task::m_action System.Private.CoreLib.dll:System.Delegate System.Threading.Thread/StartHelper::_start -System.Private.CoreLib.dll:System.Delegate.g____PInvoke|19_0(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags) -System.Private.CoreLib.dll:System.Delegate.g____PInvoke|32_0(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.g____PInvoke|34_0(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Delegate/BindToMethodDetails*) +System.Private.CoreLib.dll:System.Delegate.g____PInvoke|39_0(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, System.Delegate/BindToMethodDetails*) System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Runtime.CompilerServices.MethodTable*, System.IntPtr) System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Object, System.IRuntimeMethodInfo, System.RuntimeType, System.DelegateBindingFlags) -System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags) +System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags, System.Runtime.CompilerServices.ObjectHandleOnStack, out System.Delegate/BindToMethodDetails&) System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) -System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) +System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) +System.Private.CoreLib.dll:System.Delegate.CtorClosed(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorClosedStatic(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleClosedStatic(System.Object, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleOpen(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleVirtualDispatch(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorOpen(System.Object, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorRTClosed(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorVirtualDispatch(System.Object, System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.Delegate.DelegateConstruct(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.DeleteFromInvocationList(System.ReadOnlySpan`1, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Delegate.EnumerateInvocationList`1(TDelegate) System.Private.CoreLib.dll:System.Delegate.Equals(System.Object) -System.Private.CoreLib.dll:System.Delegate.FindMethodHandle() -System.Private.CoreLib.dll:System.Delegate.FindMethodHandle(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.get_HasSingleTarget() +System.Private.CoreLib.dll:System.Delegate.get_IsClosed() +System.Private.CoreLib.dll:System.Delegate.get_IsUnmanagedFunctionPtr() System.Private.CoreLib.dll:System.Delegate.get_Method() +System.Private.CoreLib.dll:System.Delegate.get_MethodDesc() System.Private.CoreLib.dll:System.Delegate.GetHashCode() System.Private.CoreLib.dll:System.Delegate.GetInvokeMethod() System.Private.CoreLib.dll:System.Delegate.GetInvokeMethod(System.Runtime.CompilerServices.MethodTable*) +System.Private.CoreLib.dll:System.Delegate.GetMethodDesc() +System.Private.CoreLib.dll:System.Delegate.GetMethodDesc(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.GetMethodImpl() +System.Private.CoreLib.dll:System.Delegate.GetMethodImplUncached() System.Private.CoreLib.dll:System.Delegate.GetMulticastInvoke() System.Private.CoreLib.dll:System.Delegate.GetMulticastInvoke(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.GetMulticastInvokeSlow(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.GetTargetForSingleCastInstanceDelegate() System.Private.CoreLib.dll:System.Delegate.InitializeVirtualCallStub(System.IntPtr) System.Private.CoreLib.dll:System.Delegate.InitializeVirtualCallStub(System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.InternalAlloc(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.InternalAlloc(System.RuntimeType) -System.Private.CoreLib.dll:System.Delegate.InternalEqualMethodHandles(System.Delegate, System.Delegate) -System.Private.CoreLib.dll:System.Delegate.InternalEqualMethodHandles(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.InternalEqualTypes(System.Object, System.Object) +System.Private.CoreLib.dll:System.Delegate.NewMulticastDelegate(System.Delegate/Wrapper[], System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Delegate.op_Equality(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.Remove(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.RemoveImpl(System.Delegate) +System.Private.CoreLib.dll:System.Delegate.ThrowNullThisInDelegateToInstance() +System.Private.CoreLib.dll:System.Delegate.TryGetAt(System.Int32) +System.Private.CoreLib.dll:System.Delegate.TryGetInvocations(out System.ReadOnlySpan`1&) +System.Private.CoreLib.dll:System.Delegate.TrySetSlot(System.Delegate&, System.Delegate) +System.Private.CoreLib.dll:System.Delegate/BindToMethodDetails System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1 System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1..ctor(System.MulticastDelegate) System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.get_Current() System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.GetEnumerator() System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.MoveNext() +System.Private.CoreLib.dll:System.Delegate/Wrapper +System.Private.CoreLib.dll:System.Delegate/Wrapper..ctor(System.Delegate) +System.Private.CoreLib.dll:System.Delegate/Wrapper.Equals(System.Delegate/Wrapper) +System.Private.CoreLib.dll:System.Delegate/Wrapper.Equals(System.Object) +System.Private.CoreLib.dll:System.Delegate/Wrapper.GetHashCode() System.Private.CoreLib.dll:System.DelegateBindingFlags System.Private.CoreLib.dll:System.DelegateBindingFlags System.DelegateBindingFlags::CaselessMatching System.Private.CoreLib.dll:System.DelegateBindingFlags System.DelegateBindingFlags::ClosedDelegateOnly @@ -5654,20 +5766,6 @@ System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource System.Diagnostics.Tracing.NativeRuntimeEventSource::Log System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource..cctor() System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource..ctor() -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.IntPtr, System.IntPtr, System.UInt64) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStart(System.Threading.Lock) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStop(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStop(System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogContentionStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.IntPtr, System.IntPtr, System.UInt64) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogContentionStop(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogWaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.IntPtr, System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogWaitHandleWaitStop(System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.IntPtr, System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.Object) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStop(System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::Managed -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::Native System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::MonitorWait System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::Unknown @@ -5693,9 +5791,11 @@ System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatingPointIeee754.PositiveInfinity() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Double System.NotFiniteNumberException::_offendingNumber +System.Private.CoreLib.dll:System.Double System.Number/SqrtCoefficients::C System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_date System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_r8 System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.NFloat::_value @@ -5721,9 +5821,11 @@ System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalDays() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalHours() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalMilliseconds() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalSeconds() +System.Private.CoreLib.dll:System.Double.Abs(System.Double) System.Private.CoreLib.dll:System.Double.CompareTo(System.Double) System.Private.CoreLib.dll:System.Double.CompareTo(System.Object) System.Private.CoreLib.dll:System.Double.ConvertToIntegerNative`1(System.Double) +System.Private.CoreLib.dll:System.Double.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Double.CreateDouble(System.Boolean, System.UInt16, System.UInt64) System.Private.CoreLib.dll:System.Double.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Double.CreateTruncating`1(TOther) @@ -5732,14 +5834,19 @@ System.Private.CoreLib.dll:System.Double.Equals(System.Object) System.Private.CoreLib.dll:System.Double.GetHashCode() System.Private.CoreLib.dll:System.Double.GetTypeCode() System.Private.CoreLib.dll:System.Double.IsFinite(System.Double) +System.Private.CoreLib.dll:System.Double.IsInfinity(System.Double) +System.Private.CoreLib.dll:System.Double.IsInteger(System.Double) System.Private.CoreLib.dll:System.Double.IsNaN(System.Double) System.Private.CoreLib.dll:System.Double.IsNaNOrZero(System.Double) System.Private.CoreLib.dll:System.Double.IsNegative(System.Double) +System.Private.CoreLib.dll:System.Double.IsOddInteger(System.Double) System.Private.CoreLib.dll:System.Double.IsZero(System.Double) +System.Private.CoreLib.dll:System.Double.Log2(System.Double) System.Private.CoreLib.dll:System.Double.Max(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.Min(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_Equality(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_GreaterThan(System.Double, System.Double) +System.Private.CoreLib.dll:System.Double.op_GreaterThanOrEqual(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_Inequality(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_LessThan(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_LessThanOrEqual(System.Double, System.Double) @@ -5789,15 +5896,20 @@ System.Private.CoreLib.dll:System.Double.System.IConvertible.ToUInt64(System.IFo System.Private.CoreLib.dll:System.Double.System.Numerics.IAdditionOperators.op_Addition(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Double, System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.IDivisionOperators.op_Division(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NaN() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NegativeInfinity() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NegativeZero() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_PositiveInfinity() System.Private.CoreLib.dll:System.Double.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Double.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Double.System.Numerics.IMultiplyOperators.op_Multiply(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.IsZero(System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertToChecked`1(System.Double, out TOther&) @@ -5808,6 +5920,7 @@ System.Private.CoreLib.dll:System.Double.System.Numerics.IUnaryNegationOperators System.Private.CoreLib.dll:System.Double.ToString() System.Private.CoreLib.dll:System.Double.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Double.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Double.Truncate(System.Double) System.Private.CoreLib.dll:System.Double.TryConvertFrom`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.TryConvertTo`1(System.Double, out TOther&) System.Private.CoreLib.dll:System.Double.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -6279,11 +6392,6 @@ System.Private.CoreLib.dll:System.GC/GC_ALLOC_FLAGS System.GC/GC_ALLOC_FLAGS::GC System.Private.CoreLib.dll:System.GC/GC_ALLOC_FLAGS System.GC/GC_ALLOC_FLAGS::GC_ALLOC_ZEROING_OPTIONAL System.Private.CoreLib.dll:System.GC/GCHeapHardLimitInfo System.Private.CoreLib.dll:System.GCGenerationInfo -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo0 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo1 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo2 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo3 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo4 System.Private.CoreLib.dll:System.GCKind System.Private.CoreLib.dll:System.GCKind System.GCKind::Any System.Private.CoreLib.dll:System.GCKind System.GCKind::Background @@ -7220,11 +7328,12 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globaliz System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::InvariantInfo() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..cctor() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData) -System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|58_0(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|60_0(System.IFormatProvider) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|167_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|166_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|165_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.AllowHyphenDuringParsing() +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CreateUtf8Cache(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyGroupSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencySymbolTChar`1() @@ -7247,6 +7356,7 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PercentPosi System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetFormat(System.Type) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetUtf8Span(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.InitializeInvariantAndNegativeSignFlags() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NaNSymbolTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NegativeInfinitySymbolTChar`1() @@ -7272,7 +7382,6 @@ System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalizatio System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowLeadingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowParentheses System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowThousands -System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingInvalidCharacters System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingSign System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::Any @@ -7681,6 +7790,7 @@ System.Private.CoreLib.dll:System.Guid/ParseFailure System.Guid/ParseFailure::Ov System.Private.CoreLib.dll:System.Guid/ParseFailure System.Guid/ParseFailure::Overflow_UInt32 System.Private.CoreLib.dll:System.Half System.Private.CoreLib.dll:System.Half System.Half::MaxValue() +System.Private.CoreLib.dll:System.Half System.Half::MinValue() System.Private.CoreLib.dll:System.Half System.Half::NaN() System.Private.CoreLib.dll:System.Half System.Half::NegativeInfinity() System.Private.CoreLib.dll:System.Half System.Half::NegativeZero() @@ -7692,6 +7802,7 @@ System.Private.CoreLib.dll:System.Half..ctor(System.UInt16) System.Private.CoreLib.dll:System.Half.AreZero(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.CompareTo(System.Half) System.Private.CoreLib.dll:System.Half.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Half.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Half.CreateDoubleNaN(System.Boolean, System.UInt64) System.Private.CoreLib.dll:System.Half.CreateHalfNaN(System.Boolean, System.UInt64) System.Private.CoreLib.dll:System.Half.CreateSaturating`1(TOther) @@ -7702,6 +7813,7 @@ System.Private.CoreLib.dll:System.Half.ExtractBiasedExponentFromBits(System.UInt System.Private.CoreLib.dll:System.Half.ExtractTrailingSignificandFromBits(System.UInt16) System.Private.CoreLib.dll:System.Half.get_BiasedExponent() System.Private.CoreLib.dll:System.Half.get_MaxValue() +System.Private.CoreLib.dll:System.Half.get_MinValue() System.Private.CoreLib.dll:System.Half.get_NaN() System.Private.CoreLib.dll:System.Half.get_NegativeInfinity() System.Private.CoreLib.dll:System.Half.get_NegativeZero() @@ -7709,12 +7821,16 @@ System.Private.CoreLib.dll:System.Half.get_One() System.Private.CoreLib.dll:System.Half.get_PositiveInfinity() System.Private.CoreLib.dll:System.Half.get_TrailingSignificand() System.Private.CoreLib.dll:System.Half.get_Zero() +System.Private.CoreLib.dll:System.Half.GetCompareKey(System.UInt16) System.Private.CoreLib.dll:System.Half.GetHashCode() System.Private.CoreLib.dll:System.Half.IsFinite(System.Half) +System.Private.CoreLib.dll:System.Half.IsInfinity(System.Half) System.Private.CoreLib.dll:System.Half.IsNaN(System.Half) System.Private.CoreLib.dll:System.Half.IsNaNOrZero(System.Half) System.Private.CoreLib.dll:System.Half.IsNegative(System.Half) +System.Private.CoreLib.dll:System.Half.IsOddInteger(System.Half) System.Private.CoreLib.dll:System.Half.IsZero(System.Half) +System.Private.CoreLib.dll:System.Half.Log2(System.Half) System.Private.CoreLib.dll:System.Half.NormSubnormalF16Sig(System.UInt32) System.Private.CoreLib.dll:System.Half.op_Addition(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) @@ -7725,6 +7841,12 @@ System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_Division(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Equality(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Explicit(System.Char) => System.Half System.Private.CoreLib.dll:System.Half.op_Explicit(System.Decimal) => System.Half @@ -7761,6 +7883,7 @@ System.Private.CoreLib.dll:System.Half.op_Implicit(System.SByte) => System.Half System.Private.CoreLib.dll:System.Half.op_Inequality(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_LessThan(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_LessThanOrEqual(System.Half, System.Half) +System.Private.CoreLib.dll:System.Half.op_Multiply(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Subtraction(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_UnaryNegation(System.Half) System.Private.CoreLib.dll:System.Half.RoundPackToHalf(System.Boolean, System.Int16, System.UInt16) @@ -7793,8 +7916,10 @@ System.Private.CoreLib.dll:System.Half.System.IBinaryFloatParseAndFormatInfo.get_ZeroBits() System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Half, System.Half) +System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.IsZero(System.Half) +System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertToChecked`1(System.Half, out TOther&) @@ -7903,6 +8028,42 @@ System.Private.CoreLib.dll:System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.ICustomFormatter System.Private.CoreLib.dll:System.ICustomFormatter.Format(System.String, System.Object, System.IFormatProvider) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2 +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.ConvertToExponent(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.CountDigits(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.DivRemPow10(TValue, System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_BufferLength() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_ExponentBias() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G0G1Mask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxSignificand() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MinExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NaN() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NaNMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NegativeInfinity() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_PositiveInfinity() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_Precision() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_SignMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_Zero() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsFinite(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNaN(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNegative(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNegativeInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsPositiveInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.Power10(System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.ToDecStr(TValue) System.Private.CoreLib.dll:System.IDisposable System.Private.CoreLib.dll:System.IDisposable.Dispose() System.Private.CoreLib.dll:System.IEquatable`1 @@ -7919,6 +8080,7 @@ System.Private.CoreLib.dll:System.Index System.Range::k__BackingField System.Private.CoreLib.dll:System.Index System.Range::k__BackingField System.Private.CoreLib.dll:System.Index System.Range::End() System.Private.CoreLib.dll:System.Index System.Range::Start() +System.Private.CoreLib.dll:System.Index..ctor(System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Index..ctor(System.Int32) System.Private.CoreLib.dll:System.Index.Equals(System.Index) System.Private.CoreLib.dll:System.Index.Equals(System.Object) @@ -7951,8 +8113,10 @@ System.Private.CoreLib.dll:System.Int128 System.Int128::Zero() System.Private.CoreLib.dll:System.Int128..ctor(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.Int128.CompareTo(System.Int128) System.Private.CoreLib.dll:System.Int128.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int128.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int128.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int128.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int128.DivRem(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.Equals(System.Int128) System.Private.CoreLib.dll:System.Int128.Equals(System.Object) System.Private.CoreLib.dll:System.Int128.get_MaxValue() @@ -7961,7 +8125,11 @@ System.Private.CoreLib.dll:System.Int128.get_One() System.Private.CoreLib.dll:System.Int128.get_Zero() System.Private.CoreLib.dll:System.Int128.GetHashCode() System.Private.CoreLib.dll:System.Int128.IsNegative(System.Int128) +System.Private.CoreLib.dll:System.Int128.IsOddInteger(System.Int128) System.Private.CoreLib.dll:System.Int128.IsPositive(System.Int128) +System.Private.CoreLib.dll:System.Int128.LeadingZeroCount(System.Int128) +System.Private.CoreLib.dll:System.Int128.LeadingZeroCountAsInt32(System.Int128) +System.Private.CoreLib.dll:System.Int128.Log2(System.Int128) System.Private.CoreLib.dll:System.Int128.op_Addition(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_BitwiseAnd(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_BitwiseOr(System.Int128, System.Int128) @@ -7974,7 +8142,14 @@ System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Single) +System.Private.CoreLib.dll:System.Int128.op_Division(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Equality(System.Int128, System.Int128) +System.Private.CoreLib.dll:System.Int128.op_ExclusiveOr(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Decimal) => System.Int128 System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Double) => System.Int128 System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Int128) => System.Byte @@ -8013,6 +8188,7 @@ System.Private.CoreLib.dll:System.Int128.op_LessThan(System.Int128, System.Int12 System.Private.CoreLib.dll:System.Int128.op_LessThanOrEqual(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Multiply(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_OnesComplement(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_RightShift(System.Int128, System.Int32) System.Private.CoreLib.dll:System.Int128.op_Subtraction(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_UnaryNegation(System.Int128) System.Private.CoreLib.dll:System.Int128.op_UnsignedRightShift(System.Int128, System.Int32) @@ -8024,9 +8200,12 @@ System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.IsGreaterThanAsUnsigned(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy10(System.Int128) System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy16(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsFinite(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsInfinity(System.Int128) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsNaN(System.Int128) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsZero(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int128, out TOther&) @@ -8035,6 +8214,7 @@ System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -8047,6 +8227,7 @@ System.Private.CoreLib.dll:System.Int16 System.Guid::_c System.Private.CoreLib.dll:System.Int16 System.Int16::m_value System.Private.CoreLib.dll:System.Int16 System.Int16::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token @@ -8085,13 +8266,18 @@ System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1::_tok System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_token System.Private.CoreLib.dll:System.Int16.CompareTo(System.Int16) System.Private.CoreLib.dll:System.Int16.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int16.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int16.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int16.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int16.DivRem(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Equals(System.Int16) System.Private.CoreLib.dll:System.Int16.Equals(System.Object) System.Private.CoreLib.dll:System.Int16.GetHashCode() System.Private.CoreLib.dll:System.Int16.GetTypeCode() System.Private.CoreLib.dll:System.Int16.IsNegative(System.Int16) +System.Private.CoreLib.dll:System.Int16.IsOddInteger(System.Int16) +System.Private.CoreLib.dll:System.Int16.LeadingZeroCount(System.Int16) +System.Private.CoreLib.dll:System.Int16.Log2(System.Int16) System.Private.CoreLib.dll:System.Int16.Max(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Min(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -8121,31 +8307,41 @@ System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.System.Numerics.IAdditionOperators.op_Addition(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_LessThan(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IDivisionOperators.op_Division(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IEqualityOperators.op_Equality(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IEqualityOperators.op_Inequality(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int16.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int16.System.Numerics.IMultiplyOperators.op_Multiply(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsFinite(System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsInfinity(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsNaN(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsZero(System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.IShiftOperators.op_LeftShift(System.Int16, System.Int32) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IShiftOperators.op_RightShift(System.Int16, System.Int32) System.Private.CoreLib.dll:System.Int16.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int16) System.Private.CoreLib.dll:System.Int16.ToString() System.Private.CoreLib.dll:System.Int16.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Int16.TryConvertFromChecked`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryConvertFromSaturating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryConvertFromTruncating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -8297,6 +8493,7 @@ System.Private.CoreLib.dll:System.Int32 System.Decimal::_flags System.Private.CoreLib.dll:System.Int32 System.Decimal/DecCalc::Scale() System.Private.CoreLib.dll:System.Int32 System.DefaultBinder/BinderState::_originalSize System.Private.CoreLib.dll:System.Int32 System.DefaultBinder/Primitives::value__ +System.Private.CoreLib.dll:System.Int32 System.Delegate/BindToMethodDetails::selfReferentialTarget System.Private.CoreLib.dll:System.Int32 System.Delegate/InvocationListEnumerator`1::_index System.Private.CoreLib.dll:System.Int32 System.DelegateBindingFlags::value__ System.Private.CoreLib.dll:System.Int32 System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes::value__ @@ -8492,6 +8689,14 @@ System.Private.CoreLib.dll:System.Int32 System.IBinaryFloatParseAndFormatInfo`1: System.Private.CoreLib.dll:System.Int32 System.IBinaryFloatParseAndFormatInfo`1::OverflowDecimalExponent() System.Private.CoreLib.dll:System.Int32 System.IBinaryIntegerParseAndFormatInfo`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.IBinaryIntegerParseAndFormatInfo`1::MaxHexDigitCount() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::BufferLength() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MinExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::Precision() System.Private.CoreLib.dll:System.Int32 System.Index::_value System.Private.CoreLib.dll:System.Int32 System.Index::Value() System.Private.CoreLib.dll:System.Int32 System.Int128::System.IBinaryIntegerParseAndFormatInfo.MaxDigitCount() @@ -8503,6 +8708,7 @@ System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParse System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParseAndFormatInfo.MaxHexDigitCount() System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int32 System.Int64::System.IBinaryIntegerParseAndFormatInfo.MaxDigitCount() @@ -8553,12 +8759,40 @@ System.Private.CoreLib.dll:System.Int32 System.Memory`1::Length() System.Private.CoreLib.dll:System.Int32 System.MidpointRounding::value__ System.Private.CoreLib.dll:System.Int32 System.Number/BigInteger::_length System.Private.CoreLib.dll:System.Int32 System.Number/BinaryParser`1::MaxDigitCount() +System.Private.CoreLib.dll:System.Int32 System.Number/DecimalIeee754ToIntegerStatus::value__ +System.Private.CoreLib.dll:System.Int32 System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Number/DecodedDecimalIeee754`1::UnbiasedExponent() System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp::e +System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp128::_exponent System.Private.CoreLib.dll:System.Int32 System.Number/HexParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/IHexOrBinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::DigitsCount System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::Scale System.Private.CoreLib.dll:System.Int32 System.Number/ParsingStatus::value__ +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.Precision() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.Precision() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.Precision() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector::Alignment() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector`1::Count() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector`1::System.Runtime.Intrinsics.ISimdVector,T>.Alignment() @@ -8668,6 +8902,7 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::Generic System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_maxCacheSize @@ -8835,7 +9070,6 @@ System.Private.CoreLib.dll:System.Int32 System.Threading.AbandonedMutexException System.Private.CoreLib.dll:System.Int32 System.Threading.CancellationTokenSource/States::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.EventResetMode::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::_owningThreadId -System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::OwningThreadId() System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::s_staticsInitializationStage System.Private.CoreLib.dll:System.Int32 System.Threading.Lock/Scope::_currentThreadId System.Private.CoreLib.dll:System.Int32 System.Threading.Lock/StaticsInitializationStage::value__ @@ -8955,11 +9189,14 @@ System.Private.CoreLib.dll:System.Int32.CompareTo(System.Object) System.Private.CoreLib.dll:System.Int32.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int32.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int32.DivRem(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Equals(System.Int32) System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.IsOddInteger(System.Int32) +System.Private.CoreLib.dll:System.Int32.LeadingZeroCount(System.Int32) System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) @@ -8990,26 +9227,35 @@ System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int32.System.Numerics.IAdditionOperators.op_Addition(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_LessThan(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IDivisionOperators.op_Division(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IEqualityOperators.op_Equality(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IEqualityOperators.op_Inequality(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int32.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int32.System.Numerics.IMultiplyOperators.op_Multiply(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsFinite(System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsInfinity(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsNaN(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsZero(System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.IShiftOperators.op_LeftShift(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IShiftOperators.op_RightShift(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int32) System.Private.CoreLib.dll:System.Int32.ToString() @@ -9110,6 +9356,7 @@ System.Private.CoreLib.dll:System.Int64 System.Globalization.PersianCalendar::s_ System.Private.CoreLib.dll:System.Int64 System.Int64::m_value System.Private.CoreLib.dll:System.Int64 System.Int64::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int64 System.IO.FileStream::Length() @@ -9167,13 +9414,18 @@ System.Private.CoreLib.dll:System.Int64 System.TimeZoneInfo/DateTimeNowCache::_n System.Private.CoreLib.dll:System.Int64 System.TimeZoneInfo/DateTimeNowCache::_nowUtcOffsetTicks System.Private.CoreLib.dll:System.Int64.CompareTo(System.Int64) System.Private.CoreLib.dll:System.Int64.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int64.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int64.DivRem(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Equals(System.Int64) System.Private.CoreLib.dll:System.Int64.Equals(System.Object) System.Private.CoreLib.dll:System.Int64.GetHashCode() System.Private.CoreLib.dll:System.Int64.GetTypeCode() System.Private.CoreLib.dll:System.Int64.IsNegative(System.Int64) +System.Private.CoreLib.dll:System.Int64.IsOddInteger(System.Int64) +System.Private.CoreLib.dll:System.Int64.LeadingZeroCount(System.Int64) +System.Private.CoreLib.dll:System.Int64.Log2(System.Int64) System.Private.CoreLib.dll:System.Int64.Max(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Min(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -9203,32 +9455,42 @@ System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.System.Numerics.IAdditionOperators.op_Addition(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_LessThan(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IDivisionOperators.op_Division(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IEqualityOperators.op_Equality(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IEqualityOperators.op_Inequality(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int64.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int64.System.Numerics.IMultiplyOperators.op_Multiply(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsFinite(System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsInfinity(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsNaN(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsZero(System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.IShiftOperators.op_LeftShift(System.Int64, System.Int32) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IShiftOperators.op_RightShift(System.Int64, System.Int32) System.Private.CoreLib.dll:System.Int64.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int64) System.Private.CoreLib.dll:System.Int64.ToString() System.Private.CoreLib.dll:System.Int64.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.ToString(System.String) +System.Private.CoreLib.dll:System.Int64.TryConvertFromChecked`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryConvertFromSaturating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryConvertFromTruncating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -9244,19 +9506,24 @@ System.Private.CoreLib.dll:System.IntPtr System.ArgIterator::_argPtr System.Private.CoreLib.dll:System.IntPtr System.ArgIterator/SigPointer::_ptr System.Private.CoreLib.dll:System.IntPtr System.ComAwareWeakReference::_weakHandle System.Private.CoreLib.dll:System.IntPtr System.ComAwareWeakReference/ComInfo::_pComWeakRef +System.Private.CoreLib.dll:System.IntPtr System.Delegate::_extraData System.Private.CoreLib.dll:System.IntPtr System.Delegate::_methodPtr System.Private.CoreLib.dll:System.IntPtr System.Delegate::_methodPtrAux +System.Private.CoreLib.dll:System.IntPtr System.Delegate::UnmanagedMarker +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::extraData +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::methodPtr +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::methodPtrAux System.Private.CoreLib.dll:System.IntPtr System.Diagnostics.Tracing.EventSource::m_writeEventStringEventHandle System.Private.CoreLib.dll:System.IntPtr System.Exception::_xptrs System.Private.CoreLib.dll:System.IntPtr System.IntPtr::_value System.Private.CoreLib.dll:System.IntPtr System.IntPtr::MaxValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::MinValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::Zero System.Private.CoreLib.dll:System.IntPtr System.IO.Enumeration.FileSystemEnumerator`1::_directoryHandle -System.Private.CoreLib.dll:System.IntPtr System.MulticastDelegate::_invocationCount System.Private.CoreLib.dll:System.IntPtr System.Reflection.ConstArray::m_constArray System.Private.CoreLib.dll:System.IntPtr System.Reflection.ConstArray::Signature() System.Private.CoreLib.dll:System.IntPtr System.Reflection.FieldAccessor::_addressOrOffset @@ -9337,7 +9604,6 @@ System.Private.CoreLib.dll:System.IntPtr System.RuntimeType::m_cache System.Private.CoreLib.dll:System.IntPtr System.RuntimeType::m_handle System.Private.CoreLib.dll:System.IntPtr System.RuntimeTypeHandle::Value() System.Private.CoreLib.dll:System.IntPtr System.Threading.AutoreleasePool::s_AutoreleasePoolInstance -System.Private.CoreLib.dll:System.IntPtr System.Threading.Lock::LockIdForEvents() System.Private.CoreLib.dll:System.IntPtr System.Threading.LowLevelMonitor::_nativeMonitor System.Private.CoreLib.dll:System.IntPtr System.Threading.Thread::_DONT_USE_InternalThread System.Private.CoreLib.dll:System.IntPtr System.Threading.Thread/DirectOnThreadLocalData::pNativeThread @@ -9351,8 +9617,10 @@ System.Private.CoreLib.dll:System.IntPtr..ctor(System.Int64) System.Private.CoreLib.dll:System.IntPtr..ctor(System.Void*) System.Private.CoreLib.dll:System.IntPtr.CompareTo(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.CompareTo(System.Object) +System.Private.CoreLib.dll:System.IntPtr.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.IntPtr.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.IntPtr.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.IntPtr.DivRem(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Equals(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Equals(System.Object) System.Private.CoreLib.dll:System.IntPtr.get_MaxValue() @@ -9360,29 +9628,41 @@ System.Private.CoreLib.dll:System.IntPtr.get_MinValue() System.Private.CoreLib.dll:System.IntPtr.get_Size() System.Private.CoreLib.dll:System.IntPtr.GetHashCode() System.Private.CoreLib.dll:System.IntPtr.IsNegative(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.IsOddInteger(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.LeadingZeroCount(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.Log2(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Max(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Min(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.op_Equality(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.op_Inequality(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IAdditionOperators.op_Addition(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_OnesComplement(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_GreaterThan(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_LessThan(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IDivisionOperators.op_Division(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMultiplyOperators.op_Multiply(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsFinite(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsInfinity(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsNaN(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsZero(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToChecked`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToSaturating`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToTruncating`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IShiftOperators.op_LeftShift(System.IntPtr, System.Int32) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IShiftOperators.op_RightShift(System.IntPtr, System.Int32) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.ISubtractionOperators.op_Subtraction(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.ToInt64() @@ -9390,6 +9670,7 @@ System.Private.CoreLib.dll:System.IntPtr.ToPointer() System.Private.CoreLib.dll:System.IntPtr.ToString() System.Private.CoreLib.dll:System.IntPtr.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.IntPtr.ToString(System.String) +System.Private.CoreLib.dll:System.IntPtr.TryConvertFromChecked`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryConvertFromSaturating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryConvertFromTruncating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -9835,6 +10116,7 @@ System.Private.CoreLib.dll:System.IO.RandomAccess.ReadScatterAtOffset(Microsoft. System.Private.CoreLib.dll:System.IO.RandomAccess.ShouldFallBackToNonOffsetSyscall(Interop/ErrorInfo) System.Private.CoreLib.dll:System.IO.RandomAccess.ValidateInput(Microsoft.Win32.SafeHandles.SafeFileHandle, System.Int64, System.Boolean) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlySpan`1, System.Int64) +System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlySpan`1, System.Int64&) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffsetAsync(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlyMemory`1, System.Int64, System.Threading.CancellationToken, System.IO.Strategies.OSFileStreamStrategy) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteGatherAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.Collections.Generic.IReadOnlyList`1>, System.Int64) System.Private.CoreLib.dll:System.IO.SearchOption @@ -10101,7 +10383,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value -System.Private.CoreLib.dll:System.IRuntimeMethodInfo.get_Value() +System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable System.Private.CoreLib.dll:System.ISpanFormattable.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.IUtf8SpanFormattable @@ -10134,8 +10416,8 @@ System.Private.CoreLib.dll:System.Marvin.ComputeHash32OrdinalIgnoreCaseSlow(Syst System.Private.CoreLib.dll:System.Marvin.GenerateSeed() System.Private.CoreLib.dll:System.Marvin.get_DefaultSeed() System.Private.CoreLib.dll:System.Math -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|47_0(System.UInt64, System.UInt64, out System.UInt64&) -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|53_0(System.Double, System.Double) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|45_0(System.UInt64, System.UInt64, out System.UInt64&) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|51_0(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Int32) System.Private.CoreLib.dll:System.Math.Abs(System.Single) @@ -10150,10 +10432,18 @@ System.Private.CoreLib.dll:System.Math.ConvertToUInt32Checked(System.Double) System.Private.CoreLib.dll:System.Math.ConvertToUInt64Checked(System.Double) System.Private.CoreLib.dll:System.Math.CopySign(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Cos(System.Double) +System.Private.CoreLib.dll:System.Math.DivRem(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Math.DivRem(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Math.DivRem(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Math.DivRem(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Math.DivRem(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Math.DivRem(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.Math.DivRem(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.Math.DivRem(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.Math.DivRem(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Math.DivRem(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.Math.Floor(System.Double) +System.Private.CoreLib.dll:System.Math.Log2(System.Double) System.Private.CoreLib.dll:System.Math.Max(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Math.Max(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Max(System.Int16, System.Int16) @@ -10190,8 +10480,11 @@ System.Private.CoreLib.dll:System.Math.ThrowNegateTwosCompOverflow() System.Private.CoreLib.dll:System.Math.Truncate(System.Double) System.Private.CoreLib.dll:System.MathF System.Private.CoreLib.dll:System.MathF.Abs(System.Single) +System.Private.CoreLib.dll:System.MathF.Log2(System.Single) System.Private.CoreLib.dll:System.MathF.Max(System.Single, System.Single) System.Private.CoreLib.dll:System.MathF.Min(System.Single, System.Single) +System.Private.CoreLib.dll:System.MathF.ModF(System.Single, System.Single*) +System.Private.CoreLib.dll:System.MathF.Truncate(System.Single) System.Private.CoreLib.dll:System.MdUtf8String System.Private.CoreLib.dll:System.MdUtf8String System.RuntimeType/RuntimeTypeCache/Filter::m_name System.Private.CoreLib.dll:System.MdUtf8String..ctor(System.Byte*, System.Int32) @@ -10256,6 +10549,7 @@ System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExcept`1(System.Rea System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExceptInRange`1(System.ReadOnlySpan`1, T, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyInRange`1(System.ReadOnlySpan`1, T, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyWhiteSpace(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.Max`1(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.Min`1(System.ReadOnlySpan`1) @@ -10355,29 +10649,6 @@ System.Private.CoreLib.dll:System.ModuleHandle.ResolveTypeHandle(System.Int32) System.Private.CoreLib.dll:System.ModuleHandle.ValidateModulePointer(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.MulticastDelegate System.Private.CoreLib.dll:System.MulticastDelegate System.Delegate/InvocationListEnumerator`1::_delegate -System.Private.CoreLib.dll:System.MulticastDelegate.CombineImpl(System.Delegate) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorClosed(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorClosedStatic(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleClosedStatic(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleOpened(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleVirtualDispatch(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorOpened(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorRTClosed(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorVirtualDispatch(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.DeleteFromInvocationList(System.Object[], System.Int32, System.Int32, System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.EqualInvocationLists(System.Object[], System.Object[], System.Int32, System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.Equals(System.Object) -System.Private.CoreLib.dll:System.MulticastDelegate.get_HasSingleTarget() -System.Private.CoreLib.dll:System.MulticastDelegate.GetHashCode() -System.Private.CoreLib.dll:System.MulticastDelegate.GetMethodImpl() -System.Private.CoreLib.dll:System.MulticastDelegate.InvocationListEquals(System.MulticastDelegate) -System.Private.CoreLib.dll:System.MulticastDelegate.IsUnmanagedFunctionPtr() -System.Private.CoreLib.dll:System.MulticastDelegate.NewMulticastDelegate(System.Object[], System.Int32, System.Boolean) -System.Private.CoreLib.dll:System.MulticastDelegate.NewMulticastDelegate(System.Object[], System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.RemoveImpl(System.Delegate) -System.Private.CoreLib.dll:System.MulticastDelegate.ThrowNullThisInDelegateToInstance() -System.Private.CoreLib.dll:System.MulticastDelegate.TryGetAt(System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.TrySetSlot(System.Object[], System.Int32, System.Object) System.Private.CoreLib.dll:System.MulticastNotSupportedException System.Private.CoreLib.dll:System.MulticastNotSupportedException..ctor() System.Private.CoreLib.dll:System.MulticastNotSupportedException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -10433,46 +10704,73 @@ System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String, Sy System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String) System.Private.CoreLib.dll:System.Number System.Private.CoreLib.dll:System.Number..cctor() -System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|192_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) -System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|60_0(System.Int128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|52_0(System.Int32, System.Int32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|56_0(System.Int64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|62_0(System.UInt128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|54_0(System.UInt32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|58_0(System.UInt64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__Slow|45_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) -System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|198_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|61_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|53_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|57_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|63_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|55_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|59_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|81_0(System.UInt32) +System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|560_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) +System.Private.CoreLib.dll:System.Number.g__InternalInfinityCompare|3_1`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.g__InternalUnsignedCompare|3_0`2(System.Number/DecodedDecimalIeee754`1, System.Number/DecodedDecimalIeee754`1) +System.Private.CoreLib.dll:System.Number.g__MaterializePreferredZeros|85_0`3(System.Number/NumberBuffer&, System.Span`1) +System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|416_0(System.Int128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|408_0(System.Int32, System.Int32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|412_0(System.Int64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|418_0(System.UInt128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|410_0(System.UInt32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|414_0(System.UInt64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__Slow|401_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.g__ClampExponentOverflow|9_0`2(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|566_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|417_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|409_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|413_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|419_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|411_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|415_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|437_0(System.UInt32) System.Private.CoreLib.dll:System.Number.AccumulateDecimalDigitsIntoBigInteger(System.Number/NumberBuffer&, System.UInt32, System.UInt32, out System.Number/BigInteger&) +System.Private.CoreLib.dll:System.Number.AddDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.AlignmentScaleFactor`2(System.Int32) System.Private.CoreLib.dll:System.Number.AppendUnknownChar`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) System.Private.CoreLib.dll:System.Number.AssembleFloatingPointBits`1(System.UInt64, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.CalculatePower(System.Int32) +System.Private.CoreLib.dll:System.Number.ClassifyIntegerParityDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.CompareDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.ComputeFloat`1(System.Int64, System.UInt64) System.Private.CoreLib.dll:System.Number.ComputeProductApproximation(System.Int32, System.Int64, System.UInt64) System.Private.CoreLib.dll:System.Number.ConsumeTrailingNulls`1(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.ConvertBigIntegerToFloatingPointBits`1(System.Number/BigInteger&, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754`4(TSourceValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToDecimal`2(TValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToFloat`3(TValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToInteger`3(TValue, System.Boolean) +System.Private.CoreLib.dll:System.Number.ConvertDecimalToDecimalIeee754`2(System.Decimal) +System.Private.CoreLib.dll:System.Number.ConvertFloatToDecimalIeee754`3(TFloat) +System.Private.CoreLib.dll:System.Number.ConvertIntegerToDecimalIeee754`3(TInteger) System.Private.CoreLib.dll:System.Number.CurrencyGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.DecimalIeee754FiniteNumberBinaryEncoding`2(System.Boolean, TValue, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754FromMagnitude`2(System.Boolean, System.UInt128, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754Rounding`2(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754ToIntegerMagnitude`2(TValue, out System.Boolean&, out System.UInt128&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.DecimalIeee754ToNumber`2(TValue, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.DecimalToNumber(System.Decimal&, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.DigitsToUInt32(System.Byte*, System.Int32) System.Private.CoreLib.dll:System.Number.DigitsToUInt64(System.Byte*, System.Int32) -System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.DivideDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&, out System.Boolean&) System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.DropDigits`2(TValue&, TValue&, System.Int32, System.Boolean&, out System.Int32&) +System.Private.CoreLib.dll:System.Number.EqualsDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.ExtractFractionAndBiasedExponent`1(TNumber, out System.Int32&) System.Private.CoreLib.dll:System.Number.FindSection(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.FormatCurrency`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatDecimal(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.FormatDecimalIeee754`2(TValue, System.String, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.FormatDecimalIeee754`3(System.Collections.Generic.ValueListBuilder`1&, TValue, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatExponent`1(System.Collections.Generic.ValueListBuilder`1&, System.Globalization.NumberFormatInfo, System.Int32, System.Char, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.FormatFixed`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Int32[], System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.FormatFloat`1(TNumber, System.String, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatFloat`2(System.Collections.Generic.ValueListBuilder`1&, TNumber, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatFloatingPointAsHex`2(System.Collections.Generic.ValueListBuilder`1&, TNumber, System.Char, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatGeneral`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Globalization.NumberFormatInfo, System.Char, System.Boolean) +System.Private.CoreLib.dll:System.Number.FormatGeneralAndRoundTripDecimalIeee754`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Char, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatInt128(System.Int128, System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Number.FormatInt32(System.Int32, System.Int32, System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Number.FormatInt64(System.Int64, System.String, System.IFormatProvider) @@ -10486,9 +10784,12 @@ System.Private.CoreLib.dll:System.Number.get_Pow10DoubleTable() System.Private.CoreLib.dll:System.Number.get_Pow5128Table() System.Private.CoreLib.dll:System.Number.get_TwoDigitsBytes() System.Private.CoreLib.dll:System.Number.get_TwoDigitsCharsAsBytes() +System.Private.CoreLib.dll:System.Number.GetDecimalIeee754HashCode`2(TValue) System.Private.CoreLib.dll:System.Number.GetFloatingPointMaxDigitsAndPrecision(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) System.Private.CoreLib.dll:System.Number.GetHexBase(System.Char) System.Private.CoreLib.dll:System.Number.GetTwoDigitsBytesRef(System.Boolean) +System.Private.CoreLib.dll:System.Number.GreaterThanDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.GreaterThanOrEqualDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.HasNegativeSection(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.Int128DivMod1E19(System.UInt128&) System.Private.CoreLib.dll:System.Number.Int128ToDecStr(System.Int128) @@ -10504,15 +10805,22 @@ System.Private.CoreLib.dll:System.Number.Int64ToHexChars`1(TChar*, System.UInt64 System.Private.CoreLib.dll:System.Number.Int64ToHexStr(System.Int64, System.Char, System.Int32) System.Private.CoreLib.dll:System.Number.Int64ToNumber(System.Int64, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.IsDigit(System.UInt32) +System.Private.CoreLib.dll:System.Number.IsOddIntegerDecimalIeee754`2(TValue) System.Private.CoreLib.dll:System.Number.IsSpaceReplacingChar(System.UInt32) System.Private.CoreLib.dll:System.Number.IsWhite(System.UInt32) +System.Private.CoreLib.dll:System.Number.IsZeroDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.LessThanDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.LessThanOrEqualDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.MatchChars`1(TChar*, TChar*, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.MatchNegativeSignChars`1(TChar*, TChar*, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.MultiplyDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.NegativeInt128ToDecStr(System.Int128, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NegativeInt32ToDecStr(System.Int32, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NegativeInt64ToDecStr(System.Int64, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NormalizeSpaceReplacingChar(System.UInt32) System.Private.CoreLib.dll:System.Number.NumberGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.NumberToDecimalIeee754Bits`2(System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.NumberToDecimalIeee754BitsFromWide`2(System.Boolean, TValue, TValue, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.NumberToFloat`1(System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.NumberToFloatingPointBits`1(System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.NumberToFloatingPointBitsSlow`1(System.Number/NumberBuffer&, System.UInt32, System.UInt32, System.UInt32) @@ -10524,20 +10832,28 @@ System.Private.CoreLib.dll:System.Number.ParseEightDigitsUnrolled(System.Byte*) System.Private.CoreLib.dll:System.Number.ParseFloat`2(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.ParseFormatSpecifier(System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.PercentGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.PropagateNaN`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.RightShiftWithRounding(System.UInt64, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.RoundNumber(System.Number/NumberBuffer&, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.RoundToZeroOrEpsilon`2(System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.RoundWideToSignificand`2(System.Boolean, TValue, TValue, System.Int32, System.Int32, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.RoundWideToZeroOrEpsilon`2(System.Boolean, TValue, TValue, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.ShouldRoundUp(System.Boolean, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Number.SinglePassPow10`1(out TValue&) System.Private.CoreLib.dll:System.Number.SpanEqualsOrdinalIgnoreCase`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.SpanStartsWith`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.StringComparison) System.Private.CoreLib.dll:System.Number.SpanStartsWith`1(System.ReadOnlySpan`1, TChar) System.Private.CoreLib.dll:System.Number.SpanTrim`1(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.SpanTrimStart`1(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Number.SubtractDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.ThrowDecimalOverflowException() System.Private.CoreLib.dll:System.Number.ThrowFormatException`1(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.Number.ThrowOverflowException(System.String) System.Private.CoreLib.dll:System.Number.ThrowOverflowException`1() System.Private.CoreLib.dll:System.Number.ThrowOverflowOrFormatException`2(System.Number/ParsingStatus, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.TryCopyTo`1(System.String, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.TryFloatingPointBitsFromMantissa`1(System.UInt64, System.Int32, out System.UInt64&) System.Private.CoreLib.dll:System.Number.TryFormatDecimal`1(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.TryFormatDecimalIeee754`3(TValue, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatFloat`2(TNumber, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatInt128`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatInt32`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) @@ -10594,6 +10910,12 @@ System.Private.CoreLib.dll:System.Number.UInt64ToDecChars`1(TChar*, System.UInt6 System.Private.CoreLib.dll:System.Number.UInt64ToDecStr(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Number.UInt64ToDecStr(System.UInt64) System.Private.CoreLib.dll:System.Number.UInt64ToNumber(System.UInt64, System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.UnpackDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.WideDigitCount`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.WideDivideByPow10`1(TValue&, TValue&, TValue) +System.Private.CoreLib.dll:System.Number.WideMultiply`1(TValue, TValue, out TValue&, out TValue&) +System.Private.CoreLib.dll:System.Number.WidePow10`1(System.Int32) +System.Private.CoreLib.dll:System.Number.WriteDecimalDigits(System.UInt128, System.Span`1) System.Private.CoreLib.dll:System.Number.WriteDigits`1(System.UInt32, TChar*, System.Int32) System.Private.CoreLib.dll:System.Number.WriteFourDigits`1(System.UInt32, TChar*) System.Private.CoreLib.dll:System.Number.WriteTwoDigits`1(System.UInt32, TChar*) @@ -10630,6 +10952,7 @@ System.Private.CoreLib.dll:System.Number/BigInteger.SetValue(out System.Number/B System.Private.CoreLib.dll:System.Number/BigInteger.SetZero(out System.Number/BigInteger&) System.Private.CoreLib.dll:System.Number/BigInteger.ShiftLeft(System.Int32) System.Private.CoreLib.dll:System.Number/BigInteger.SubtractDivisor(System.Number/BigInteger&, System.Int32, System.Number/BigInteger&, System.UInt64) +System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt128() System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt32() System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt64() System.Private.CoreLib.dll:System.Number/BigInteger/BlocksBuffer @@ -10640,6 +10963,16 @@ System.Private.CoreLib.dll:System.Number/BinaryParser`1.get_MaxDigitCount() System.Private.CoreLib.dll:System.Number/BinaryParser`1.get_MaxDigitValue() System.Private.CoreLib.dll:System.Number/BinaryParser`1.IsValidChar(System.UInt32) System.Private.CoreLib.dll:System.Number/BinaryParser`1.ShiftLeftForNextDigit(TInteger) +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::Finite +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::NaN +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::NegativeInfinity +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::PositiveInfinity +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1 +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1..ctor(System.Boolean, System.Int32, TSignificand) +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_Signed() +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_Significand() +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_UnbiasedExponent() System.Private.CoreLib.dll:System.Number/DiyFp System.Private.CoreLib.dll:System.Number/DiyFp..ctor(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Number/DiyFp.Create`1(TNumber) @@ -10648,6 +10981,31 @@ System.Private.CoreLib.dll:System.Number/DiyFp.GetBoundaries(System.Int32, out S System.Private.CoreLib.dll:System.Number/DiyFp.Multiply(System.Number/DiyFp&) System.Private.CoreLib.dll:System.Number/DiyFp.Normalize() System.Private.CoreLib.dll:System.Number/DiyFp.Subtract(System.Number/DiyFp&) +System.Private.CoreLib.dll:System.Number/DiyFp128 +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxHalf +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxOne +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxThreeQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128..ctor(System.UInt32, System.Int32, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::InvTrigConstants +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::PiFractionConstants +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Exp10Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::ExpCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperCoshCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperSinhCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Log2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Pow2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::PowLog2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigCosCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigSinCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanNumeratorCoefficients System.Private.CoreLib.dll:System.Number/Grisu3 System.Private.CoreLib.dll:System.Number/Grisu3.BiggestPowerTen(System.UInt32, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Number/Grisu3.get_CachedPowersBinaryExponent() @@ -10682,6 +11040,7 @@ System.Private.CoreLib.dll:System.Number/NumberBuffer.ToString() System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBuffer::Kind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Decimal +System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::DecimalIeee754 System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::FloatingPoint System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Integer System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Unknown @@ -10689,9 +11048,13 @@ System.Private.CoreLib.dll:System.Number/ParsingStatus System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Failed System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::OK System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Overflow +System.Private.CoreLib.dll:System.Number/SqrtCoefficients +System.Private.CoreLib.dll:System.Number/SqrtCoefficients..ctor(System.Single, System.Single, System.Double) +System.Private.CoreLib.dll:System.Number/SqrtCoefficients[] System.Number::s_sqrtTable System.Private.CoreLib.dll:System.Numerics.BitOperations System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|22_0(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|23_0(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.BitOperations.FlipBit(System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.get_Log2DeBruijn() System.Private.CoreLib.dll:System.Numerics.BitOperations.get_TrailingZeroCountDeBruijn() System.Private.CoreLib.dll:System.Numerics.BitOperations.IsPow2(System.Int32) @@ -10701,6 +11064,7 @@ System.Private.CoreLib.dll:System.Numerics.BitOperations.LeadingZeroCount(System System.Private.CoreLib.dll:System.Numerics.BitOperations.LeadingZeroCount(System.UIntPtr) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UIntPtr) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2SoftwareFallback(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.PopCount(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.PopCount(System.UInt64) @@ -10710,19 +11074,459 @@ System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UInt3 System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UIntPtr, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateRight(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Numerics.BitOperations.RoundUpToPowerOf2(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.TrailingZeroCount(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.TrailingZeroCount(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::One() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128..cctor() +System.Private.CoreLib.dll:System.Numerics.Decimal128..ctor(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CompareTo(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.Equals(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeInfinityValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeZeroValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_OneValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_PositiveInfinityValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_QuietNaNValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_ZeroValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsFinite(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNaN(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNegative(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNegativeInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsOddInteger(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsPositiveInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Addition(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Division(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Equality(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Double) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Half) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Int128) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Single) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.UInt128) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_GreaterThan(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_GreaterThanOrEqual(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Byte) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Char) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Decimal) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int16) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.IntPtr) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.SByte) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt16) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UIntPtr) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Inequality(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_LessThan(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_LessThanOrEqual(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Multiply(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Subtraction(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_UnaryNegation(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt128, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal128.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryConvertFrom`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryConvertTo`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::One() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32..ctor(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CompareTo(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.Equals(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_UInt32Powers10() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsFinite(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNaN(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNegative(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNegativeInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsOddInteger(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsPositiveInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Addition(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Division(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Equality(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Decimal) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Double) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Half) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int32) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.IntPtr) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Single) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt32) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UIntPtr) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_GreaterThan(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_GreaterThanOrEqual(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Byte) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Char) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Int16) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Numerics.Decimal32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Numerics.Decimal32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.SByte) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.UInt16) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Inequality(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_LessThan(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_LessThanOrEqual(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Multiply(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Subtraction(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_UnaryNegation(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal32.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryConvertFrom`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryConvertTo`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::One() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64..ctor(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CompareTo(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.Equals(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_UInt64Powers10() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsFinite(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNaN(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNegative(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNegativeInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsOddInteger(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsPositiveInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Addition(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Division(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Equality(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Decimal) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Double) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Half) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Int128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Int64) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.IntPtr) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Single) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UInt128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UInt64) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UIntPtr) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_GreaterThan(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_GreaterThanOrEqual(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Byte) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Char) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Int16) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Int32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Numerics.Decimal64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.SByte) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.UInt16) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.UInt32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Inequality(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_LessThan(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_LessThanOrEqual(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Multiply(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Subtraction(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_UnaryNegation(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt64, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal64.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryConvertFrom`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryConvertTo`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Numerics.IAdditionOperators`3 System.Private.CoreLib.dll:System.Numerics.IAdditionOperators`3.op_Addition(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1 +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.DivRem(TSelf, TSelf) +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.GetByteCount() +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.LeadingZeroCount(TSelf) +System.Private.CoreLib.dll:System.Numerics.IBinaryNumber`1 +System.Private.CoreLib.dll:System.Numerics.IBinaryNumber`1.Log2(TSelf) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3 System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_BitwiseAnd(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_BitwiseOr(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_ExclusiveOr(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_OnesComplement(TSelf) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3 System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_GreaterThan(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_GreaterThanOrEqual(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_LessThan(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_LessThanOrEqual(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IDivisionOperators`3 +System.Private.CoreLib.dll:System.Numerics.IDivisionOperators`3.op_Division(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3 System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3.op_Equality(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3.op_Inequality(TSelf, TOther) @@ -10734,16 +11538,23 @@ System.Private.CoreLib.dll:System.Numerics.IFloatingPointIeee754`1.get_NegativeZ System.Private.CoreLib.dll:System.Numerics.IFloatingPointIeee754`1.get_PositiveInfinity() System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1 System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.IMultiplyOperators`3 +System.Private.CoreLib.dll:System.Numerics.IMultiplyOperators`3.op_Multiply(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.INumber`1 System.Private.CoreLib.dll:System.Numerics.INumberBase`1 +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.get_One() System.Private.CoreLib.dll:System.Numerics.INumberBase`1.get_Zero() System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsFinite(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsInfinity(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsNaN(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsNegative(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsOddInteger(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsZero(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromChecked`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromSaturating`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromTruncating`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToChecked`1(TSelf, out TOther&) @@ -10751,6 +11562,7 @@ System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToSaturating` System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToTruncating`1(TSelf, out TOther&) System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3 System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3.op_LeftShift(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3.op_RightShift(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.ISubtractionOperators`3 System.Private.CoreLib.dll:System.Numerics.ISubtractionOperators`3.op_Subtraction(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IUnaryNegationOperators`2 @@ -10796,12 +11608,15 @@ System.Private.CoreLib.dll:System.Numerics.Vector`1.GetHashCode() System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector`1, System.Numerics.Vector`1) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Division(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector`1) => System.Numerics.Vector`1 System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_LeftShift(System.Numerics.Vector`1, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector`1) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_RightShift(System.Numerics.Vector`1, System.Int32) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Numerics.Vector`1, System.Numerics.Vector`1, System.Numerics.Vector`1) @@ -10852,7 +11667,6 @@ System.Private.CoreLib.dll:System.Object System.Exception/DispatchState::StackTr System.Private.CoreLib.dll:System.Object System.IAsyncResult::AsyncState() System.Private.CoreLib.dll:System.Object System.IO.Enumeration.FileSystemEnumerator`1::_lock System.Private.CoreLib.dll:System.Object System.Memory`1::_object -System.Private.CoreLib.dll:System.Object System.MulticastDelegate::_invocationList System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value @@ -11198,8 +12012,11 @@ System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Decimal/D System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/BigInteger::Pow10BigNumTable() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/BigInteger::Pow10UInt32Table() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/Grisu3::SmallPowersOfTen() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Numerics.Decimal32::UInt32Powers10() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Decimal/DecCalc::UInt64Powers10() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number::Pow5128Table() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/Grisu3::CachedPowersSignificand() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Numerics.Decimal64::UInt64Powers10() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlyMemory`1::Span() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlySpan`1::Empty() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlySpan`1/Enumerator::_span @@ -12675,7 +13492,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.InternalLoad(System System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.InternalLoad(System.Reflection.NativeAssemblyNameParts*, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.StackCrawlMarkHandle, System.Boolean, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo..ctor(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, System.Reflection.MethodAttributes, System.Reflection.BindingFlags) -System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.g__LazyCreateSignature|21_0() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.g__LazyCreateSignature|19_0() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.CheckCanCreateInstance(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ComputeAndUpdateInvocationFlags() @@ -12708,7 +13525,6 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(Syste System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.InvokeClassConstructor() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.IsDefined(System.Type, System.Boolean) -System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ThrowNoInvokeException() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeCustomAttributeData @@ -12794,8 +13610,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimePropertyInfo::m_getterMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimePropertyInfo::m_setterMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo..ctor(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, System.Reflection.MethodAttributes, System.Reflection.BindingFlags, System.Object) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__IsDisallowedByRefType|98_0(System.Type) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|27_0() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__IsDisallowedByRefType|96_0(System.Type) +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) @@ -12839,7 +13655,6 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDe System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.IsDefined(System.Type, System.Boolean) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeException() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule @@ -13247,11 +14062,16 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await(System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await`1(System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await`1(System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaitAwaiterInContinuation`1(System.Int32) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaiterOnCompletedFromContinuation`1(System.Runtime.CompilerServices.Continuation, System.Int32, System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaitTaskWithRareOptions(System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContexts(out System.Threading.Thread&, out System.Threading.ExecutionContext&, out System.Threading.SynchronizationContext&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContinuationContext(System.Object&, System.Runtime.CompilerServices.ContinuationFlags&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContinuationContextFlags(System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureExecutionContext() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionContinueOnThreadPool(System.Boolean, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionNoContinuationContext(System.Boolean, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionWithContinuationContext(System.Boolean, System.Object&, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncTask(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncTask`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncValueTask(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) @@ -13262,12 +14082,14 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSu System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContexts(System.Boolean, System.Threading.Thread, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContextsOnSuspension(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreExecutionContext(System.Threading.Thread, System.Threading.ExecutionContext) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreInlinedFrameContexts(System.Threading.ExecutionContext, System.Object, System.Runtime.CompilerServices.ContinuationFlags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ResumeInterpreterContinuation(System.Runtime.CompilerServices.Continuation, System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ReturnTaskContinuation(System.Runtime.CompilerServices.RuntimeAsyncTaskContinuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend(System.Threading.Tasks.Sources.IValueTaskSource, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend(System.Threading.Tasks.Task, System.Threading.Tasks.ConfigureAwaitOptions) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend`1(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend`1(System.Threading.Tasks.Task`1, System.Threading.Tasks.ConfigureAwaitOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.SwitchToContinuationContext(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&, System.Object, System.Runtime.CompilerServices.ContinuationFlags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TailAwait() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TaskFromException(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TaskFromException`1(System.Exception) @@ -13280,6 +14102,8 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Transpar System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TransparentSuspend`1(System.Threading.Tasks.Task`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TransparentSuspend`1(System.Threading.Tasks.ValueTask`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaitAwaiter`1(TAwaiter) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaitAwaiterInContinuation`1(System.Int32) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaiterOnCompletedFromContinuation`1(System.Runtime.CompilerServices.Continuation, System.Int32, System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTaskFromException(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTaskFromException`1(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/AsyncContexts @@ -13350,9 +14174,10 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::Synchronize System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::Tpl System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::UnwindAsyncException +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/IsEnabled +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/IsEnabled.Tpl(System.Runtime.CompilerServices.AsyncInstrumentation/Flags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.get_TrackAsyncMethodCompletion() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine, System.Threading.Tasks.Task) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start`1(TStateMachine&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncProfiler @@ -13375,6 +14200,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilde System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.get_Context() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.get_MoveNextAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext(System.Threading.Thread, System.Runtime.CompilerServices.AsyncInstrumentation/Flags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext(System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder..cctor() @@ -13577,6 +14403,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags Sys System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ExecutionContextIndexNumBits System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ResultIndexFirstBit System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ResultIndexNumBits +System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ValueTaskAdaptedToTask System.Private.CoreLib.dll:System.Runtime.CompilerServices.CustomConstantAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.CustomConstantAttribute.get_Value() System.Private.CoreLib.dll:System.Runtime.CompilerServices.DateTimeConstantAttribute @@ -13648,6 +14475,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.GenericsStaticsInfo S System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox +System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox System.Runtime.CompilerServices.AsyncProfiler/Info::LastContinuation System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.get_MoveNextAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IConfiguredTaskAwaiter @@ -13661,9 +14489,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitClass System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitClassSlow(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitInstantiatedClass(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodDesc*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 System.GCMemoryInfoData::_pauseDurations System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.DateTimeRawInfo::num System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray4`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 System.GCMemoryInfoData::_generationInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Buffers.BitVector256::_values System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArrayAttribute @@ -13687,6 +14518,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.IteratorStateMachineA System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.get_MethodTable() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodDescChunk() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable @@ -14343,6 +15175,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.FieldOffsetAttribute.. System.Private.CoreLib.dll:System.Runtime.InteropServices.FieldOffsetAttribute.get_Value() System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Buffers.MemoryHandle::_handle +System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Delegate/BindToMethodDetails::loaderAllocatorGCHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/NativeObjectWrapper::_proxyHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/NativeObjectWrapper::_proxyHandleTrackingResurrection System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/ReferenceTrackerNativeObjectWrapper::_nativeObjectWrapperWeakHandle @@ -14608,6 +15441,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NativeMemory.Clear(Sys System.Private.CoreLib.dll:System.Runtime.InteropServices.NativeMemory.Free(System.Void*) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::MaxValue() +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::MinValue() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NaN() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NegativeInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NegativeZero() @@ -14617,19 +15451,24 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime. System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat..ctor(System.Double) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CompareTo(System.Object) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CompareTo(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Equals(System.Object) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Equals(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_MaxValue() +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_MinValue() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NaN() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NegativeInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NegativeZero() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_PositiveInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.GetHashCode() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsFinite(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsInfinity(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsNaN(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsNegative(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsOddInteger(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Log2(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Addition(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) @@ -14644,6 +15483,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExpli System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Division(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Equality(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Explicit(System.Decimal) => System.Runtime.InteropServices.NFloat System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Explicit(System.Double) => System.Runtime.InteropServices.NFloat @@ -14684,14 +15524,17 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Implicit(Sys System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Inequality(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_LessThan(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_LessThanOrEqual(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Multiply(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Subtraction(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_UnaryNegation(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.IsZero(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertToChecked`1(System.Runtime.InteropServices.NFloat, out TOther&) @@ -14949,6 +15792,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.ISimdVector`2.StoreUnsafe(T System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Add(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.AddSaturate(T, T) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Divide(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Equals(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ExtractMostSignificantBit(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.get_AllBitsSet() @@ -14960,6 +15804,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.LessThan(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.LessThanOrEqual(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Max(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Min(T, T) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Multiply(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ObjectEquals(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ShiftLeft(T, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ShiftRightArithmetic(T, System.Int32) @@ -15076,10 +15921,12 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Addition(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Division(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Equality(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Inequality(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_LeftShift(System.Runtime.Intrinsics.Vector128`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Multiply(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_OnesComplement(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_RightShift(System.Runtime.Intrinsics.Vector128`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Subtraction(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) @@ -15156,11 +16003,14 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Addition(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Division(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Equality(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Inequality(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_LeftShift(System.Runtime.Intrinsics.Vector256`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Multiply(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_OnesComplement(System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_RightShift(System.Runtime.Intrinsics.Vector256`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Subtraction(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_UnaryNegation(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) @@ -15234,11 +16084,14 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Addition(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Division(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Equality(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Inequality(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_LeftShift(System.Runtime.Intrinsics.Vector512`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Multiply(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_OnesComplement(System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_RightShift(System.Runtime.Intrinsics.Vector512`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Subtraction(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_UnaryNegation(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) @@ -15327,10 +16180,12 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Addition(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Division(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Equality(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Inequality(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_LeftShift(System.Runtime.Intrinsics.Vector64`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Multiply(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_OnesComplement(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_RightShift(System.Runtime.Intrinsics.Vector64`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Subtraction(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) @@ -15633,11 +16488,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.IRuntimeMethodInfo::Value() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.RuntimeConstructorInfo::System.IRuntimeMethodInfo.Value() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.RuntimeMethodInfo::System.IRuntimeMethodInfo.Value() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodInfoStub::System.IRuntimeMethodInfo.Value() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Signature::_pMethod @@ -15648,7 +16499,6 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) -System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType @@ -16101,17 +16951,23 @@ System.Private.CoreLib.dll:System.SByte System.Runtime.InteropServices.Marshalli System.Private.CoreLib.dll:System.SByte System.SByte::m_value System.Private.CoreLib.dll:System.SByte System.SByte::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.SByte.CompareTo(System.Object) System.Private.CoreLib.dll:System.SByte.CompareTo(System.SByte) +System.Private.CoreLib.dll:System.SByte.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.SByte.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.SByte.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.SByte.DivRem(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Equals(System.Object) System.Private.CoreLib.dll:System.SByte.Equals(System.SByte) System.Private.CoreLib.dll:System.SByte.GetHashCode() System.Private.CoreLib.dll:System.SByte.GetTypeCode() System.Private.CoreLib.dll:System.SByte.IsNegative(System.SByte) +System.Private.CoreLib.dll:System.SByte.IsOddInteger(System.SByte) +System.Private.CoreLib.dll:System.SByte.LeadingZeroCount(System.SByte) +System.Private.CoreLib.dll:System.SByte.Log2(System.SByte) System.Private.CoreLib.dll:System.SByte.Max(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Min(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -16141,31 +16997,41 @@ System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.System.Numerics.IAdditionOperators.op_Addition(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_OnesComplement(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_GreaterThan(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_LessThan(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IDivisionOperators.op_Division(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IEqualityOperators.op_Equality(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IEqualityOperators.op_Inequality(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.SByte.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.SByte.System.Numerics.IMultiplyOperators.op_Multiply(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsFinite(System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsInfinity(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsNaN(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsZero(System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToChecked`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToSaturating`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToTruncating`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.IShiftOperators.op_LeftShift(System.SByte, System.Int32) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IShiftOperators.op_RightShift(System.SByte, System.Int32) System.Private.CoreLib.dll:System.SByte.System.Numerics.ISubtractionOperators.op_Subtraction(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.SByte) System.Private.CoreLib.dll:System.SByte.ToString() System.Private.CoreLib.dll:System.SByte.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.SByte.TryConvertFromChecked`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryConvertFromSaturating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryConvertFromTruncating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -16233,6 +17099,8 @@ System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single System.Private.CoreLib.dll:System.Single System.Collections.Hashtable::_loadFactor +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::A +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::B System.Private.CoreLib.dll:System.Single System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_r4 System.Private.CoreLib.dll:System.Single System.Single::m_value System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NaN() @@ -16240,12 +17108,14 @@ System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.PositiveInfinity() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Single System.Threading.PortableThreadPool/HillClimbing/LogEntry::lastHistoryMean System.Private.CoreLib.dll:System.Single.Abs(System.Single) System.Private.CoreLib.dll:System.Single.CompareTo(System.Object) System.Private.CoreLib.dll:System.Single.CompareTo(System.Single) +System.Private.CoreLib.dll:System.Single.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Single.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Single.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Single.Equals(System.Object) @@ -16253,14 +17123,19 @@ System.Private.CoreLib.dll:System.Single.Equals(System.Single) System.Private.CoreLib.dll:System.Single.GetHashCode() System.Private.CoreLib.dll:System.Single.GetTypeCode() System.Private.CoreLib.dll:System.Single.IsFinite(System.Single) +System.Private.CoreLib.dll:System.Single.IsInfinity(System.Single) +System.Private.CoreLib.dll:System.Single.IsInteger(System.Single) System.Private.CoreLib.dll:System.Single.IsNaN(System.Single) System.Private.CoreLib.dll:System.Single.IsNaNOrZero(System.Single) System.Private.CoreLib.dll:System.Single.IsNegative(System.Single) +System.Private.CoreLib.dll:System.Single.IsOddInteger(System.Single) System.Private.CoreLib.dll:System.Single.IsZero(System.Single) +System.Private.CoreLib.dll:System.Single.Log2(System.Single) System.Private.CoreLib.dll:System.Single.Max(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.Min(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_Equality(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_GreaterThan(System.Single, System.Single) +System.Private.CoreLib.dll:System.Single.op_GreaterThanOrEqual(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_Inequality(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_LessThan(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_LessThanOrEqual(System.Single, System.Single) @@ -16310,15 +17185,20 @@ System.Private.CoreLib.dll:System.Single.System.IConvertible.ToUInt64(System.IFo System.Private.CoreLib.dll:System.Single.System.Numerics.IAdditionOperators.op_Addition(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Single, System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.IDivisionOperators.op_Division(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NaN() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NegativeInfinity() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NegativeZero() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_PositiveInfinity() System.Private.CoreLib.dll:System.Single.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Single.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Single.System.Numerics.IMultiplyOperators.op_Multiply(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.IsZero(System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertToChecked`1(System.Single, out TOther&) @@ -16329,6 +17209,7 @@ System.Private.CoreLib.dll:System.Single.System.Numerics.IUnaryNegationOperators System.Private.CoreLib.dll:System.Single.ToString() System.Private.CoreLib.dll:System.Single.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Single.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Single.Truncate(System.Single) System.Private.CoreLib.dll:System.Single.TryConvertFrom`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.TryConvertTo`1(System.Single, out TOther&) System.Private.CoreLib.dll:System.Single.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -16410,6 +17291,9 @@ System.Private.CoreLib.dll:System.SpanHelpers.IndexOfNullByte(System.Byte*) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfNullCharacter(System.Char*) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfValueType`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf(System.Byte&, System.Int32, System.Byte&, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf(System.Char&, System.Int32, System.Char&, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf`1(T&, System.Int32, T&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOfValueType`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOfValueType`2(TValue&, TValue, System.Int32) @@ -17267,7 +18151,7 @@ System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.System.StubHe System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1/SizeHolder System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1/SizeHolder..cctor() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers -System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|18_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) +System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|17_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.AddToCleanupList(System.StubHelpers.CleanupWorkListElement&, System.Runtime.InteropServices.SafeHandle) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CalcVaListSize(System.IntPtr) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CheckStringLength(System.Int32) @@ -17283,7 +18167,6 @@ System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CreateCustomMarshaler( System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CreateLayoutClassMarshalStubs(System.Runtime.CompilerServices.QCallTypeHandle, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.DestroyCleanupList(System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.FreeArrayContents`2(System.Byte*, System.Int32) -System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetDelegateTarget(System.Delegate) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetHRExceptionObject(System.Int32) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetPendingExceptionObject() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetStubContext() @@ -18157,8 +19040,6 @@ System.Private.CoreLib.dll:System.Threading.Lock.ExitAll() System.Private.CoreLib.dll:System.Threading.Lock.ExitImpl() System.Private.CoreLib.dll:System.Threading.Lock.get_IsHeldByCurrentThread() System.Private.CoreLib.dll:System.Threading.Lock.get_IsSingleProcessor() -System.Private.CoreLib.dll:System.Threading.Lock.get_LockIdForEvents() -System.Private.CoreLib.dll:System.Threading.Lock.get_OwningThreadId() System.Private.CoreLib.dll:System.Threading.Lock.get_ShouldStopPreemptingWaiters() System.Private.CoreLib.dll:System.Threading.Lock.get_WaitEvent() System.Private.CoreLib.dll:System.Threading.Lock.GetOrCreateCondition() @@ -19302,6 +20183,7 @@ System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue System.Threading System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue System.Threading.ThreadPoolWorkQueueThreadLocals::workQueue System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue..cctor() System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue..ctor() +System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.AssignWorkItemQueue(System.Threading.ThreadPoolWorkQueueThreadLocals) System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.CreateThreadLocals() System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.Dequeue(System.Threading.ThreadPoolWorkQueueThreadLocals, System.Boolean&) System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.Dispatch() @@ -19698,8 +20580,6 @@ System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeResult::timeZoneOffset -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration0 -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration1 System.Private.CoreLib.dll:System.TimeSpan System.Globalization.TimeSpanParse/TimeSpanResult::parsedTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.Threading.Timeout::InfiniteTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MaxValue @@ -20263,6 +21143,25 @@ System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.Runtime.Ser System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.String) System.Private.CoreLib.dll:System.UInt128 +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::NegativeInfinityValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::NegativeZeroValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::OneValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::PositiveInfinityValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::QuietNaNValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.Zero() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::ZeroValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::MaxValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::MinValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() @@ -20275,6 +21174,7 @@ System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(S System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt128.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt128.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.UInt128.DivRem(System.UInt128, System.UInt128) @@ -20287,6 +21187,7 @@ System.Private.CoreLib.dll:System.UInt128.get_One() System.Private.CoreLib.dll:System.UInt128.get_Upper() System.Private.CoreLib.dll:System.UInt128.get_Zero() System.Private.CoreLib.dll:System.UInt128.GetHashCode() +System.Private.CoreLib.dll:System.UInt128.IsOddInteger(System.UInt128) System.Private.CoreLib.dll:System.UInt128.LeadingZeroCount(System.UInt128) System.Private.CoreLib.dll:System.UInt128.LeadingZeroCountAsInt32(System.UInt128) System.Private.CoreLib.dll:System.UInt128.Log2(System.UInt128) @@ -20307,8 +21208,14 @@ System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Division(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Equality(System.UInt128, System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_ExclusiveOr(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Decimal) => System.UInt128 System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Double) => System.UInt128 System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Int16) => System.UInt128 @@ -20346,6 +21253,7 @@ System.Private.CoreLib.dll:System.UInt128.op_Inequality(System.UInt128, System.U System.Private.CoreLib.dll:System.UInt128.op_LeftShift(System.UInt128, System.Int32) System.Private.CoreLib.dll:System.UInt128.op_LessThan(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_LessThanOrEqual(System.UInt128, System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_Modulus(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Multiply(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_OnesComplement(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_RightShift(System.UInt128, System.Int32) @@ -20360,10 +21268,13 @@ System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInf System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.IsGreaterThanAsUnsigned(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy10(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy16(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsFinite(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsInfinity(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsNaN(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsNegative(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsZero(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt128, out TOther&) @@ -20372,9 +21283,11 @@ System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt128[] System.Numerics.Decimal128::UInt128Powers10 System.Private.CoreLib.dll:System.UInt16 System.Private.CoreLib.dll:System.UInt16 System.Double::System.IBinaryFloatParseAndFormatInfo.DenormalMantissaBits() System.Private.CoreLib.dll:System.UInt16 System.Double::System.IBinaryFloatParseAndFormatInfo.ExponentBits() @@ -20417,16 +21330,22 @@ System.Private.CoreLib.dll:System.UInt16 System.Threading.LowLevelLifoSemaphore/ System.Private.CoreLib.dll:System.UInt16 System.UInt16::m_value System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt16.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt16.CompareTo(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt16.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt16.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt16.DivRem(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Equals(System.Object) System.Private.CoreLib.dll:System.UInt16.Equals(System.UInt16) System.Private.CoreLib.dll:System.UInt16.GetHashCode() System.Private.CoreLib.dll:System.UInt16.GetTypeCode() +System.Private.CoreLib.dll:System.UInt16.IsOddInteger(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.LeadingZeroCount(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.Log2(System.UInt16) System.Private.CoreLib.dll:System.UInt16.Max(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Min(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -20456,32 +21375,42 @@ System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IAdditionOperators.op_Addition(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_LessThan(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IDivisionOperators.op_Division(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IEqualityOperators.op_Equality(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IEqualityOperators.op_Inequality(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsFinite(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsInfinity(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsNaN(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsNegative(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsZero(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IShiftOperators.op_LeftShift(System.UInt16, System.Int32) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IShiftOperators.op_RightShift(System.UInt16, System.Int32) System.Private.CoreLib.dll:System.UInt16.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt16) System.Private.CoreLib.dll:System.UInt16.ToString() System.Private.CoreLib.dll:System.UInt16.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt16.TryConvertFromChecked`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryConvertFromSaturating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryConvertFromTruncating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20518,16 +21447,26 @@ System.Private.CoreLib.dll:System.UInt32 System.Decimal::High() System.Private.CoreLib.dll:System.UInt32 System.Decimal::Low() System.Private.CoreLib.dll:System.UInt32 System.Decimal::Mid() System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::High() +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::Low() +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::Mid() System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::uflags System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::uhi System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::ulo System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::umid +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U0 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U1 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U2 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U0 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U1 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U2 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U3 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U0 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U1 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U2 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U3 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U4 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U5 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/PowerOvfl::Hi System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleGroupingData::value__ System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleNumberData::value__ System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleStringData::value__ @@ -20547,8 +21486,23 @@ System.Private.CoreLib.dll:System.UInt32 System.HashCode::s_seed System.Private.CoreLib.dll:System.UInt32 System.HexConverter/Casing::value__ System.Private.CoreLib.dll:System.UInt32 System.Number/BigInteger/BlocksBuffer::e0 System.Private.CoreLib.dll:System.UInt32 System.Number/BinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Number/DiyFp128::_sign System.Private.CoreLib.dll:System.UInt32 System.Number/HexParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Number/IHexOrBinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::_value +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.Zero() System.Private.CoreLib.dll:System.UInt32 System.Reflection.InvocationFlags::value__ System.Private.CoreLib.dll:System.UInt32 System.Runtime.CompilerServices.AsyncInstrumentation/Flags::value__ System.Private.CoreLib.dll:System.UInt32 System.Runtime.CompilerServices.AsyncProfiler/Info::ContinuationIndex @@ -20595,6 +21549,7 @@ System.Private.CoreLib.dll:System.UInt32 System.TimeZoneInfo/TZifHead::TypeCount System.Private.CoreLib.dll:System.UInt32 System.UInt32::m_value System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt32.CompareTo(System.Object) @@ -20602,10 +21557,12 @@ System.Private.CoreLib.dll:System.UInt32.CompareTo(System.UInt32) System.Private.CoreLib.dll:System.UInt32.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt32.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt32.DivRem(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.Equals(System.Object) System.Private.CoreLib.dll:System.UInt32.Equals(System.UInt32) System.Private.CoreLib.dll:System.UInt32.GetHashCode() System.Private.CoreLib.dll:System.UInt32.GetTypeCode() +System.Private.CoreLib.dll:System.UInt32.IsOddInteger(System.UInt32) System.Private.CoreLib.dll:System.UInt32.LeadingZeroCount(System.UInt32) System.Private.CoreLib.dll:System.UInt32.Log2(System.UInt32) System.Private.CoreLib.dll:System.UInt32.Max(System.UInt32, System.UInt32) @@ -20637,27 +21594,36 @@ System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IAdditionOperators.op_Addition(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_LessThan(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IDivisionOperators.op_Division(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IEqualityOperators.op_Equality(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IEqualityOperators.op_Inequality(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsFinite(System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsInfinity(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsNaN(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsNegative(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsZero(System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IShiftOperators.op_LeftShift(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IShiftOperators.op_RightShift(System.UInt32, System.Int32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt32) System.Private.CoreLib.dll:System.UInt32.ToString() @@ -20689,11 +21655,19 @@ System.Private.CoreLib.dll:System.UInt64 System.Decimal::_lo64 System.Private.CoreLib.dll:System.UInt64 System.Decimal::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc::ulomid +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::High64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::Low64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::uhigh64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::ulo64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf16::High64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf16::Low64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::High64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::Mid64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::uhigh64LE System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::ulo64LE System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::umid64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/PowerOvfl::MidLo System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.DenormalMantissaMask() System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.InfinityBits() System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.MaxMantissaFastPath() @@ -20722,12 +21696,33 @@ System.Private.CoreLib.dll:System.UInt64 System.Int128::_upper System.Private.CoreLib.dll:System.UInt64 System.Marvin::k__BackingField System.Private.CoreLib.dll:System.UInt64 System.Marvin::DefaultSeed() System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp::f +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_hi +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_lo +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::High +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::Low +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal128::_lower +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal128::_upper +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::_value +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.Zero() System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_00 System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_01 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s0 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s1 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s2 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s3 +System.Private.CoreLib.dll:System.UInt64 System.Runtime.CompilerServices.AsyncProfiler/Info::DispatcherId System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.ComWrappers/ManagedObjectWrapper::RefCount System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_ui8 System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.SafeBuffer::ByteLength() @@ -20747,10 +21742,12 @@ System.Private.CoreLib.dll:System.UInt64 System.UInt128::Upper() System.Private.CoreLib.dll:System.UInt64 System.UInt64::m_value System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) @@ -20758,6 +21755,7 @@ System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() System.Private.CoreLib.dll:System.UInt64.GetTypeCode() +System.Private.CoreLib.dll:System.UInt64.IsOddInteger(System.UInt64) System.Private.CoreLib.dll:System.UInt64.LeadingZeroCount(System.UInt64) System.Private.CoreLib.dll:System.UInt64.Log2(System.UInt64) System.Private.CoreLib.dll:System.UInt64.Max(System.UInt64, System.UInt64) @@ -20789,32 +21787,42 @@ System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IAdditionOperators.op_Addition(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_LessThan(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IDivisionOperators.op_Division(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IEqualityOperators.op_Equality(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IEqualityOperators.op_Inequality(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsFinite(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsInfinity(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsNaN(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsNegative(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsZero(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IShiftOperators.op_LeftShift(System.UInt64, System.Int32) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IShiftOperators.op_RightShift(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.UInt64.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt64) System.Private.CoreLib.dll:System.UInt64.ToString() System.Private.CoreLib.dll:System.UInt64.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt64.TryConvertFromChecked`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryConvertFromSaturating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryConvertFromTruncating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20859,46 +21867,62 @@ System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::_value System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::MaxValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::MinValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::Zero System.Private.CoreLib.dll:System.UIntPtr.CompareTo(System.Object) System.Private.CoreLib.dll:System.UIntPtr.CompareTo(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UIntPtr.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UIntPtr.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UIntPtr.DivRem(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Equals(System.Object) System.Private.CoreLib.dll:System.UIntPtr.Equals(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.get_MaxValue() System.Private.CoreLib.dll:System.UIntPtr.get_MinValue() System.Private.CoreLib.dll:System.UIntPtr.GetHashCode() +System.Private.CoreLib.dll:System.UIntPtr.IsOddInteger(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.LeadingZeroCount(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.Log2(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Max(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Min(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.op_Equality(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.op_Inequality(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IAdditionOperators.op_Addition(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_GreaterThan(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_LessThan(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IDivisionOperators.op_Division(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMultiplyOperators.op_Multiply(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsFinite(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsInfinity(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsNaN(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsNegative(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsZero(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToChecked`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IShiftOperators.op_LeftShift(System.UIntPtr, System.Int32) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IShiftOperators.op_RightShift(System.UIntPtr, System.Int32) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.ISubtractionOperators.op_Subtraction(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.ToString() System.Private.CoreLib.dll:System.UIntPtr.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromChecked`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromSaturating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromTruncating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -21036,6 +22060,7 @@ System.Private.CoreLib.dll:T System.Reflection.MethodBase/ArgumentData`1::_arg0 System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray2`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray3`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray4`1::t +System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray5`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray8`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.StrongBox`1::Value System.Private.CoreLib.dll:T System.Runtime.InteropServices.GCHandle`1::Target() @@ -21119,9 +22144,12 @@ System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::Negati System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::NegativeZero() System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::PositiveInfinity() System.Private.CoreLib.dll:TSelf System.Numerics.IMinMaxValue`1::MaxValue() +System.Private.CoreLib.dll:TSelf System.Numerics.IMinMaxValue`1::MinValue() System.Private.CoreLib.dll:TSelf System.Numerics.INumberBase`1::One() System.Private.CoreLib.dll:TSelf System.Numerics.INumberBase`1::Zero() System.Private.CoreLib.dll:TSelf System.Runtime.Intrinsics.ISimdVector`2::Zero() +System.Private.CoreLib.dll:TSignificand System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:TSignificand System.Number/DecodedDecimalIeee754`1::Significand() System.Private.CoreLib.dll:TState System.Threading.QueueUserWorkItemCallback`1::_state System.Private.CoreLib.dll:TState System.Threading.QueueUserWorkItemCallbackDefaultContext`1::_state System.Private.CoreLib.dll:TStateMachine System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1::StateMachine @@ -21136,6 +22164,19 @@ System.Private.CoreLib.dll:TValue System.Collections.Generic.Dictionary`2::Item( System.Private.CoreLib.dll:TValue System.Collections.Generic.Dictionary`2/Entry::value System.Private.CoreLib.dll:TValue System.Collections.Generic.KeyValuePair`2::value System.Private.CoreLib.dll:TValue System.Collections.Generic.KeyValuePair`2::Value() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G0G1Mask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::GwPlus4SignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::MaxSignificand() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NaN() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NaNMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NegativeInfinity() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::PositiveInfinity() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::SignMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::Zero() System.Private.CoreLib.dll:TValue System.Runtime.CompilerServices.GenericCache`2/Entry::_value System.Private.CoreLib.dll:V System.Reflection.CerHashtable`2::Item(K) System.Private.CoreLib.dll:V[] System.Reflection.CerHashtable`2/Table::m_values diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-size.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-size.txt index 8d5100e14bda..a6c3a64034ff 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-size.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-CoreCLR-R2R-size.txt @@ -1,29 +1,29 @@ -AppBundleSize: 18,108,709 bytes (17,684.3 KB = 17.3 MB) +AppBundleSize: 19,162,000 bytes (18,712.9 KB = 18.3 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 1,060 bytes (1.0 KB = 0.0 MB) + 1,039 bytes (1.0 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 167,544 bytes (163.6 KB = 0.2 MB) + 166,744 bytes (162.8 KB = 0.2 MB) Contents/MonoBundle/libcoreclr.dylib: - 5,482,504 bytes (5,354.0 KB = 5.2 MB) + 5,575,296 bytes (5,444.6 KB = 5.3 MB) Contents/MonoBundle/libSystem.Globalization.Native.dylib: - 92,776 bytes (90.6 KB = 0.1 MB) + 126,112 bytes (123.2 KB = 0.1 MB) Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: - 1,413,320 bytes (1,380.2 KB = 1.3 MB) + 1,446,480 bytes (1,412.6 KB = 1.4 MB) Contents/MonoBundle/libSystem.Native.dylib: - 130,440 bytes (127.4 KB = 0.1 MB) + 163,584 bytes (159.8 KB = 0.2 MB) Contents/MonoBundle/libSystem.Net.Security.Native.dylib: - 53,544 bytes (52.3 KB = 0.1 MB) + 86,592 bytes (84.6 KB = 0.1 MB) Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: - 209,928 bytes (205.0 KB = 0.2 MB) + 245,600 bytes (239.8 KB = 0.2 MB) Contents/MonoBundle/Microsoft.MacCatalyst.dll: - 67,072 bytes (65.5 KB = 0.1 MB) + 65,536 bytes (64.0 KB = 0.1 MB) Contents/MonoBundle/runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) Contents/MonoBundle/SizeTestApp.dll: - 7,168 bytes (7.0 KB = 0.0 MB) + 6,656 bytes (6.5 KB = 0.0 MB) Contents/MonoBundle/SizeTestApp.r2r.dylib: - 9,185,480 bytes (8,970.2 KB = 8.8 MB) + 9,871,944 bytes (9,640.6 KB = 9.4 MB) Contents/MonoBundle/System.Collections.Immutable.dll: 13,824 bytes (13.5 KB = 0.0 MB) Contents/MonoBundle/System.Diagnostics.StackTrace.dll: @@ -33,7 +33,7 @@ Contents/MonoBundle/System.IO.Compression.dll: Contents/MonoBundle/System.IO.MemoryMappedFiles.dll: 16,896 bytes (16.5 KB = 0.0 MB) Contents/MonoBundle/System.Private.CoreLib.dll: - 1,178,624 bytes (1,151.0 KB = 1.1 MB) + 1,287,168 bytes (1,257.0 KB = 1.2 MB) Contents/MonoBundle/System.Reflection.Metadata.dll: 56,832 bytes (55.5 KB = 0.1 MB) Contents/MonoBundle/System.Runtime.dll: diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-preservedapis.txt index df184cd9429a..50239612aa6c 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-preservedapis.txt @@ -2123,7 +2123,7 @@ System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_IsAsyn System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_IsInvalid() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Path() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_SupportsRandomAccess() -System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeek() +System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeekCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileLength() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.Init(System.String, System.IO.FileMode, System.IO.FileAccess, System.IO.FileShare, System.IO.FileOptions, System.Int64, out System.Int64&, out System.IO.UnixFileMode&) System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.MapUnixFileTypeToFileType(Interop/Sys/FileStatus) @@ -4007,6 +4007,7 @@ System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPoint`1(Syste System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPointExact(System.UInt64, System.UInt32, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96ByConst(System.UInt64&, System.UInt32&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DivByConst(System.UInt32*, System.UInt32, out System.UInt32&, out System.UInt32&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Equals(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.get_High() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_IsNegative() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low64() @@ -4216,6 +4217,7 @@ System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MaxValue() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Double System.Number/SqrtCoefficients::C System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.NFloat::_value System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalDays() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalHours() @@ -4633,11 +4635,6 @@ System.Private.CoreLib.dll:System.GC.register_ephemeron_array(System.Runtime.Eph System.Private.CoreLib.dll:System.GC.ReRegisterForFinalize(System.Object) System.Private.CoreLib.dll:System.GC.SuppressFinalize(System.Object) System.Private.CoreLib.dll:System.GCGenerationInfo -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo0 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo1 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo2 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo3 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo4 System.Private.CoreLib.dll:System.GCMemoryInfo System.Private.CoreLib.dll:System.GCMemoryInfo..ctor(System.GCMemoryInfoData) System.Private.CoreLib.dll:System.GCMemoryInfo.get_HighMemoryLoadThresholdBytes() @@ -5393,9 +5390,10 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globaliz System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::InvariantInfo() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..cctor() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData) -System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|58_0(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|60_0(System.IFormatProvider) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|165_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.AllowHyphenDuringParsing() +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CreateUtf8Cache(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyGroupSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencySymbolTChar`1() @@ -5418,6 +5416,7 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PercentPosi System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetFormat(System.Type) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetUtf8Span(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.InitializeInvariantAndNegativeSignFlags() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NaNSymbolTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NegativeInfinitySymbolTChar`1() @@ -5441,7 +5440,6 @@ System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalizatio System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowLeadingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowParentheses System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowThousands -System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingInvalidCharacters System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingSign System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::Any @@ -5833,6 +5831,7 @@ System.Private.CoreLib.dll:System.Half.get_One() System.Private.CoreLib.dll:System.Half.get_PositiveInfinity() System.Private.CoreLib.dll:System.Half.get_TrailingSignificand() System.Private.CoreLib.dll:System.Half.get_Zero() +System.Private.CoreLib.dll:System.Half.GetCompareKey(System.UInt16) System.Private.CoreLib.dll:System.Half.GetHashCode() System.Private.CoreLib.dll:System.Half.IsFinite(System.Half) System.Private.CoreLib.dll:System.Half.IsNaN(System.Half) @@ -6490,6 +6489,7 @@ System.Private.CoreLib.dll:System.Int32 System.MidpointRounding::value__ System.Private.CoreLib.dll:System.Int32 System.Number/BigInteger::_length System.Private.CoreLib.dll:System.Int32 System.Number/BinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp::e +System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp128::_exponent System.Private.CoreLib.dll:System.Int32 System.Number/HexParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/IHexOrBinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::DigitsCount @@ -7475,8 +7475,8 @@ System.Private.CoreLib.dll:System.Marvin.ComputeHash32OrdinalIgnoreCaseSlow(Syst System.Private.CoreLib.dll:System.Marvin.GenerateSeed() System.Private.CoreLib.dll:System.Marvin.get_DefaultSeed() System.Private.CoreLib.dll:System.Math -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|46_0(System.UInt64, System.UInt64, out System.UInt64&) -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|52_0(System.Double, System.Double) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|44_0(System.UInt64, System.UInt64, out System.UInt64&) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|50_0(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Single) System.Private.CoreLib.dll:System.Math.BigMul(System.UInt32, System.UInt32) @@ -7667,22 +7667,22 @@ System.Private.CoreLib.dll:System.NullReferenceException..ctor() System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String) System.Private.CoreLib.dll:System.Number System.Private.CoreLib.dll:System.Number..cctor() -System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|190_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) -System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|58_0(System.Int128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|50_0(System.Int32, System.Int32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|54_0(System.Int64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|60_0(System.UInt128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|52_0(System.UInt32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|56_0(System.UInt64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__Slow|43_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) -System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|196_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|59_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|51_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|55_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|61_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|53_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|57_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|79_0(System.UInt32) +System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|558_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) +System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|414_0(System.Int128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|406_0(System.Int32, System.Int32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|410_0(System.Int64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|416_0(System.UInt128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|408_0(System.UInt32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|412_0(System.UInt64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__Slow|399_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|564_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|415_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|407_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|411_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|417_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|409_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|413_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|435_0(System.UInt32) System.Private.CoreLib.dll:System.Number.AppendUnknownChar`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) System.Private.CoreLib.dll:System.Number.CalculatePower(System.Int32) System.Private.CoreLib.dll:System.Number.ComputeFloat`1(System.Int64, System.UInt64) @@ -7690,7 +7690,8 @@ System.Private.CoreLib.dll:System.Number.ComputeProductApproximation(System.Int3 System.Private.CoreLib.dll:System.Number.ConsumeTrailingNulls`1(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.CurrencyGroupSizes(System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.DecimalToNumber(System.Decimal&, System.Number/NumberBuffer&) -System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&, out System.Boolean&) System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.ExtractFractionAndBiasedExponent`1(TNumber, out System.Int32&) System.Private.CoreLib.dll:System.Number.FindSection(System.ReadOnlySpan`1, System.Int32) @@ -7746,7 +7747,7 @@ System.Private.CoreLib.dll:System.Number.ParseFormatSpecifier(System.ReadOnlySpa System.Private.CoreLib.dll:System.Number.PercentGroupSizes(System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.RoundNumber(System.Number/NumberBuffer&, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.SpanTrim`1(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.Number.ThrowOverflowException(System.String) +System.Private.CoreLib.dll:System.Number.ThrowDecimalOverflowException() System.Private.CoreLib.dll:System.Number.ThrowOverflowException`1() System.Private.CoreLib.dll:System.Number.TryCopyTo`1(System.String, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatDecimal`1(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) @@ -7846,6 +7847,31 @@ System.Private.CoreLib.dll:System.Number/DiyFp.GetBoundaries(System.Int32, out S System.Private.CoreLib.dll:System.Number/DiyFp.Multiply(System.Number/DiyFp&) System.Private.CoreLib.dll:System.Number/DiyFp.Normalize() System.Private.CoreLib.dll:System.Number/DiyFp.Subtract(System.Number/DiyFp&) +System.Private.CoreLib.dll:System.Number/DiyFp128 +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxHalf +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxOne +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxThreeQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128..ctor(System.UInt32, System.Int32, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::InvTrigConstants +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::PiFractionConstants +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Exp10Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::ExpCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperCoshCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperSinhCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Log2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Pow2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::PowLog2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigCosCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigSinCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanNumeratorCoefficients System.Private.CoreLib.dll:System.Number/Grisu3 System.Private.CoreLib.dll:System.Number/Grisu3.BiggestPowerTen(System.UInt32, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Number/Grisu3.get_CachedPowersBinaryExponent() @@ -7880,6 +7906,7 @@ System.Private.CoreLib.dll:System.Number/NumberBuffer.ToString() System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBuffer::Kind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Decimal +System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::DecimalIeee754 System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::FloatingPoint System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Integer System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Unknown @@ -7887,6 +7914,9 @@ System.Private.CoreLib.dll:System.Number/ParsingStatus System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Failed System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::OK System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Overflow +System.Private.CoreLib.dll:System.Number/SqrtCoefficients +System.Private.CoreLib.dll:System.Number/SqrtCoefficients..ctor(System.Single, System.Single, System.Double) +System.Private.CoreLib.dll:System.Number/SqrtCoefficients[] System.Number::s_sqrtTable System.Private.CoreLib.dll:System.Numerics.BitOperations System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|22_0(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|23_0(System.UInt64) @@ -10842,8 +10872,11 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.FixedBufferAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.FixedBufferAttribute..ctor(System.Type, System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 System.GCMemoryInfoData::_pauseDurations System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray4`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 System.GCMemoryInfoData::_generationInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray6`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Buffers.BitVector256::_values @@ -12291,6 +12324,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.HashData(System.ReadO System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Single System.Private.CoreLib.dll:System.Single System.Collections.Hashtable::_loadFactor +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::A +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::B System.Private.CoreLib.dll:System.Single System.Single::m_value System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MaxValue() @@ -12483,8 +12518,6 @@ System.Private.CoreLib.dll:System.SR.Format(System.String, System.Object) System.Private.CoreLib.dll:System.StackOverflowException System.Private.CoreLib.dll:System.StackOverflowException..ctor() System.Private.CoreLib.dll:System.StackOverflowException..ctor(System.String) -System.Private.CoreLib.dll:System.STAThreadAttribute -System.Private.CoreLib.dll:System.STAThreadAttribute..ctor() System.Private.CoreLib.dll:System.String System.Private.CoreLib.dll:System.String Microsoft.Win32.SafeHandles.SafeFileHandle::_path System.Private.CoreLib.dll:System.String Microsoft.Win32.SafeHandles.SafeFileHandle::Path() @@ -13825,8 +13858,6 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedN System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration0 -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration1 System.Private.CoreLib.dll:System.TimeSpan System.Globalization.TimeSpanParse/TimeSpanResult::parsedTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MaxValue System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MinValue @@ -14635,6 +14666,7 @@ System.Private.CoreLib.dll:System.UInt32 System.HashCode::s_seed System.Private.CoreLib.dll:System.UInt32 System.HexConverter/Casing::value__ System.Private.CoreLib.dll:System.UInt32 System.Number/BigInteger/BlocksBuffer::e0 System.Private.CoreLib.dll:System.UInt32 System.Number/BinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Number/DiyFp128::_sign System.Private.CoreLib.dll:System.UInt32 System.Number/HexParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Number/IHexOrBinaryParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Reflection.Emit.RuntimeAssemblyBuilder::access @@ -14746,6 +14778,10 @@ System.Private.CoreLib.dll:System.UInt64 System.Int128::_upper System.Private.CoreLib.dll:System.UInt64 System.Marvin::k__BackingField System.Private.CoreLib.dll:System.UInt64 System.Marvin::DefaultSeed() System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp::f +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_hi +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_lo +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::High +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::Low System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_00 System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_01 System.Private.CoreLib.dll:System.UInt64 System.Runtime.Intrinsics.Vector64`1::_00 @@ -14945,6 +14981,7 @@ System.Private.CoreLib.dll:T System.Reflection.MethodBase/ArgumentData`1::_arg0 System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray2`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray3`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray4`1::t +System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray5`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray6`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray8`1::t System.Private.CoreLib.dll:T System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1/ManagedToUnmanagedIn::_handle diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-size.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-size.txt index b395a9e6c609..b0701cf7ebb1 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-interpreter-size.txt @@ -1,19 +1,19 @@ -AppBundleSize: 5,865,537 bytes (5,728.1 KB = 5.6 MB) +AppBundleSize: 5,882,283 bytes (5,744.4 KB = 5.6 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 1,060 bytes (1.0 KB = 0.0 MB) + 1,078 bytes (1.1 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 4,580,424 bytes (4,473.1 KB = 4.4 MB) + 4,579,016 bytes (4,471.7 KB = 4.4 MB) Contents/MonoBundle/Microsoft.MacCatalyst.dll: - 158,208 bytes (154.5 KB = 0.2 MB) + 155,648 bytes (152.0 KB = 0.1 MB) Contents/MonoBundle/runtimeconfig.bin: 1,405 bytes (1.4 KB = 0.0 MB) Contents/MonoBundle/SizeTestApp.dll: 7,680 bytes (7.5 KB = 0.0 MB) Contents/MonoBundle/System.Private.CoreLib.aotdata.arm64: - 41,552 bytes (40.6 KB = 0.0 MB) + 41,768 bytes (40.8 KB = 0.0 MB) Contents/MonoBundle/System.Private.CoreLib.dll: - 1,065,472 bytes (1,040.5 KB = 1.0 MB) + 1,085,952 bytes (1,060.5 KB = 1.0 MB) Contents/MonoBundle/System.Runtime.dll: 5,120 bytes (5.0 KB = 0.0 MB) Contents/MonoBundle/System.Runtime.InteropServices.dll: diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-preservedapis.txt index ec31f4ce18ab..159361a52586 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-preservedapis.txt @@ -1423,7 +1423,7 @@ System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_IsAsyn System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_IsInvalid() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Path() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_SupportsRandomAccess() -System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeek() +System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeekCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileLength() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.Init(System.String, System.IO.FileMode, System.IO.FileAccess, System.IO.FileShare, System.IO.FileOptions, System.Int64, out System.Int64&, out System.IO.UnixFileMode&) System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.MapUnixFileTypeToFileType(Interop/Sys/FileStatus) @@ -3179,6 +3179,7 @@ System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPoint`1(Syste System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPointExact(System.UInt64, System.UInt32, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96ByConst(System.UInt64&, System.UInt32&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DivByConst(System.UInt32*, System.UInt32, out System.UInt32&, out System.UInt32&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Equals(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.get_High() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_IsNegative() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low64() @@ -3377,6 +3378,7 @@ System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MaxValue() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Double System.Number/SqrtCoefficients::C System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.NFloat::_value System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalDays() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalHours() @@ -3788,11 +3790,6 @@ System.Private.CoreLib.dll:System.GC.register_ephemeron_array(System.Runtime.Eph System.Private.CoreLib.dll:System.GC.ReRegisterForFinalize(System.Object) System.Private.CoreLib.dll:System.GC.SuppressFinalize(System.Object) System.Private.CoreLib.dll:System.GCGenerationInfo -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo0 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo1 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo2 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo3 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo4 System.Private.CoreLib.dll:System.GCMemoryInfo System.Private.CoreLib.dll:System.GCMemoryInfo..ctor(System.GCMemoryInfoData) System.Private.CoreLib.dll:System.GCMemoryInfo.get_HighMemoryLoadThresholdBytes() @@ -4547,9 +4544,10 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globaliz System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::InvariantInfo() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..cctor() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData) -System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|58_0(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|60_0(System.IFormatProvider) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|165_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.AllowHyphenDuringParsing() +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CreateUtf8Cache(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyGroupSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencySymbolTChar`1() @@ -4572,6 +4570,7 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PercentPosi System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetFormat(System.Type) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetUtf8Span(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.InitializeInvariantAndNegativeSignFlags() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NaNSymbolTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NegativeInfinitySymbolTChar`1() @@ -4595,7 +4594,6 @@ System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalizatio System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowLeadingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowParentheses System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowThousands -System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingInvalidCharacters System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingSign System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::Any @@ -4984,6 +4982,7 @@ System.Private.CoreLib.dll:System.Half.get_One() System.Private.CoreLib.dll:System.Half.get_PositiveInfinity() System.Private.CoreLib.dll:System.Half.get_TrailingSignificand() System.Private.CoreLib.dll:System.Half.get_Zero() +System.Private.CoreLib.dll:System.Half.GetCompareKey(System.UInt16) System.Private.CoreLib.dll:System.Half.GetHashCode() System.Private.CoreLib.dll:System.Half.IsFinite(System.Half) System.Private.CoreLib.dll:System.Half.IsNaN(System.Half) @@ -5635,6 +5634,7 @@ System.Private.CoreLib.dll:System.Int32 System.MidpointRounding::value__ System.Private.CoreLib.dll:System.Int32 System.Number/BigInteger::_length System.Private.CoreLib.dll:System.Int32 System.Number/BinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp::e +System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp128::_exponent System.Private.CoreLib.dll:System.Int32 System.Number/HexParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/IHexOrBinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::DigitsCount @@ -6547,8 +6547,8 @@ System.Private.CoreLib.dll:System.Marvin.ComputeHash32OrdinalIgnoreCaseSlow(Syst System.Private.CoreLib.dll:System.Marvin.GenerateSeed() System.Private.CoreLib.dll:System.Marvin.get_DefaultSeed() System.Private.CoreLib.dll:System.Math -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|46_0(System.UInt64, System.UInt64, out System.UInt64&) -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|52_0(System.Double, System.Double) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|44_0(System.UInt64, System.UInt64, out System.UInt64&) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|50_0(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Single) System.Private.CoreLib.dll:System.Math.BigMul(System.UInt32, System.UInt32) @@ -6739,22 +6739,22 @@ System.Private.CoreLib.dll:System.NullReferenceException..ctor() System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String) System.Private.CoreLib.dll:System.Number System.Private.CoreLib.dll:System.Number..cctor() -System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|190_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) -System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|58_0(System.Int128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|50_0(System.Int32, System.Int32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|54_0(System.Int64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|60_0(System.UInt128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|52_0(System.UInt32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|56_0(System.UInt64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__Slow|43_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) -System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|196_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|59_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|51_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|55_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|61_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|53_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|57_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|79_0(System.UInt32) +System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|558_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) +System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|414_0(System.Int128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|406_0(System.Int32, System.Int32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|410_0(System.Int64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|416_0(System.UInt128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|408_0(System.UInt32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|412_0(System.UInt64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__Slow|399_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|564_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|415_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|407_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|411_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|417_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|409_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|413_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|435_0(System.UInt32) System.Private.CoreLib.dll:System.Number.AppendUnknownChar`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) System.Private.CoreLib.dll:System.Number.CalculatePower(System.Int32) System.Private.CoreLib.dll:System.Number.ComputeFloat`1(System.Int64, System.UInt64) @@ -6762,7 +6762,8 @@ System.Private.CoreLib.dll:System.Number.ComputeProductApproximation(System.Int3 System.Private.CoreLib.dll:System.Number.ConsumeTrailingNulls`1(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.CurrencyGroupSizes(System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.DecimalToNumber(System.Decimal&, System.Number/NumberBuffer&) -System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&, out System.Boolean&) System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.ExtractFractionAndBiasedExponent`1(TNumber, out System.Int32&) System.Private.CoreLib.dll:System.Number.FindSection(System.ReadOnlySpan`1, System.Int32) @@ -6818,7 +6819,7 @@ System.Private.CoreLib.dll:System.Number.ParseFormatSpecifier(System.ReadOnlySpa System.Private.CoreLib.dll:System.Number.PercentGroupSizes(System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.RoundNumber(System.Number/NumberBuffer&, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.SpanTrim`1(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.Number.ThrowOverflowException(System.String) +System.Private.CoreLib.dll:System.Number.ThrowDecimalOverflowException() System.Private.CoreLib.dll:System.Number.ThrowOverflowException`1() System.Private.CoreLib.dll:System.Number.TryCopyTo`1(System.String, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatDecimal`1(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) @@ -6918,6 +6919,31 @@ System.Private.CoreLib.dll:System.Number/DiyFp.GetBoundaries(System.Int32, out S System.Private.CoreLib.dll:System.Number/DiyFp.Multiply(System.Number/DiyFp&) System.Private.CoreLib.dll:System.Number/DiyFp.Normalize() System.Private.CoreLib.dll:System.Number/DiyFp.Subtract(System.Number/DiyFp&) +System.Private.CoreLib.dll:System.Number/DiyFp128 +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxHalf +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxOne +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxThreeQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128..ctor(System.UInt32, System.Int32, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::InvTrigConstants +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::PiFractionConstants +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Exp10Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::ExpCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperCoshCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperSinhCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Log2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Pow2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::PowLog2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigCosCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigSinCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanNumeratorCoefficients System.Private.CoreLib.dll:System.Number/Grisu3 System.Private.CoreLib.dll:System.Number/Grisu3.BiggestPowerTen(System.UInt32, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Number/Grisu3.get_CachedPowersBinaryExponent() @@ -6952,6 +6978,7 @@ System.Private.CoreLib.dll:System.Number/NumberBuffer.ToString() System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBuffer::Kind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Decimal +System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::DecimalIeee754 System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::FloatingPoint System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Integer System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Unknown @@ -6959,6 +6986,9 @@ System.Private.CoreLib.dll:System.Number/ParsingStatus System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Failed System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::OK System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Overflow +System.Private.CoreLib.dll:System.Number/SqrtCoefficients +System.Private.CoreLib.dll:System.Number/SqrtCoefficients..ctor(System.Single, System.Single, System.Double) +System.Private.CoreLib.dll:System.Number/SqrtCoefficients[] System.Number::s_sqrtTable System.Private.CoreLib.dll:System.Numerics.BitOperations System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|22_0(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|23_0(System.UInt64) @@ -8544,8 +8574,11 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.FixedBufferAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.FixedBufferAttribute..ctor(System.Type, System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 System.GCMemoryInfoData::_pauseDurations System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray4`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 System.GCMemoryInfoData::_generationInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Buffers.BitVector256::_values System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArrayAttribute @@ -9918,6 +9951,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Single +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::A +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::B System.Private.CoreLib.dll:System.Single System.Single::m_value System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MaxValue() @@ -10109,8 +10144,6 @@ System.Private.CoreLib.dll:System.SR.Format(System.String, System.Object) System.Private.CoreLib.dll:System.StackOverflowException System.Private.CoreLib.dll:System.StackOverflowException..ctor() System.Private.CoreLib.dll:System.StackOverflowException..ctor(System.String) -System.Private.CoreLib.dll:System.STAThreadAttribute -System.Private.CoreLib.dll:System.STAThreadAttribute..ctor() System.Private.CoreLib.dll:System.String System.Private.CoreLib.dll:System.String Microsoft.Win32.SafeHandles.SafeFileHandle::_path System.Private.CoreLib.dll:System.String Microsoft.Win32.SafeHandles.SafeFileHandle::Path() @@ -11369,8 +11402,6 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedN System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration0 -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration1 System.Private.CoreLib.dll:System.TimeSpan System.Globalization.TimeSpanParse/TimeSpanResult::parsedTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MaxValue System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MinValue @@ -12085,6 +12116,7 @@ System.Private.CoreLib.dll:System.UInt32 System.HashCode::s_seed System.Private.CoreLib.dll:System.UInt32 System.HexConverter/Casing::value__ System.Private.CoreLib.dll:System.UInt32 System.Number/BigInteger/BlocksBuffer::e0 System.Private.CoreLib.dll:System.UInt32 System.Number/BinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Number/DiyFp128::_sign System.Private.CoreLib.dll:System.UInt32 System.Number/HexParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Number/IHexOrBinaryParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Reflection.InvocationFlags::value__ @@ -12195,6 +12227,10 @@ System.Private.CoreLib.dll:System.UInt64 System.Int128::_upper System.Private.CoreLib.dll:System.UInt64 System.Marvin::k__BackingField System.Private.CoreLib.dll:System.UInt64 System.Marvin::DefaultSeed() System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp::f +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_hi +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_lo +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::High +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::Low System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_00 System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_01 System.Private.CoreLib.dll:System.UInt64 System.Runtime.Intrinsics.Vector64`1::_00 @@ -12391,6 +12427,7 @@ System.Private.CoreLib.dll:T System.Reflection.MethodBase/ArgumentData`1::_arg0 System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray2`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray3`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray4`1::t +System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray5`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray8`1::t System.Private.CoreLib.dll:T System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1/ManagedToUnmanagedIn::_handle System.Private.CoreLib.dll:T System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1/ManagedToUnmanagedOut::_newHandle diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-size.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-size.txt index 70df0e15a732..764477d8dd4b 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-size.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-size.txt @@ -1,13 +1,13 @@ -AppBundleSize: 17,434,413 bytes (17,025.8 KB = 16.6 MB) +AppBundleSize: 17,470,855 bytes (17,061.4 KB = 16.7 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 1,060 bytes (1.0 KB = 0.0 MB) + 1,078 bytes (1.1 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 14,724,936 bytes (14,379.8 KB = 14.0 MB) + 14,758,504 bytes (14,412.6 KB = 14.1 MB) Contents/MonoBundle/aot-instances.aotdata.arm64: - 1,127,176 bytes (1,100.8 KB = 1.1 MB) + 1,127,384 bytes (1,101.0 KB = 1.1 MB) Contents/MonoBundle/Microsoft.MacCatalyst.aotdata.arm64: - 36,824 bytes (36.0 KB = 0.0 MB) + 36,632 bytes (35.8 KB = 0.0 MB) Contents/MonoBundle/Microsoft.MacCatalyst.dll: 51,200 bytes (50.0 KB = 0.0 MB) Contents/MonoBundle/runtimeconfig.bin: @@ -17,9 +17,9 @@ Contents/MonoBundle/SizeTestApp.aotdata.arm64: Contents/MonoBundle/SizeTestApp.dll: 7,680 bytes (7.5 KB = 0.0 MB) Contents/MonoBundle/System.Private.CoreLib.aotdata.arm64: - 904,512 bytes (883.3 KB = 0.9 MB) + 906,328 bytes (885.1 KB = 0.9 MB) Contents/MonoBundle/System.Private.CoreLib.dll: - 567,296 bytes (554.0 KB = 0.5 MB) + 568,320 bytes (555.0 KB = 0.5 MB) Contents/MonoBundle/System.Runtime.aotdata.arm64: 472 bytes (0.5 KB = 0.0 MB) Contents/MonoBundle/System.Runtime.dll: diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-NativeAOT-TrimmableStatic-size.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-NativeAOT-TrimmableStatic-size.txt index b91671512ca8..cc4777bed3f1 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-NativeAOT-TrimmableStatic-size.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-NativeAOT-TrimmableStatic-size.txt @@ -1,9 +1,9 @@ -AppBundleSize: 2,267,013 bytes (2,213.9 KB = 2.2 MB) +AppBundleSize: 2,283,761 bytes (2,230.2 KB = 2.2 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 1,069 bytes (1.0 KB = 0.0 MB) + 1,081 bytes (1.1 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 2,264,040 bytes (2,211.0 KB = 2.2 MB) + 2,280,776 bytes (2,227.3 KB = 2.2 MB) Contents/MonoBundle/runtimeconfig.bin: 1,896 bytes (1.9 KB = 0.0 MB) Contents/PkgInfo: diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-NativeAOT-size.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-NativeAOT-size.txt index b91671512ca8..cc4777bed3f1 100644 --- a/tests/dotnet/UnitTests/expected/MacCatalyst-NativeAOT-size.txt +++ b/tests/dotnet/UnitTests/expected/MacCatalyst-NativeAOT-size.txt @@ -1,9 +1,9 @@ -AppBundleSize: 2,267,013 bytes (2,213.9 KB = 2.2 MB) +AppBundleSize: 2,283,761 bytes (2,230.2 KB = 2.2 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 1,069 bytes (1.0 KB = 0.0 MB) + 1,081 bytes (1.1 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 2,264,040 bytes (2,211.0 KB = 2.2 MB) + 2,280,776 bytes (2,227.3 KB = 2.2 MB) Contents/MonoBundle/runtimeconfig.bin: 1,896 bytes (1.9 KB = 0.0 MB) Contents/PkgInfo: diff --git a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-Interpreter-TrimmableStatic-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-Interpreter-TrimmableStatic-size.txt index df9817923630..10e5d3cc1974 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-Interpreter-TrimmableStatic-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-Interpreter-TrimmableStatic-size.txt @@ -1,9 +1,9 @@ -AppBundleSize: 254,884,704 bytes (248,910.8 KB = 243.1 MB) +AppBundleSize: 262,291,610 bytes (256,144.2 KB = 250.1 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 747 bytes (0.7 KB = 0.0 MB) + 717 bytes (0.7 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 7,351,128 bytes (7,178.8 KB = 7.0 MB) + 7,350,184 bytes (7,177.9 KB = 7.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/_Microsoft.macOS.TypeMap.dll: 4,776,960 bytes (4,665.0 KB = 4.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/_Microsoft.macOS.TypeMaps.dll: @@ -11,211 +11,371 @@ Contents/MonoBundle/.xamarin/osx-arm64/_Microsoft.macOS.TypeMaps.dll: Contents/MonoBundle/.xamarin/osx-arm64/_SizeTestApp.TypeMap.dll: 3,072 bytes (3.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.CSharp.dll: - 872,960 bytes (852.5 KB = 0.8 MB) + 882,984 bytes (862.3 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Caching.Abstractions.dll: - 55,808 bytes (54.5 KB = 0.1 MB) + 81,192 bytes (79.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Configuration.Abstractions.dll: - 28,160 bytes (27.5 KB = 0.0 MB) + 38,224 bytes (37.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: - 146,944 bytes (143.5 KB = 0.1 MB) + 156,968 bytes (153.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Diagnostics.Abstractions.dll: - 29,184 bytes (28.5 KB = 0.0 MB) + 39,248 bytes (38.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.FileProviders.Abstractions.dll: - 15,360 bytes (15.0 KB = 0.0 MB) + 25,384 bytes (24.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Hosting.Abstractions.dll: - 38,912 bytes (38.0 KB = 0.0 MB) + 48,424 bytes (47.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Logging.Abstractions.dll: - 149,504 bytes (146.0 KB = 0.1 MB) + 159,528 bytes (155.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Options.dll: - 178,176 bytes (174.0 KB = 0.2 MB) + 224,040 bytes (218.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Primitives.dll: - 75,776 bytes (74.0 KB = 0.1 MB) + 90,408 bytes (88.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.macOS.dll: 36,660,736 bytes (35,801.5 KB = 35.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.Core.dll: - 1,326,592 bytes (1,295.5 KB = 1.3 MB) + 1,337,168 bytes (1,305.8 KB = 1.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.dll: + 17,192 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Win32.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Win32.Registry.dll: - 23,552 bytes (23.0 KB = 0.0 MB) + 33,576 bytes (32.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/mscorlib.dll: + 59,728 bytes (58.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/netstandard.dll: + 101,160 bytes (98.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/SizeTestApp.dll: 5,632 bytes (5.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.AppContext.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Buffers.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Concurrent.dll: - 135,680 bytes (132.5 KB = 0.1 MB) + 145,704 bytes (142.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.dll: - 313,856 bytes (306.5 KB = 0.3 MB) + 323,880 bytes (316.3 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Immutable.dll: - 1,166,336 bytes (1,139.0 KB = 1.1 MB) + 1,179,944 bytes (1,152.3 KB = 1.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.NonGeneric.dll: - 93,184 bytes (91.0 KB = 0.1 MB) + 103,208 bytes (100.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Specialized.dll: - 94,208 bytes (92.0 KB = 0.1 MB) + 104,232 bytes (101.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Annotations.dll: - 243,712 bytes (238.0 KB = 0.2 MB) + 253,264 bytes (247.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.DataAnnotations.dll: + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.dll: - 7,168 bytes (7.0 KB = 0.0 MB) + 17,232 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.EventBasedAsync.dll: - 28,672 bytes (28.0 KB = 0.0 MB) + 38,696 bytes (37.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Primitives.dll: - 68,096 bytes (66.5 KB = 0.1 MB) + 78,160 bytes (76.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.TypeConverter.dll: - 855,040 bytes (835.0 KB = 0.8 MB) + 864,552 bytes (844.3 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Configuration.dll: + 19,240 bytes (18.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Console.dll: - 214,016 bytes (209.0 KB = 0.2 MB) + 224,080 bytes (218.8 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Core.dll: + 23,376 bytes (22.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Data.Common.dll: - 3,167,232 bytes (3,093.0 KB = 3.0 MB) + 3,178,280 bytes (3,103.8 KB = 3.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Data.DataSetExtensions.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Data.dll: + 25,384 bytes (24.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Contracts.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Debug.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.DiagnosticSource.dll: - 558,592 bytes (545.5 KB = 0.5 MB) + 569,128 bytes (555.8 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.FileVersionInfo.dll: - 35,840 bytes (35.0 KB = 0.0 MB) + 45,864 bytes (44.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Process.dll: - 378,880 bytes (370.0 KB = 0.4 MB) + 397,608 bytes (388.3 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.StackTrace.dll: - 19,968 bytes (19.5 KB = 0.0 MB) + 29,992 bytes (29.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.TextWriterTraceListener.dll: - 54,784 bytes (53.5 KB = 0.1 MB) + 64,848 bytes (63.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Tools.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.TraceSource.dll: - 140,288 bytes (137.0 KB = 0.1 MB) + 150,312 bytes (146.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Tracing.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.dll: + 50,472 bytes (49.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Drawing.dll: + 20,264 bytes (19.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Drawing.Primitives.dll: - 116,224 bytes (113.5 KB = 0.1 MB) + 126,248 bytes (123.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Dynamic.Runtime.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Asn1.dll: - 248,320 bytes (242.5 KB = 0.2 MB) + 276,304 bytes (269.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Tar.dll: - 353,792 bytes (345.5 KB = 0.3 MB) + 370,984 bytes (362.3 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Globalization.Calendars.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Globalization.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Globalization.Extensions.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.Brotli.dll: - 71,168 bytes (69.5 KB = 0.1 MB) + 82,728 bytes (80.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.dll: - 652,288 bytes (637.0 KB = 0.6 MB) + 668,456 bytes (652.8 KB = 0.6 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.FileSystem.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.ZipFile.dll: - 123,904 bytes (121.0 KB = 0.1 MB) + 134,440 bytes (131.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.AccessControl.dll: - 22,528 bytes (22.0 KB = 0.0 MB) + 32,592 bytes (31.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.DriveInfo.dll: - 77,824 bytes (76.0 KB = 0.1 MB) + 87,848 bytes (85.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.Primitives.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.Watcher.dll: - 110,592 bytes (108.0 KB = 0.1 MB) + 120,616 bytes (117.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.IsolatedStorage.dll: - 73,216 bytes (71.5 KB = 0.1 MB) + 83,280 bytes (81.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.MemoryMappedFiles.dll: - 83,456 bytes (81.5 KB = 0.1 MB) + 93,480 bytes (91.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipelines.dll: - 187,904 bytes (183.5 KB = 0.2 MB) + 209,704 bytes (204.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.AccessControl.dll: - 13,824 bytes (13.5 KB = 0.0 MB) + 23,848 bytes (23.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.dll: - 134,656 bytes (131.5 KB = 0.1 MB) + 146,728 bytes (143.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.UnmanagedMemoryStream.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.AsyncEnumerable.dll: - 1,625,088 bytes (1,587.0 KB = 1.5 MB) + 1,641,808 bytes (1,603.3 KB = 1.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.dll: - 835,584 bytes (816.0 KB = 0.8 MB) + 861,008 bytes (840.8 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Expressions.dll: - 4,850,688 bytes (4,737.0 KB = 4.6 MB) + 4,861,736 bytes (4,747.8 KB = 4.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Parallel.dll: - 999,936 bytes (976.5 KB = 1.0 MB) + 1,009,960 bytes (986.3 KB = 1.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Queryable.dll: - 212,480 bytes (207.5 KB = 0.2 MB) + 222,504 bytes (217.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Memory.dll: - 171,520 bytes (167.5 KB = 0.2 MB) + 176,424 bytes (172.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.dll: + 17,232 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.dll: - 1,849,344 bytes (1,806.0 KB = 1.8 MB) + 1,909,032 bytes (1,864.3 KB = 1.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.Json.dll: - 117,760 bytes (115.0 KB = 0.1 MB) + 127,824 bytes (124.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.HttpListener.dll: - 311,808 bytes (304.5 KB = 0.3 MB) + 322,344 bytes (314.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Mail.dll: - 517,120 bytes (505.0 KB = 0.5 MB) + 530,728 bytes (518.3 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NameResolution.dll: - 158,208 bytes (154.5 KB = 0.2 MB) + 273,192 bytes (266.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NetworkInformation.dll: - 140,800 bytes (137.5 KB = 0.1 MB) + 151,336 bytes (147.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Ping.dll: - 87,040 bytes (85.0 KB = 0.1 MB) + 97,576 bytes (95.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Primitives.dll: - 238,592 bytes (233.0 KB = 0.2 MB) + 248,616 bytes (242.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Quic.dll: - 366,080 bytes (357.5 KB = 0.3 MB) + 375,592 bytes (366.8 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Requests.dll: - 396,800 bytes (387.5 KB = 0.4 MB) + 408,400 bytes (398.8 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Security.dll: - 793,088 bytes (774.5 KB = 0.8 MB) + 889,128 bytes (868.3 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.ServerSentEvents.dll: - 67,584 bytes (66.0 KB = 0.1 MB) + 79,144 bytes (77.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.ServicePoint.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Sockets.dll: - 689,152 bytes (673.0 KB = 0.7 MB) + 702,760 bytes (686.3 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebClient.dll: - 164,864 bytes (161.0 KB = 0.2 MB) + 175,400 bytes (171.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebHeaderCollection.dll: - 50,176 bytes (49.0 KB = 0.0 MB) + 60,200 bytes (58.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebProxy.dll: - 26,112 bytes (25.5 KB = 0.0 MB) + 36,136 bytes (35.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.Client.dll: - 87,552 bytes (85.5 KB = 0.1 MB) + 98,088 bytes (95.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.dll: - 248,832 bytes (243.0 KB = 0.2 MB) + 259,368 bytes (253.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Numerics.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Numerics.Vectors.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ObjectModel.dll: - 66,560 bytes (65.0 KB = 0.1 MB) + 76,624 bytes (74.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.CoreLib.dll: - 18,216,960 bytes (17,790.0 KB = 17.4 MB) + 18,983,720 bytes (18,538.8 KB = 18.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.DataContractSerialization.dll: - 2,342,400 bytes (2,287.5 KB = 2.2 MB) + 2,352,424 bytes (2,297.3 KB = 2.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Uri.dll: - 249,344 bytes (243.5 KB = 0.2 MB) + 259,368 bytes (253.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.dll: - 8,666,112 bytes (8,463.0 KB = 8.3 MB) + 8,694,056 bytes (8,490.3 KB = 8.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.Linq.dll: - 404,992 bytes (395.5 KB = 0.4 MB) + 414,032 bytes (404.3 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.DispatchProxy.dll: - 62,464 bytes (61.0 KB = 0.1 MB) + 72,488 bytes (70.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.dll: + 16,208 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.dll: - 331,776 bytes (324.0 KB = 0.3 MB) + 341,800 bytes (333.8 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.ILGeneration.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.Lightweight.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Extensions.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Metadata.dll: - 1,265,664 bytes (1,236.0 KB = 1.2 MB) + 1,276,712 bytes (1,246.8 KB = 1.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Primitives.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.TypeExtensions.dll: - 23,552 bytes (23.0 KB = 0.0 MB) + 33,576 bytes (32.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.Reader.dll: + 15,184 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.ResourceManager.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.Writer.dll: - 35,328 bytes (34.5 KB = 0.0 MB) + 45,392 bytes (44.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.CompilerServices.Unsafe.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.CompilerServices.VisualC.dll: - 8,704 bytes (8.5 KB = 0.0 MB) + 18,728 bytes (18.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.dll: + 45,864 bytes (44.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Extensions.dll: + 17,744 bytes (17.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Handles.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.dll: - 99,840 bytes (97.5 KB = 0.1 MB) + 110,376 bytes (107.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.JavaScript.dll: - 27,136 bytes (26.5 KB = 0.0 MB) + 37,160 bytes (36.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.RuntimeInformation.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Intrinsics.dll: + 18,768 bytes (18.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Loader.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Numerics.dll: - 486,912 bytes (475.5 KB = 0.5 MB) + 564,560 bytes (551.3 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.dll: + 17,232 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Formatters.dll: - 116,736 bytes (114.0 KB = 0.1 MB) + 126,800 bytes (123.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Json.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Primitives.dll: - 19,456 bytes (19.0 KB = 0.0 MB) + 29,480 bytes (28.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Xml.dll: + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.AccessControl.dll: - 45,056 bytes (44.0 KB = 0.0 MB) + 55,080 bytes (53.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Claims.dll: - 91,136 bytes (89.0 KB = 0.1 MB) + 101,200 bytes (98.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Algorithms.dll: + 17,192 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Cng.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Csp.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.dll: - 2,456,576 bytes (2,399.0 KB = 2.3 MB) + 2,472,744 bytes (2,414.8 KB = 2.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Encoding.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.OpenSsl.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.X509Certificates.dll: + 17,232 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.dll: + 18,256 bytes (17.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Principal.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Principal.Windows.dll: - 27,648 bytes (27.0 KB = 0.0 MB) + 37,672 bytes (36.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.SecureString.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ServiceModel.Web.dll: + 16,680 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ServiceProcess.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.CodePages.dll: - 854,528 bytes (834.5 KB = 0.8 MB) + 864,552 bytes (844.3 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.Extensions.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encodings.Web.dll: - 112,640 bytes (110.0 KB = 0.1 MB) + 122,664 bytes (119.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Json.dll: - 2,724,352 bytes (2,660.5 KB = 2.6 MB) + 2,753,360 bytes (2,688.8 KB = 2.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.RegularExpressions.dll: - 1,146,368 bytes (1,119.5 KB = 1.1 MB) + 1,187,112 bytes (1,159.3 KB = 1.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.AccessControl.dll: - 23,552 bytes (23.0 KB = 0.0 MB) + 33,576 bytes (32.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Channels.dll: - 155,136 bytes (151.5 KB = 0.1 MB) + 165,160 bytes (161.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.dll: - 70,656 bytes (69.0 KB = 0.1 MB) + 80,680 bytes (78.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Overlapped.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Dataflow.dll: - 516,608 bytes (504.5 KB = 0.5 MB) + 526,632 bytes (514.3 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.dll: + 16,720 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Extensions.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Parallel.dll: - 121,344 bytes (118.5 KB = 0.1 MB) + 136,488 bytes (133.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Thread.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.ThreadPool.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Timer.dll: + 15,184 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Transactions.dll: + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Transactions.Local.dll: - 381,440 bytes (372.5 KB = 0.4 MB) + 389,968 bytes (380.8 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ValueTuple.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Web.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Web.HttpUtility.dll: - 46,592 bytes (45.5 KB = 0.0 MB) + 56,616 bytes (55.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Windows.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.dll: + 23,336 bytes (22.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.Linq.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.ReaderWriter.dll: + 21,800 bytes (21.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.Serialization.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XDocument.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XmlDocument.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XmlSerializer.dll: + 17,744 bytes (17.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XPath.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XPath.XDocument.dll: - 7,168 bytes (7.0 KB = 0.0 MB) + 17,232 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/WindowsBase.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/_Microsoft.macOS.TypeMap.dll: 4,776,960 bytes (4,665.0 KB = 4.6 MB) Contents/MonoBundle/.xamarin/osx-x64/_Microsoft.macOS.TypeMaps.dll: @@ -223,398 +383,398 @@ Contents/MonoBundle/.xamarin/osx-x64/_Microsoft.macOS.TypeMaps.dll: Contents/MonoBundle/.xamarin/osx-x64/_SizeTestApp.TypeMap.dll: 3,072 bytes (3.0 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.CSharp.dll: - 791,552 bytes (773.0 KB = 0.8 MB) + 801,576 bytes (782.8 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Caching.Abstractions.dll: - 52,224 bytes (51.0 KB = 0.0 MB) + 76,584 bytes (74.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Configuration.Abstractions.dll: - 26,624 bytes (26.0 KB = 0.0 MB) + 36,648 bytes (35.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: - 130,560 bytes (127.5 KB = 0.1 MB) + 140,584 bytes (137.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Diagnostics.Abstractions.dll: - 27,136 bytes (26.5 KB = 0.0 MB) + 37,200 bytes (36.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.FileProviders.Abstractions.dll: - 14,336 bytes (14.0 KB = 0.0 MB) + 24,872 bytes (24.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Hosting.Abstractions.dll: - 36,864 bytes (36.0 KB = 0.0 MB) + 46,928 bytes (45.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Logging.Abstractions.dll: - 136,192 bytes (133.0 KB = 0.1 MB) + 146,216 bytes (142.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Options.dll: - 161,280 bytes (157.5 KB = 0.2 MB) + 205,608 bytes (200.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Primitives.dll: - 69,632 bytes (68.0 KB = 0.1 MB) + 83,240 bytes (81.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.macOS.dll: 36,660,736 bytes (35,801.5 KB = 35.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.Core.dll: - 1,181,696 bytes (1,154.0 KB = 1.1 MB) + 1,191,760 bytes (1,163.8 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.dll: + 17,192 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Win32.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Win32.Registry.dll: - 23,040 bytes (22.5 KB = 0.0 MB) + 33,064 bytes (32.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/mscorlib.dll: + 59,688 bytes (58.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/netstandard.dll: + 101,160 bytes (98.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/SizeTestApp.dll: 5,632 bytes (5.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.AppContext.dll: + 15,184 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Buffers.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Concurrent.dll: - 122,368 bytes (119.5 KB = 0.1 MB) + 132,392 bytes (129.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.dll: - 278,528 bytes (272.0 KB = 0.3 MB) + 288,552 bytes (281.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Immutable.dll: - 1,041,408 bytes (1,017.0 KB = 1.0 MB) + 1,055,016 bytes (1,030.3 KB = 1.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.NonGeneric.dll: - 82,432 bytes (80.5 KB = 0.1 MB) + 92,496 bytes (90.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Specialized.dll: - 81,920 bytes (80.0 KB = 0.1 MB) + 91,984 bytes (89.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.Annotations.dll: - 219,136 bytes (214.0 KB = 0.2 MB) + 229,160 bytes (223.8 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.DataAnnotations.dll: + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.dll: - 7,168 bytes (7.0 KB = 0.0 MB) + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.EventBasedAsync.dll: - 26,112 bytes (25.5 KB = 0.0 MB) + 36,136 bytes (35.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.Primitives.dll: - 60,416 bytes (59.0 KB = 0.1 MB) + 70,440 bytes (68.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.TypeConverter.dll: - 754,688 bytes (737.0 KB = 0.7 MB) + 764,200 bytes (746.3 KB = 0.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Configuration.dll: + 19,280 bytes (18.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Console.dll: - 188,928 bytes (184.5 KB = 0.2 MB) + 198,952 bytes (194.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Core.dll: + 23,336 bytes (22.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Data.Common.dll: - 2,792,448 bytes (2,727.0 KB = 2.7 MB) + 2,802,472 bytes (2,736.8 KB = 2.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Data.DataSetExtensions.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Data.dll: + 25,424 bytes (24.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Contracts.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Debug.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.DiagnosticSource.dll: - 506,368 bytes (494.5 KB = 0.5 MB) + 515,920 bytes (503.8 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.FileVersionInfo.dll: - 33,280 bytes (32.5 KB = 0.0 MB) + 43,304 bytes (42.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Process.dll: - 334,848 bytes (327.0 KB = 0.3 MB) + 353,064 bytes (344.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.StackTrace.dll: - 19,968 bytes (19.5 KB = 0.0 MB) + 29,992 bytes (29.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TextWriterTraceListener.dll: - 49,152 bytes (48.0 KB = 0.0 MB) + 59,216 bytes (57.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Tools.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TraceSource.dll: - 120,832 bytes (118.0 KB = 0.1 MB) + 130,856 bytes (127.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Tracing.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.dll: + 50,472 bytes (49.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Drawing.dll: + 20,304 bytes (19.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Drawing.Primitives.dll: - 113,152 bytes (110.5 KB = 0.1 MB) + 123,176 bytes (120.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Dynamic.Runtime.dll: + 16,208 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Asn1.dll: - 224,256 bytes (219.0 KB = 0.2 MB) + 250,664 bytes (244.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Tar.dll: - 314,880 bytes (307.5 KB = 0.3 MB) + 331,560 bytes (323.8 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Globalization.Calendars.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Globalization.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Globalization.Extensions.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.Brotli.dll: - 61,952 bytes (60.5 KB = 0.1 MB) + 73,512 bytes (71.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.dll: - 577,024 bytes (563.5 KB = 0.6 MB) + 592,208 bytes (578.3 KB = 0.6 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.FileSystem.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.ZipFile.dll: - 113,152 bytes (110.5 KB = 0.1 MB) + 123,176 bytes (120.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.AccessControl.dll: - 22,528 bytes (22.0 KB = 0.0 MB) + 32,552 bytes (31.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.DriveInfo.dll: - 69,632 bytes (68.0 KB = 0.1 MB) + 79,696 bytes (77.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.Primitives.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.Watcher.dll: - 98,816 bytes (96.5 KB = 0.1 MB) + 108,840 bytes (106.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.IsolatedStorage.dll: - 66,560 bytes (65.0 KB = 0.1 MB) + 76,584 bytes (74.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.MemoryMappedFiles.dll: - 72,704 bytes (71.0 KB = 0.1 MB) + 82,768 bytes (80.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipelines.dll: - 173,568 bytes (169.5 KB = 0.2 MB) + 194,856 bytes (190.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.AccessControl.dll: - 13,824 bytes (13.5 KB = 0.0 MB) + 23,848 bytes (23.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.dll: - 117,248 bytes (114.5 KB = 0.1 MB) + 129,320 bytes (126.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.UnmanagedMemoryStream.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.AsyncEnumerable.dll: - 1,498,624 bytes (1,463.5 KB = 1.4 MB) + 1,513,768 bytes (1,478.3 KB = 1.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.dll: - 739,328 bytes (722.0 KB = 0.7 MB) + 763,216 bytes (745.3 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Expressions.dll: - 3,959,808 bytes (3,867.0 KB = 3.8 MB) + 3,970,856 bytes (3,877.8 KB = 3.8 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Parallel.dll: - 888,320 bytes (867.5 KB = 0.8 MB) + 898,344 bytes (877.3 KB = 0.9 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Queryable.dll: - 178,688 bytes (174.5 KB = 0.2 MB) + 188,712 bytes (184.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Memory.dll: - 161,280 bytes (157.5 KB = 0.2 MB) + 166,696 bytes (162.8 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.dll: + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.dll: - 1,663,488 bytes (1,624.5 KB = 1.6 MB) + 1,719,632 bytes (1,679.3 KB = 1.6 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.Json.dll: - 110,080 bytes (107.5 KB = 0.1 MB) + 120,104 bytes (117.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.HttpListener.dll: - 279,040 bytes (272.5 KB = 0.3 MB) + 289,064 bytes (282.3 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Mail.dll: - 460,800 bytes (450.0 KB = 0.4 MB) + 474,408 bytes (463.3 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.NameResolution.dll: - 142,848 bytes (139.5 KB = 0.1 MB) + 252,240 bytes (246.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.NetworkInformation.dll: - 124,416 bytes (121.5 KB = 0.1 MB) + 134,440 bytes (131.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Ping.dll: - 78,336 bytes (76.5 KB = 0.1 MB) + 88,400 bytes (86.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Primitives.dll: - 213,504 bytes (208.5 KB = 0.2 MB) + 223,016 bytes (217.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Quic.dll: - 330,752 bytes (323.0 KB = 0.3 MB) + 340,776 bytes (332.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Requests.dll: - 351,744 bytes (343.5 KB = 0.3 MB) + 362,320 bytes (353.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Security.dll: - 698,368 bytes (682.0 KB = 0.7 MB) + 786,216 bytes (767.8 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.ServerSentEvents.dll: - 63,488 bytes (62.0 KB = 0.1 MB) + 74,536 bytes (72.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.ServicePoint.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Sockets.dll: - 603,136 bytes (589.0 KB = 0.6 MB) + 616,784 bytes (602.3 KB = 0.6 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebClient.dll: - 147,456 bytes (144.0 KB = 0.1 MB) + 157,992 bytes (154.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebHeaderCollection.dll: - 44,544 bytes (43.5 KB = 0.0 MB) + 54,608 bytes (53.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebProxy.dll: - 24,064 bytes (23.5 KB = 0.0 MB) + 34,128 bytes (33.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebSockets.Client.dll: - 79,872 bytes (78.0 KB = 0.1 MB) + 90,408 bytes (88.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebSockets.dll: - 226,304 bytes (221.0 KB = 0.2 MB) + 237,864 bytes (232.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Numerics.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Numerics.Vectors.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ObjectModel.dll: - 58,880 bytes (57.5 KB = 0.1 MB) + 68,944 bytes (67.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.CoreLib.dll: - 16,943,104 bytes (16,546.0 KB = 16.2 MB) + 17,670,440 bytes (17,256.3 KB = 16.9 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.DataContractSerialization.dll: - 2,050,560 bytes (2,002.5 KB = 2.0 MB) + 2,060,584 bytes (2,012.3 KB = 2.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Uri.dll: - 229,888 bytes (224.5 KB = 0.2 MB) + 239,952 bytes (234.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.dll: - 7,687,168 bytes (7,507.0 KB = 7.3 MB) + 7,713,104 bytes (7,532.3 KB = 7.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.Linq.dll: - 356,352 bytes (348.0 KB = 0.3 MB) + 366,888 bytes (358.3 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.DispatchProxy.dll: - 57,344 bytes (56.0 KB = 0.1 MB) + 67,408 bytes (65.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.dll: - 294,912 bytes (288.0 KB = 0.3 MB) + 304,976 bytes (297.8 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.ILGeneration.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.Lightweight.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Extensions.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Metadata.dll: - 1,144,832 bytes (1,118.0 KB = 1.1 MB) + 1,155,408 bytes (1,128.3 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.TypeExtensions.dll: - 21,504 bytes (21.0 KB = 0.0 MB) + 31,528 bytes (30.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Resources.Reader.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Resources.ResourceManager.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Resources.Writer.dll: - 32,256 bytes (31.5 KB = 0.0 MB) + 42,280 bytes (41.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.CompilerServices.Unsafe.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.CompilerServices.VisualC.dll: - 8,704 bytes (8.5 KB = 0.0 MB) + 18,728 bytes (18.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.dll: + 45,904 bytes (44.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Extensions.dll: + 17,744 bytes (17.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Handles.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.dll: - 92,160 bytes (90.0 KB = 0.1 MB) + 102,184 bytes (99.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.JavaScript.dll: - 27,136 bytes (26.5 KB = 0.0 MB) + 37,160 bytes (36.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.RuntimeInformation.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Intrinsics.dll: + 18,728 bytes (18.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Loader.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Numerics.dll: - 456,192 bytes (445.5 KB = 0.4 MB) + 524,072 bytes (511.8 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.dll: + 17,232 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Formatters.dll: - 105,472 bytes (103.0 KB = 0.1 MB) + 115,496 bytes (112.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Json.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Primitives.dll: - 18,432 bytes (18.0 KB = 0.0 MB) + 28,496 bytes (27.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Xml.dll: + 16,720 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.AccessControl.dll: - 45,056 bytes (44.0 KB = 0.0 MB) + 55,080 bytes (53.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Claims.dll: - 82,432 bytes (80.5 KB = 0.1 MB) + 92,456 bytes (90.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Algorithms.dll: + 17,232 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Cng.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Csp.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.dll: - 2,163,200 bytes (2,112.5 KB = 2.1 MB) + 2,177,832 bytes (2,126.8 KB = 2.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Encoding.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.OpenSsl.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.X509Certificates.dll: + 17,232 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.dll: + 18,256 bytes (17.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Principal.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Principal.Windows.dll: - 27,648 bytes (27.0 KB = 0.0 MB) + 37,672 bytes (36.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.SecureString.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ServiceModel.Web.dll: + 16,720 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ServiceProcess.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.CodePages.dll: - 839,680 bytes (820.0 KB = 0.8 MB) + 849,704 bytes (829.8 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.Extensions.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encodings.Web.dll: - 104,448 bytes (102.0 KB = 0.1 MB) + 114,472 bytes (111.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Json.dll: - 2,446,336 bytes (2,389.0 KB = 2.3 MB) + 2,473,768 bytes (2,415.8 KB = 2.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.RegularExpressions.dll: - 1,035,776 bytes (1,011.5 KB = 1.0 MB) + 1,074,472 bytes (1,049.3 KB = 1.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.AccessControl.dll: - 23,040 bytes (22.5 KB = 0.0 MB) + 33,064 bytes (32.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Channels.dll: - 140,800 bytes (137.5 KB = 0.1 MB) + 150,824 bytes (147.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.dll: - 64,512 bytes (63.0 KB = 0.1 MB) + 74,576 bytes (72.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Overlapped.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Dataflow.dll: - 461,824 bytes (451.0 KB = 0.4 MB) + 471,888 bytes (460.8 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.dll: + 16,720 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Extensions.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Parallel.dll: - 110,080 bytes (107.5 KB = 0.1 MB) + 124,200 bytes (121.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Thread.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.ThreadPool.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Timer.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Transactions.dll: + 16,720 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Transactions.Local.dll: - 342,016 bytes (334.0 KB = 0.3 MB) + 350,032 bytes (341.8 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ValueTuple.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Web.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Web.HttpUtility.dll: - 43,008 bytes (42.0 KB = 0.0 MB) + 53,032 bytes (51.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Windows.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.dll: + 23,376 bytes (22.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.Linq.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.ReaderWriter.dll: + 21,800 bytes (21.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.Serialization.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XDocument.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XmlDocument.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XmlSerializer.dll: + 17,704 bytes (17.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XPath.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XPath.XDocument.dll: - 6,656 bytes (6.5 KB = 0.0 MB) + 16,680 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/WindowsBase.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/libclrgc.dylib: - 1,658,448 bytes (1,619.6 KB = 1.6 MB) + 1,673,168 bytes (1,634.0 KB = 1.6 MB) Contents/MonoBundle/libclrgcexp.dylib: - 1,799,648 bytes (1,757.5 KB = 1.7 MB) + 1,830,656 bytes (1,787.8 KB = 1.7 MB) Contents/MonoBundle/libclrjit.dylib: - 5,860,624 bytes (5,723.3 KB = 5.6 MB) + 5,981,248 bytes (5,841.1 KB = 5.7 MB) Contents/MonoBundle/libcoreclr.dylib: - 11,068,208 bytes (10,808.8 KB = 10.6 MB) + 11,185,600 bytes (10,923.4 KB = 10.7 MB) Contents/MonoBundle/libhostfxr.dylib: - 813,360 bytes (794.3 KB = 0.8 MB) + 861,280 bytes (841.1 KB = 0.8 MB) Contents/MonoBundle/libhostpolicy.dylib: - 753,264 bytes (735.6 KB = 0.7 MB) + 817,680 bytes (798.5 KB = 0.8 MB) Contents/MonoBundle/libmscordaccore.dylib: - 3,697,808 bytes (3,611.1 KB = 3.5 MB) + 3,744,848 bytes (3,657.1 KB = 3.6 MB) Contents/MonoBundle/libmscordbi.dylib: - 3,053,040 bytes (2,981.5 KB = 2.9 MB) + 3,030,720 bytes (2,959.7 KB = 2.9 MB) Contents/MonoBundle/libSystem.Globalization.Native.dylib: - 271,184 bytes (264.8 KB = 0.3 MB) + 302,528 bytes (295.4 KB = 0.3 MB) Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: - 3,078,224 bytes (3,006.1 KB = 2.9 MB) + 3,109,632 bytes (3,036.8 KB = 3.0 MB) Contents/MonoBundle/libSystem.Native.dylib: - 280,944 bytes (274.4 KB = 0.3 MB) + 312,368 bytes (305.0 KB = 0.3 MB) Contents/MonoBundle/libSystem.Net.Security.Native.dylib: - 120,784 bytes (118.0 KB = 0.1 MB) + 152,128 bytes (148.6 KB = 0.1 MB) Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: - 476,160 bytes (465.0 KB = 0.5 MB) -Contents/MonoBundle/Microsoft.VisualBasic.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/Microsoft.Win32.Primitives.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/mscorlib.dll: - 49,664 bytes (48.5 KB = 0.0 MB) -Contents/MonoBundle/netstandard.dll: - 91,136 bytes (89.0 KB = 0.1 MB) + 510,064 bytes (498.1 KB = 0.5 MB) Contents/MonoBundle/runtimeconfig.bin: 1,445 bytes (1.4 KB = 0.0 MB) -Contents/MonoBundle/System.AppContext.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Buffers.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.ComponentModel.DataAnnotations.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.Configuration.dll: - 9,216 bytes (9.0 KB = 0.0 MB) -Contents/MonoBundle/System.Core.dll: - 13,312 bytes (13.0 KB = 0.0 MB) -Contents/MonoBundle/System.Data.DataSetExtensions.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Data.dll: - 15,360 bytes (15.0 KB = 0.0 MB) -Contents/MonoBundle/System.Diagnostics.Contracts.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Diagnostics.Debug.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Diagnostics.Tools.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Diagnostics.Tracing.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.dll: - 40,448 bytes (39.5 KB = 0.0 MB) -Contents/MonoBundle/System.Drawing.dll: - 10,240 bytes (10.0 KB = 0.0 MB) -Contents/MonoBundle/System.Dynamic.Runtime.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Globalization.Calendars.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Globalization.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Globalization.Extensions.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.IO.Compression.FileSystem.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.IO.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.IO.FileSystem.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.IO.FileSystem.Primitives.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.IO.UnmanagedMemoryStream.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Net.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/System.Net.ServicePoint.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Numerics.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Numerics.Vectors.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.Emit.ILGeneration.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.Emit.Lightweight.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.Extensions.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.Primitives.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Resources.Reader.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Resources.ResourceManager.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.CompilerServices.Unsafe.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.dll: - 35,840 bytes (35.0 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Extensions.dll: - 7,680 bytes (7.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Handles.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.InteropServices.RuntimeInformation.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Intrinsics.dll: - 8,704 bytes (8.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Loader.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Serialization.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Serialization.Json.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Serialization.Xml.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Algorithms.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Cng.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Csp.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Encoding.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.OpenSsl.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Primitives.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.X509Certificates.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.dll: - 8,192 bytes (8.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Principal.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.SecureString.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.ServiceModel.Web.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.ServiceProcess.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Text.Encoding.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Text.Encoding.Extensions.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Overlapped.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Tasks.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Tasks.Extensions.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Thread.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.ThreadPool.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Timer.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Transactions.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.ValueTuple.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Web.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Windows.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.dll: - 13,312 bytes (13.0 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.Linq.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.ReaderWriter.dll: - 11,776 bytes (11.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.Serialization.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.XDocument.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.XmlDocument.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.XmlSerializer.dll: - 7,680 bytes (7.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.XPath.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/WindowsBase.dll: - 6,144 bytes (6.0 KB = 0.0 MB) Contents/PkgInfo: 8 bytes (0.0 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-Interpreter-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-Interpreter-size.txt index 098b72b5d3fc..31b38bf5604d 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-Interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-Interpreter-size.txt @@ -1,608 +1,768 @@ -AppBundleSize: 246,031,902 bytes (240,265.5 KB = 234.6 MB) +AppBundleSize: 253,438,808 bytes (247,498.8 KB = 241.7 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 747 bytes (0.7 KB = 0.0 MB) + 717 bytes (0.7 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 7,992,936 bytes (7,805.6 KB = 7.6 MB) + 7,991,992 bytes (7,804.7 KB = 7.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.CSharp.dll: - 872,960 bytes (852.5 KB = 0.8 MB) + 882,984 bytes (862.3 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Caching.Abstractions.dll: - 55,808 bytes (54.5 KB = 0.1 MB) + 81,192 bytes (79.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Configuration.Abstractions.dll: - 28,160 bytes (27.5 KB = 0.0 MB) + 38,224 bytes (37.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: - 146,944 bytes (143.5 KB = 0.1 MB) + 156,968 bytes (153.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Diagnostics.Abstractions.dll: - 29,184 bytes (28.5 KB = 0.0 MB) + 39,248 bytes (38.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.FileProviders.Abstractions.dll: - 15,360 bytes (15.0 KB = 0.0 MB) + 25,384 bytes (24.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Hosting.Abstractions.dll: - 38,912 bytes (38.0 KB = 0.0 MB) + 48,424 bytes (47.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Logging.Abstractions.dll: - 149,504 bytes (146.0 KB = 0.1 MB) + 159,528 bytes (155.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Options.dll: - 178,176 bytes (174.0 KB = 0.2 MB) + 224,040 bytes (218.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Primitives.dll: - 75,776 bytes (74.0 KB = 0.1 MB) + 90,408 bytes (88.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.macOS.dll: 36,695,040 bytes (35,835.0 KB = 35.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.Core.dll: - 1,326,592 bytes (1,295.5 KB = 1.3 MB) + 1,337,168 bytes (1,305.8 KB = 1.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.dll: + 17,192 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Win32.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Win32.Registry.dll: - 23,552 bytes (23.0 KB = 0.0 MB) + 33,576 bytes (32.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/mscorlib.dll: + 59,728 bytes (58.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/netstandard.dll: + 101,160 bytes (98.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/SizeTestApp.dll: 6,144 bytes (6.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.AppContext.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Buffers.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Concurrent.dll: - 135,680 bytes (132.5 KB = 0.1 MB) + 145,704 bytes (142.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.dll: - 313,856 bytes (306.5 KB = 0.3 MB) + 323,880 bytes (316.3 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Immutable.dll: - 1,166,336 bytes (1,139.0 KB = 1.1 MB) + 1,179,944 bytes (1,152.3 KB = 1.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.NonGeneric.dll: - 93,184 bytes (91.0 KB = 0.1 MB) + 103,208 bytes (100.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Specialized.dll: - 94,208 bytes (92.0 KB = 0.1 MB) + 104,232 bytes (101.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Annotations.dll: - 243,712 bytes (238.0 KB = 0.2 MB) + 253,264 bytes (247.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.DataAnnotations.dll: + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.dll: - 7,168 bytes (7.0 KB = 0.0 MB) + 17,232 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.EventBasedAsync.dll: - 28,672 bytes (28.0 KB = 0.0 MB) + 38,696 bytes (37.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Primitives.dll: - 68,096 bytes (66.5 KB = 0.1 MB) + 78,160 bytes (76.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.TypeConverter.dll: - 855,040 bytes (835.0 KB = 0.8 MB) + 864,552 bytes (844.3 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Configuration.dll: + 19,240 bytes (18.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Console.dll: - 214,016 bytes (209.0 KB = 0.2 MB) + 224,080 bytes (218.8 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Core.dll: + 23,376 bytes (22.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Data.Common.dll: - 3,167,232 bytes (3,093.0 KB = 3.0 MB) + 3,178,280 bytes (3,103.8 KB = 3.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Data.DataSetExtensions.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Data.dll: + 25,384 bytes (24.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Contracts.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Debug.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.DiagnosticSource.dll: - 558,592 bytes (545.5 KB = 0.5 MB) + 569,128 bytes (555.8 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.FileVersionInfo.dll: - 35,840 bytes (35.0 KB = 0.0 MB) + 45,864 bytes (44.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Process.dll: - 378,880 bytes (370.0 KB = 0.4 MB) + 397,608 bytes (388.3 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.StackTrace.dll: - 19,968 bytes (19.5 KB = 0.0 MB) + 29,992 bytes (29.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.TextWriterTraceListener.dll: - 54,784 bytes (53.5 KB = 0.1 MB) + 64,848 bytes (63.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Tools.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.TraceSource.dll: - 140,288 bytes (137.0 KB = 0.1 MB) + 150,312 bytes (146.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Tracing.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.dll: + 50,472 bytes (49.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Drawing.dll: + 20,264 bytes (19.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Drawing.Primitives.dll: - 116,224 bytes (113.5 KB = 0.1 MB) + 126,248 bytes (123.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Dynamic.Runtime.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Asn1.dll: - 248,320 bytes (242.5 KB = 0.2 MB) + 276,304 bytes (269.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Tar.dll: - 353,792 bytes (345.5 KB = 0.3 MB) + 370,984 bytes (362.3 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Globalization.Calendars.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Globalization.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Globalization.Extensions.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.Brotli.dll: - 71,168 bytes (69.5 KB = 0.1 MB) + 82,728 bytes (80.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.dll: - 652,288 bytes (637.0 KB = 0.6 MB) + 668,456 bytes (652.8 KB = 0.6 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.FileSystem.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.ZipFile.dll: - 123,904 bytes (121.0 KB = 0.1 MB) + 134,440 bytes (131.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.AccessControl.dll: - 22,528 bytes (22.0 KB = 0.0 MB) + 32,592 bytes (31.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.DriveInfo.dll: - 77,824 bytes (76.0 KB = 0.1 MB) + 87,848 bytes (85.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.Primitives.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.Watcher.dll: - 110,592 bytes (108.0 KB = 0.1 MB) + 120,616 bytes (117.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.IsolatedStorage.dll: - 73,216 bytes (71.5 KB = 0.1 MB) + 83,280 bytes (81.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.MemoryMappedFiles.dll: - 83,456 bytes (81.5 KB = 0.1 MB) + 93,480 bytes (91.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipelines.dll: - 187,904 bytes (183.5 KB = 0.2 MB) + 209,704 bytes (204.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.AccessControl.dll: - 13,824 bytes (13.5 KB = 0.0 MB) + 23,848 bytes (23.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.dll: - 134,656 bytes (131.5 KB = 0.1 MB) + 146,728 bytes (143.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.UnmanagedMemoryStream.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.AsyncEnumerable.dll: - 1,625,088 bytes (1,587.0 KB = 1.5 MB) + 1,641,808 bytes (1,603.3 KB = 1.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.dll: - 835,584 bytes (816.0 KB = 0.8 MB) + 861,008 bytes (840.8 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Expressions.dll: - 4,850,688 bytes (4,737.0 KB = 4.6 MB) + 4,861,736 bytes (4,747.8 KB = 4.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Parallel.dll: - 999,936 bytes (976.5 KB = 1.0 MB) + 1,009,960 bytes (986.3 KB = 1.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Queryable.dll: - 212,480 bytes (207.5 KB = 0.2 MB) + 222,504 bytes (217.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Memory.dll: - 171,520 bytes (167.5 KB = 0.2 MB) + 176,424 bytes (172.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.dll: + 17,232 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.dll: - 1,849,344 bytes (1,806.0 KB = 1.8 MB) + 1,909,032 bytes (1,864.3 KB = 1.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.Json.dll: - 117,760 bytes (115.0 KB = 0.1 MB) + 127,824 bytes (124.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.HttpListener.dll: - 311,808 bytes (304.5 KB = 0.3 MB) + 322,344 bytes (314.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Mail.dll: - 517,120 bytes (505.0 KB = 0.5 MB) + 530,728 bytes (518.3 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NameResolution.dll: - 158,208 bytes (154.5 KB = 0.2 MB) + 273,192 bytes (266.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NetworkInformation.dll: - 140,800 bytes (137.5 KB = 0.1 MB) + 151,336 bytes (147.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Ping.dll: - 87,040 bytes (85.0 KB = 0.1 MB) + 97,576 bytes (95.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Primitives.dll: - 238,592 bytes (233.0 KB = 0.2 MB) + 248,616 bytes (242.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Quic.dll: - 366,080 bytes (357.5 KB = 0.3 MB) + 375,592 bytes (366.8 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Requests.dll: - 396,800 bytes (387.5 KB = 0.4 MB) + 408,400 bytes (398.8 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Security.dll: - 793,088 bytes (774.5 KB = 0.8 MB) + 889,128 bytes (868.3 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.ServerSentEvents.dll: - 67,584 bytes (66.0 KB = 0.1 MB) + 79,144 bytes (77.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.ServicePoint.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Sockets.dll: - 689,152 bytes (673.0 KB = 0.7 MB) + 702,760 bytes (686.3 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebClient.dll: - 164,864 bytes (161.0 KB = 0.2 MB) + 175,400 bytes (171.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebHeaderCollection.dll: - 50,176 bytes (49.0 KB = 0.0 MB) + 60,200 bytes (58.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebProxy.dll: - 26,112 bytes (25.5 KB = 0.0 MB) + 36,136 bytes (35.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.Client.dll: - 87,552 bytes (85.5 KB = 0.1 MB) + 98,088 bytes (95.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.dll: - 248,832 bytes (243.0 KB = 0.2 MB) + 259,368 bytes (253.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Numerics.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Numerics.Vectors.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ObjectModel.dll: - 66,560 bytes (65.0 KB = 0.1 MB) + 76,624 bytes (74.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.CoreLib.dll: - 18,216,960 bytes (17,790.0 KB = 17.4 MB) + 18,983,720 bytes (18,538.8 KB = 18.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.DataContractSerialization.dll: - 2,342,400 bytes (2,287.5 KB = 2.2 MB) + 2,352,424 bytes (2,297.3 KB = 2.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Uri.dll: - 249,344 bytes (243.5 KB = 0.2 MB) + 259,368 bytes (253.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.dll: - 8,666,112 bytes (8,463.0 KB = 8.3 MB) + 8,694,056 bytes (8,490.3 KB = 8.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.Linq.dll: - 404,992 bytes (395.5 KB = 0.4 MB) + 414,032 bytes (404.3 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.DispatchProxy.dll: - 62,464 bytes (61.0 KB = 0.1 MB) + 72,488 bytes (70.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.dll: + 16,208 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.dll: - 331,776 bytes (324.0 KB = 0.3 MB) + 341,800 bytes (333.8 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.ILGeneration.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.Lightweight.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Extensions.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Metadata.dll: - 1,265,664 bytes (1,236.0 KB = 1.2 MB) + 1,276,712 bytes (1,246.8 KB = 1.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Primitives.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.TypeExtensions.dll: - 23,552 bytes (23.0 KB = 0.0 MB) + 33,576 bytes (32.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.Reader.dll: + 15,184 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.ResourceManager.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.Writer.dll: - 35,328 bytes (34.5 KB = 0.0 MB) + 45,392 bytes (44.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.CompilerServices.Unsafe.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.CompilerServices.VisualC.dll: - 8,704 bytes (8.5 KB = 0.0 MB) + 18,728 bytes (18.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.dll: + 45,864 bytes (44.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Extensions.dll: + 17,744 bytes (17.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Handles.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.dll: - 99,840 bytes (97.5 KB = 0.1 MB) + 110,376 bytes (107.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.JavaScript.dll: - 27,136 bytes (26.5 KB = 0.0 MB) + 37,160 bytes (36.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.RuntimeInformation.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Intrinsics.dll: + 18,768 bytes (18.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Loader.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Numerics.dll: - 486,912 bytes (475.5 KB = 0.5 MB) + 564,560 bytes (551.3 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.dll: + 17,232 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Formatters.dll: - 116,736 bytes (114.0 KB = 0.1 MB) + 126,800 bytes (123.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Json.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Primitives.dll: - 19,456 bytes (19.0 KB = 0.0 MB) + 29,480 bytes (28.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Xml.dll: + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.AccessControl.dll: - 45,056 bytes (44.0 KB = 0.0 MB) + 55,080 bytes (53.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Claims.dll: - 91,136 bytes (89.0 KB = 0.1 MB) + 101,200 bytes (98.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Algorithms.dll: + 17,192 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Cng.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Csp.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.dll: - 2,456,576 bytes (2,399.0 KB = 2.3 MB) + 2,472,744 bytes (2,414.8 KB = 2.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Encoding.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.OpenSsl.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.X509Certificates.dll: + 17,232 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.dll: + 18,256 bytes (17.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Principal.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Principal.Windows.dll: - 27,648 bytes (27.0 KB = 0.0 MB) + 37,672 bytes (36.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.SecureString.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ServiceModel.Web.dll: + 16,680 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ServiceProcess.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.CodePages.dll: - 854,528 bytes (834.5 KB = 0.8 MB) + 864,552 bytes (844.3 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.Extensions.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encodings.Web.dll: - 112,640 bytes (110.0 KB = 0.1 MB) + 122,664 bytes (119.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Json.dll: - 2,724,352 bytes (2,660.5 KB = 2.6 MB) + 2,753,360 bytes (2,688.8 KB = 2.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.RegularExpressions.dll: - 1,146,368 bytes (1,119.5 KB = 1.1 MB) + 1,187,112 bytes (1,159.3 KB = 1.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.AccessControl.dll: - 23,552 bytes (23.0 KB = 0.0 MB) + 33,576 bytes (32.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Channels.dll: - 155,136 bytes (151.5 KB = 0.1 MB) + 165,160 bytes (161.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.dll: - 70,656 bytes (69.0 KB = 0.1 MB) + 80,680 bytes (78.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Overlapped.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Dataflow.dll: - 516,608 bytes (504.5 KB = 0.5 MB) + 526,632 bytes (514.3 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.dll: + 16,720 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Extensions.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Parallel.dll: - 121,344 bytes (118.5 KB = 0.1 MB) + 136,488 bytes (133.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Thread.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.ThreadPool.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Timer.dll: + 15,184 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Transactions.dll: + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Transactions.Local.dll: - 381,440 bytes (372.5 KB = 0.4 MB) + 389,968 bytes (380.8 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ValueTuple.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Web.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Web.HttpUtility.dll: - 46,592 bytes (45.5 KB = 0.0 MB) + 56,616 bytes (55.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Windows.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.dll: + 23,336 bytes (22.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.Linq.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.ReaderWriter.dll: + 21,800 bytes (21.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.Serialization.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XDocument.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XmlDocument.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XmlSerializer.dll: + 17,744 bytes (17.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XPath.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XPath.XDocument.dll: - 7,168 bytes (7.0 KB = 0.0 MB) + 17,232 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/WindowsBase.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.CSharp.dll: - 791,552 bytes (773.0 KB = 0.8 MB) + 801,576 bytes (782.8 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Caching.Abstractions.dll: - 52,224 bytes (51.0 KB = 0.0 MB) + 76,584 bytes (74.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Configuration.Abstractions.dll: - 26,624 bytes (26.0 KB = 0.0 MB) + 36,648 bytes (35.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: - 130,560 bytes (127.5 KB = 0.1 MB) + 140,584 bytes (137.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Diagnostics.Abstractions.dll: - 27,136 bytes (26.5 KB = 0.0 MB) + 37,200 bytes (36.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.FileProviders.Abstractions.dll: - 14,336 bytes (14.0 KB = 0.0 MB) + 24,872 bytes (24.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Hosting.Abstractions.dll: - 36,864 bytes (36.0 KB = 0.0 MB) + 46,928 bytes (45.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Logging.Abstractions.dll: - 136,192 bytes (133.0 KB = 0.1 MB) + 146,216 bytes (142.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Options.dll: - 161,280 bytes (157.5 KB = 0.2 MB) + 205,608 bytes (200.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Primitives.dll: - 69,632 bytes (68.0 KB = 0.1 MB) + 83,240 bytes (81.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.macOS.dll: 36,695,040 bytes (35,835.0 KB = 35.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.Core.dll: - 1,181,696 bytes (1,154.0 KB = 1.1 MB) + 1,191,760 bytes (1,163.8 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.dll: + 17,192 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Win32.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Win32.Registry.dll: - 23,040 bytes (22.5 KB = 0.0 MB) + 33,064 bytes (32.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/mscorlib.dll: + 59,688 bytes (58.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/netstandard.dll: + 101,160 bytes (98.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/SizeTestApp.dll: 6,144 bytes (6.0 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.AppContext.dll: + 15,184 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Buffers.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Concurrent.dll: - 122,368 bytes (119.5 KB = 0.1 MB) + 132,392 bytes (129.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.dll: - 278,528 bytes (272.0 KB = 0.3 MB) + 288,552 bytes (281.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Immutable.dll: - 1,041,408 bytes (1,017.0 KB = 1.0 MB) + 1,055,016 bytes (1,030.3 KB = 1.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.NonGeneric.dll: - 82,432 bytes (80.5 KB = 0.1 MB) + 92,496 bytes (90.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Specialized.dll: - 81,920 bytes (80.0 KB = 0.1 MB) + 91,984 bytes (89.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.Annotations.dll: - 219,136 bytes (214.0 KB = 0.2 MB) + 229,160 bytes (223.8 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.DataAnnotations.dll: + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.dll: - 7,168 bytes (7.0 KB = 0.0 MB) + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.EventBasedAsync.dll: - 26,112 bytes (25.5 KB = 0.0 MB) + 36,136 bytes (35.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.Primitives.dll: - 60,416 bytes (59.0 KB = 0.1 MB) + 70,440 bytes (68.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.TypeConverter.dll: - 754,688 bytes (737.0 KB = 0.7 MB) + 764,200 bytes (746.3 KB = 0.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Configuration.dll: + 19,280 bytes (18.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Console.dll: - 188,928 bytes (184.5 KB = 0.2 MB) + 198,952 bytes (194.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Core.dll: + 23,336 bytes (22.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Data.Common.dll: - 2,792,448 bytes (2,727.0 KB = 2.7 MB) + 2,802,472 bytes (2,736.8 KB = 2.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Data.DataSetExtensions.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Data.dll: + 25,424 bytes (24.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Contracts.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Debug.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.DiagnosticSource.dll: - 506,368 bytes (494.5 KB = 0.5 MB) + 515,920 bytes (503.8 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.FileVersionInfo.dll: - 33,280 bytes (32.5 KB = 0.0 MB) + 43,304 bytes (42.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Process.dll: - 334,848 bytes (327.0 KB = 0.3 MB) + 353,064 bytes (344.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.StackTrace.dll: - 19,968 bytes (19.5 KB = 0.0 MB) + 29,992 bytes (29.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TextWriterTraceListener.dll: - 49,152 bytes (48.0 KB = 0.0 MB) + 59,216 bytes (57.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Tools.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TraceSource.dll: - 120,832 bytes (118.0 KB = 0.1 MB) + 130,856 bytes (127.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Tracing.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.dll: + 50,472 bytes (49.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Drawing.dll: + 20,304 bytes (19.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Drawing.Primitives.dll: - 113,152 bytes (110.5 KB = 0.1 MB) + 123,176 bytes (120.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Dynamic.Runtime.dll: + 16,208 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Asn1.dll: - 224,256 bytes (219.0 KB = 0.2 MB) + 250,664 bytes (244.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Tar.dll: - 314,880 bytes (307.5 KB = 0.3 MB) + 331,560 bytes (323.8 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Globalization.Calendars.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Globalization.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Globalization.Extensions.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.Brotli.dll: - 61,952 bytes (60.5 KB = 0.1 MB) + 73,512 bytes (71.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.dll: - 577,024 bytes (563.5 KB = 0.6 MB) + 592,208 bytes (578.3 KB = 0.6 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.FileSystem.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.ZipFile.dll: - 113,152 bytes (110.5 KB = 0.1 MB) + 123,176 bytes (120.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.AccessControl.dll: - 22,528 bytes (22.0 KB = 0.0 MB) + 32,552 bytes (31.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.DriveInfo.dll: - 69,632 bytes (68.0 KB = 0.1 MB) + 79,696 bytes (77.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.Primitives.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.Watcher.dll: - 98,816 bytes (96.5 KB = 0.1 MB) + 108,840 bytes (106.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.IsolatedStorage.dll: - 66,560 bytes (65.0 KB = 0.1 MB) + 76,584 bytes (74.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.MemoryMappedFiles.dll: - 72,704 bytes (71.0 KB = 0.1 MB) + 82,768 bytes (80.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipelines.dll: - 173,568 bytes (169.5 KB = 0.2 MB) + 194,856 bytes (190.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.AccessControl.dll: - 13,824 bytes (13.5 KB = 0.0 MB) + 23,848 bytes (23.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.dll: - 117,248 bytes (114.5 KB = 0.1 MB) + 129,320 bytes (126.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.UnmanagedMemoryStream.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.AsyncEnumerable.dll: - 1,498,624 bytes (1,463.5 KB = 1.4 MB) + 1,513,768 bytes (1,478.3 KB = 1.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.dll: - 739,328 bytes (722.0 KB = 0.7 MB) + 763,216 bytes (745.3 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Expressions.dll: - 3,959,808 bytes (3,867.0 KB = 3.8 MB) + 3,970,856 bytes (3,877.8 KB = 3.8 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Parallel.dll: - 888,320 bytes (867.5 KB = 0.8 MB) + 898,344 bytes (877.3 KB = 0.9 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Queryable.dll: - 178,688 bytes (174.5 KB = 0.2 MB) + 188,712 bytes (184.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Memory.dll: - 161,280 bytes (157.5 KB = 0.2 MB) + 166,696 bytes (162.8 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.dll: + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.dll: - 1,663,488 bytes (1,624.5 KB = 1.6 MB) + 1,719,632 bytes (1,679.3 KB = 1.6 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.Json.dll: - 110,080 bytes (107.5 KB = 0.1 MB) + 120,104 bytes (117.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.HttpListener.dll: - 279,040 bytes (272.5 KB = 0.3 MB) + 289,064 bytes (282.3 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Mail.dll: - 460,800 bytes (450.0 KB = 0.4 MB) + 474,408 bytes (463.3 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.NameResolution.dll: - 142,848 bytes (139.5 KB = 0.1 MB) + 252,240 bytes (246.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.NetworkInformation.dll: - 124,416 bytes (121.5 KB = 0.1 MB) + 134,440 bytes (131.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Ping.dll: - 78,336 bytes (76.5 KB = 0.1 MB) + 88,400 bytes (86.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Primitives.dll: - 213,504 bytes (208.5 KB = 0.2 MB) + 223,016 bytes (217.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Quic.dll: - 330,752 bytes (323.0 KB = 0.3 MB) + 340,776 bytes (332.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Requests.dll: - 351,744 bytes (343.5 KB = 0.3 MB) + 362,320 bytes (353.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Security.dll: - 698,368 bytes (682.0 KB = 0.7 MB) + 786,216 bytes (767.8 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.ServerSentEvents.dll: - 63,488 bytes (62.0 KB = 0.1 MB) + 74,536 bytes (72.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.ServicePoint.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Sockets.dll: - 603,136 bytes (589.0 KB = 0.6 MB) + 616,784 bytes (602.3 KB = 0.6 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebClient.dll: - 147,456 bytes (144.0 KB = 0.1 MB) + 157,992 bytes (154.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebHeaderCollection.dll: - 44,544 bytes (43.5 KB = 0.0 MB) + 54,608 bytes (53.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebProxy.dll: - 24,064 bytes (23.5 KB = 0.0 MB) + 34,128 bytes (33.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebSockets.Client.dll: - 79,872 bytes (78.0 KB = 0.1 MB) + 90,408 bytes (88.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebSockets.dll: - 226,304 bytes (221.0 KB = 0.2 MB) + 237,864 bytes (232.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Numerics.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Numerics.Vectors.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ObjectModel.dll: - 58,880 bytes (57.5 KB = 0.1 MB) + 68,944 bytes (67.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.CoreLib.dll: - 16,943,104 bytes (16,546.0 KB = 16.2 MB) + 17,670,440 bytes (17,256.3 KB = 16.9 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.DataContractSerialization.dll: - 2,050,560 bytes (2,002.5 KB = 2.0 MB) + 2,060,584 bytes (2,012.3 KB = 2.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Uri.dll: - 229,888 bytes (224.5 KB = 0.2 MB) + 239,952 bytes (234.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.dll: - 7,687,168 bytes (7,507.0 KB = 7.3 MB) + 7,713,104 bytes (7,532.3 KB = 7.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.Linq.dll: - 356,352 bytes (348.0 KB = 0.3 MB) + 366,888 bytes (358.3 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.DispatchProxy.dll: - 57,344 bytes (56.0 KB = 0.1 MB) + 67,408 bytes (65.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.dll: - 294,912 bytes (288.0 KB = 0.3 MB) + 304,976 bytes (297.8 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.ILGeneration.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.Lightweight.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Extensions.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Metadata.dll: - 1,144,832 bytes (1,118.0 KB = 1.1 MB) + 1,155,408 bytes (1,128.3 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.TypeExtensions.dll: - 21,504 bytes (21.0 KB = 0.0 MB) + 31,528 bytes (30.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Resources.Reader.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Resources.ResourceManager.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Resources.Writer.dll: - 32,256 bytes (31.5 KB = 0.0 MB) + 42,280 bytes (41.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.CompilerServices.Unsafe.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.CompilerServices.VisualC.dll: - 8,704 bytes (8.5 KB = 0.0 MB) + 18,728 bytes (18.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.dll: + 45,904 bytes (44.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Extensions.dll: + 17,744 bytes (17.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Handles.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.dll: - 92,160 bytes (90.0 KB = 0.1 MB) + 102,184 bytes (99.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.JavaScript.dll: - 27,136 bytes (26.5 KB = 0.0 MB) + 37,160 bytes (36.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.RuntimeInformation.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Intrinsics.dll: + 18,728 bytes (18.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Loader.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Numerics.dll: - 456,192 bytes (445.5 KB = 0.4 MB) + 524,072 bytes (511.8 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.dll: + 17,232 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Formatters.dll: - 105,472 bytes (103.0 KB = 0.1 MB) + 115,496 bytes (112.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Json.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Primitives.dll: - 18,432 bytes (18.0 KB = 0.0 MB) + 28,496 bytes (27.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Xml.dll: + 16,720 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.AccessControl.dll: - 45,056 bytes (44.0 KB = 0.0 MB) + 55,080 bytes (53.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Claims.dll: - 82,432 bytes (80.5 KB = 0.1 MB) + 92,456 bytes (90.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Algorithms.dll: + 17,232 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Cng.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Csp.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.dll: - 2,163,200 bytes (2,112.5 KB = 2.1 MB) + 2,177,832 bytes (2,126.8 KB = 2.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Encoding.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.OpenSsl.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.X509Certificates.dll: + 17,232 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.dll: + 18,256 bytes (17.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Principal.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Principal.Windows.dll: - 27,648 bytes (27.0 KB = 0.0 MB) + 37,672 bytes (36.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.SecureString.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ServiceModel.Web.dll: + 16,720 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ServiceProcess.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.CodePages.dll: - 839,680 bytes (820.0 KB = 0.8 MB) + 849,704 bytes (829.8 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.Extensions.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encodings.Web.dll: - 104,448 bytes (102.0 KB = 0.1 MB) + 114,472 bytes (111.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Json.dll: - 2,446,336 bytes (2,389.0 KB = 2.3 MB) + 2,473,768 bytes (2,415.8 KB = 2.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.RegularExpressions.dll: - 1,035,776 bytes (1,011.5 KB = 1.0 MB) + 1,074,472 bytes (1,049.3 KB = 1.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.AccessControl.dll: - 23,040 bytes (22.5 KB = 0.0 MB) + 33,064 bytes (32.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Channels.dll: - 140,800 bytes (137.5 KB = 0.1 MB) + 150,824 bytes (147.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.dll: - 64,512 bytes (63.0 KB = 0.1 MB) + 74,576 bytes (72.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Overlapped.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Dataflow.dll: - 461,824 bytes (451.0 KB = 0.4 MB) + 471,888 bytes (460.8 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.dll: + 16,720 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Extensions.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Parallel.dll: - 110,080 bytes (107.5 KB = 0.1 MB) + 124,200 bytes (121.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Thread.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.ThreadPool.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Timer.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Transactions.dll: + 16,720 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Transactions.Local.dll: - 342,016 bytes (334.0 KB = 0.3 MB) + 350,032 bytes (341.8 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ValueTuple.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Web.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Web.HttpUtility.dll: - 43,008 bytes (42.0 KB = 0.0 MB) + 53,032 bytes (51.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Windows.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.dll: + 23,376 bytes (22.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.Linq.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.ReaderWriter.dll: + 21,800 bytes (21.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.Serialization.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XDocument.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XmlDocument.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XmlSerializer.dll: + 17,704 bytes (17.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XPath.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XPath.XDocument.dll: - 6,656 bytes (6.5 KB = 0.0 MB) + 16,680 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/WindowsBase.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/libclrgc.dylib: - 1,658,448 bytes (1,619.6 KB = 1.6 MB) + 1,673,168 bytes (1,634.0 KB = 1.6 MB) Contents/MonoBundle/libclrgcexp.dylib: - 1,799,648 bytes (1,757.5 KB = 1.7 MB) + 1,830,656 bytes (1,787.8 KB = 1.7 MB) Contents/MonoBundle/libclrjit.dylib: - 5,860,624 bytes (5,723.3 KB = 5.6 MB) + 5,981,248 bytes (5,841.1 KB = 5.7 MB) Contents/MonoBundle/libcoreclr.dylib: - 11,068,208 bytes (10,808.8 KB = 10.6 MB) + 11,185,600 bytes (10,923.4 KB = 10.7 MB) Contents/MonoBundle/libhostfxr.dylib: - 813,360 bytes (794.3 KB = 0.8 MB) + 861,280 bytes (841.1 KB = 0.8 MB) Contents/MonoBundle/libhostpolicy.dylib: - 753,264 bytes (735.6 KB = 0.7 MB) + 817,680 bytes (798.5 KB = 0.8 MB) Contents/MonoBundle/libmscordaccore.dylib: - 3,697,808 bytes (3,611.1 KB = 3.5 MB) + 3,744,848 bytes (3,657.1 KB = 3.6 MB) Contents/MonoBundle/libmscordbi.dylib: - 3,053,040 bytes (2,981.5 KB = 2.9 MB) + 3,030,720 bytes (2,959.7 KB = 2.9 MB) Contents/MonoBundle/libSystem.Globalization.Native.dylib: - 271,184 bytes (264.8 KB = 0.3 MB) + 302,528 bytes (295.4 KB = 0.3 MB) Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: - 3,078,224 bytes (3,006.1 KB = 2.9 MB) + 3,109,632 bytes (3,036.8 KB = 3.0 MB) Contents/MonoBundle/libSystem.Native.dylib: - 280,944 bytes (274.4 KB = 0.3 MB) + 312,368 bytes (305.0 KB = 0.3 MB) Contents/MonoBundle/libSystem.Net.Security.Native.dylib: - 120,784 bytes (118.0 KB = 0.1 MB) + 152,128 bytes (148.6 KB = 0.1 MB) Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: - 476,160 bytes (465.0 KB = 0.5 MB) -Contents/MonoBundle/Microsoft.VisualBasic.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/Microsoft.Win32.Primitives.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/mscorlib.dll: - 49,664 bytes (48.5 KB = 0.0 MB) -Contents/MonoBundle/netstandard.dll: - 91,136 bytes (89.0 KB = 0.1 MB) + 510,064 bytes (498.1 KB = 0.5 MB) Contents/MonoBundle/runtimeconfig.bin: 1,363 bytes (1.3 KB = 0.0 MB) -Contents/MonoBundle/System.AppContext.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Buffers.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.ComponentModel.DataAnnotations.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.Configuration.dll: - 9,216 bytes (9.0 KB = 0.0 MB) -Contents/MonoBundle/System.Core.dll: - 13,312 bytes (13.0 KB = 0.0 MB) -Contents/MonoBundle/System.Data.DataSetExtensions.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Data.dll: - 15,360 bytes (15.0 KB = 0.0 MB) -Contents/MonoBundle/System.Diagnostics.Contracts.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Diagnostics.Debug.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Diagnostics.Tools.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Diagnostics.Tracing.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.dll: - 40,448 bytes (39.5 KB = 0.0 MB) -Contents/MonoBundle/System.Drawing.dll: - 10,240 bytes (10.0 KB = 0.0 MB) -Contents/MonoBundle/System.Dynamic.Runtime.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Globalization.Calendars.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Globalization.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Globalization.Extensions.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.IO.Compression.FileSystem.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.IO.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.IO.FileSystem.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.IO.FileSystem.Primitives.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.IO.UnmanagedMemoryStream.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Net.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/System.Net.ServicePoint.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Numerics.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Numerics.Vectors.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.Emit.ILGeneration.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.Emit.Lightweight.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.Extensions.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.Primitives.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Resources.Reader.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Resources.ResourceManager.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.CompilerServices.Unsafe.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.dll: - 35,840 bytes (35.0 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Extensions.dll: - 7,680 bytes (7.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Handles.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.InteropServices.RuntimeInformation.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Intrinsics.dll: - 8,704 bytes (8.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Loader.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Serialization.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Serialization.Json.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Serialization.Xml.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Algorithms.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Cng.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Csp.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Encoding.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.OpenSsl.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Primitives.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.X509Certificates.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.dll: - 8,192 bytes (8.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Principal.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.SecureString.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.ServiceModel.Web.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.ServiceProcess.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Text.Encoding.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Text.Encoding.Extensions.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Overlapped.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Tasks.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Tasks.Extensions.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Thread.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.ThreadPool.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Timer.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Transactions.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.ValueTuple.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Web.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Windows.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.dll: - 13,312 bytes (13.0 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.Linq.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.ReaderWriter.dll: - 11,776 bytes (11.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.Serialization.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.XDocument.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.XmlDocument.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.XmlSerializer.dll: - 7,680 bytes (7.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.XPath.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/WindowsBase.dll: - 6,144 bytes (6.0 KB = 0.0 MB) Contents/PkgInfo: 8 bytes (0.0 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt index f4803f806944..ec9a7e37e8bd 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-CoreCLR-R2R-size.txt @@ -1,608 +1,768 @@ -AppBundleSize: 315,779,102 bytes (308,378.0 KB = 301.2 MB) +AppBundleSize: 323,190,616 bytes (315,615.8 KB = 308.2 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 747 bytes (0.7 KB = 0.0 MB) + 717 bytes (0.7 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 7,992,936 bytes (7,805.6 KB = 7.6 MB) + 7,991,992 bytes (7,804.7 KB = 7.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.CSharp.dll: - 872,960 bytes (852.5 KB = 0.8 MB) + 882,984 bytes (862.3 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Caching.Abstractions.dll: - 55,808 bytes (54.5 KB = 0.1 MB) + 81,192 bytes (79.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Configuration.Abstractions.dll: - 28,160 bytes (27.5 KB = 0.0 MB) + 38,224 bytes (37.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: - 146,944 bytes (143.5 KB = 0.1 MB) + 156,968 bytes (153.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Diagnostics.Abstractions.dll: - 29,184 bytes (28.5 KB = 0.0 MB) + 39,248 bytes (38.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.FileProviders.Abstractions.dll: - 15,360 bytes (15.0 KB = 0.0 MB) + 25,384 bytes (24.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Hosting.Abstractions.dll: - 38,912 bytes (38.0 KB = 0.0 MB) + 48,424 bytes (47.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Logging.Abstractions.dll: - 149,504 bytes (146.0 KB = 0.1 MB) + 159,528 bytes (155.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Options.dll: - 178,176 bytes (174.0 KB = 0.2 MB) + 224,040 bytes (218.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Extensions.Primitives.dll: - 75,776 bytes (74.0 KB = 0.1 MB) + 90,408 bytes (88.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.macOS.dll: - 76,961,792 bytes (75,158.0 KB = 73.4 MB) + 76,963,328 bytes (75,159.5 KB = 73.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.Core.dll: - 1,326,592 bytes (1,295.5 KB = 1.3 MB) + 1,337,168 bytes (1,305.8 KB = 1.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.VisualBasic.dll: + 17,192 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Win32.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/Microsoft.Win32.Registry.dll: - 23,552 bytes (23.0 KB = 0.0 MB) + 33,576 bytes (32.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/mscorlib.dll: + 59,728 bytes (58.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/netstandard.dll: + 101,160 bytes (98.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/SizeTestApp.dll: 9,728 bytes (9.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.AppContext.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Buffers.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Concurrent.dll: - 135,680 bytes (132.5 KB = 0.1 MB) + 145,704 bytes (142.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.dll: - 313,856 bytes (306.5 KB = 0.3 MB) + 323,880 bytes (316.3 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Immutable.dll: - 1,166,336 bytes (1,139.0 KB = 1.1 MB) + 1,179,944 bytes (1,152.3 KB = 1.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.NonGeneric.dll: - 93,184 bytes (91.0 KB = 0.1 MB) + 103,208 bytes (100.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Collections.Specialized.dll: - 94,208 bytes (92.0 KB = 0.1 MB) + 104,232 bytes (101.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Annotations.dll: - 243,712 bytes (238.0 KB = 0.2 MB) + 253,264 bytes (247.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.DataAnnotations.dll: + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.dll: - 7,168 bytes (7.0 KB = 0.0 MB) + 17,232 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.EventBasedAsync.dll: - 28,672 bytes (28.0 KB = 0.0 MB) + 38,696 bytes (37.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.Primitives.dll: - 68,096 bytes (66.5 KB = 0.1 MB) + 78,160 bytes (76.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ComponentModel.TypeConverter.dll: - 855,040 bytes (835.0 KB = 0.8 MB) + 864,552 bytes (844.3 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Configuration.dll: + 19,240 bytes (18.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Console.dll: - 214,016 bytes (209.0 KB = 0.2 MB) + 224,080 bytes (218.8 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Core.dll: + 23,376 bytes (22.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Data.Common.dll: - 3,167,232 bytes (3,093.0 KB = 3.0 MB) + 3,178,280 bytes (3,103.8 KB = 3.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Data.DataSetExtensions.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Data.dll: + 25,384 bytes (24.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Contracts.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Debug.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.DiagnosticSource.dll: - 558,592 bytes (545.5 KB = 0.5 MB) + 569,128 bytes (555.8 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.FileVersionInfo.dll: - 35,840 bytes (35.0 KB = 0.0 MB) + 45,864 bytes (44.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Process.dll: - 378,880 bytes (370.0 KB = 0.4 MB) + 397,608 bytes (388.3 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.StackTrace.dll: - 19,968 bytes (19.5 KB = 0.0 MB) + 29,992 bytes (29.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.TextWriterTraceListener.dll: - 54,784 bytes (53.5 KB = 0.1 MB) + 64,848 bytes (63.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Tools.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.TraceSource.dll: - 140,288 bytes (137.0 KB = 0.1 MB) + 150,312 bytes (146.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Diagnostics.Tracing.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.dll: + 50,472 bytes (49.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Drawing.dll: + 20,264 bytes (19.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Drawing.Primitives.dll: - 116,224 bytes (113.5 KB = 0.1 MB) + 126,248 bytes (123.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Dynamic.Runtime.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Asn1.dll: - 248,320 bytes (242.5 KB = 0.2 MB) + 276,304 bytes (269.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Formats.Tar.dll: - 353,792 bytes (345.5 KB = 0.3 MB) + 370,984 bytes (362.3 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Globalization.Calendars.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Globalization.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Globalization.Extensions.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.Brotli.dll: - 71,168 bytes (69.5 KB = 0.1 MB) + 82,728 bytes (80.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.dll: - 652,288 bytes (637.0 KB = 0.6 MB) + 668,456 bytes (652.8 KB = 0.6 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.FileSystem.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Compression.ZipFile.dll: - 123,904 bytes (121.0 KB = 0.1 MB) + 134,440 bytes (131.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.AccessControl.dll: - 22,528 bytes (22.0 KB = 0.0 MB) + 32,592 bytes (31.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.DriveInfo.dll: - 77,824 bytes (76.0 KB = 0.1 MB) + 87,848 bytes (85.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.Primitives.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.FileSystem.Watcher.dll: - 110,592 bytes (108.0 KB = 0.1 MB) + 120,616 bytes (117.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.IsolatedStorage.dll: - 73,216 bytes (71.5 KB = 0.1 MB) + 83,280 bytes (81.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.MemoryMappedFiles.dll: - 83,456 bytes (81.5 KB = 0.1 MB) + 93,480 bytes (91.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipelines.dll: - 187,904 bytes (183.5 KB = 0.2 MB) + 209,704 bytes (204.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.AccessControl.dll: - 13,824 bytes (13.5 KB = 0.0 MB) + 23,848 bytes (23.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.IO.Pipes.dll: - 134,656 bytes (131.5 KB = 0.1 MB) + 146,728 bytes (143.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.IO.UnmanagedMemoryStream.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.AsyncEnumerable.dll: - 1,625,088 bytes (1,587.0 KB = 1.5 MB) + 1,641,808 bytes (1,603.3 KB = 1.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.dll: - 835,584 bytes (816.0 KB = 0.8 MB) + 861,008 bytes (840.8 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Expressions.dll: - 4,850,688 bytes (4,737.0 KB = 4.6 MB) + 4,861,736 bytes (4,747.8 KB = 4.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Parallel.dll: - 999,936 bytes (976.5 KB = 1.0 MB) + 1,009,960 bytes (986.3 KB = 1.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Linq.Queryable.dll: - 212,480 bytes (207.5 KB = 0.2 MB) + 222,504 bytes (217.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Memory.dll: - 171,520 bytes (167.5 KB = 0.2 MB) + 176,424 bytes (172.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.dll: + 17,232 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.dll: - 1,849,344 bytes (1,806.0 KB = 1.8 MB) + 1,909,032 bytes (1,864.3 KB = 1.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Http.Json.dll: - 117,760 bytes (115.0 KB = 0.1 MB) + 127,824 bytes (124.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.HttpListener.dll: - 311,808 bytes (304.5 KB = 0.3 MB) + 322,344 bytes (314.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Mail.dll: - 517,120 bytes (505.0 KB = 0.5 MB) + 530,728 bytes (518.3 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NameResolution.dll: - 158,208 bytes (154.5 KB = 0.2 MB) + 273,192 bytes (266.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.NetworkInformation.dll: - 140,800 bytes (137.5 KB = 0.1 MB) + 151,336 bytes (147.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Ping.dll: - 87,040 bytes (85.0 KB = 0.1 MB) + 97,576 bytes (95.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Primitives.dll: - 238,592 bytes (233.0 KB = 0.2 MB) + 248,616 bytes (242.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Quic.dll: - 366,080 bytes (357.5 KB = 0.3 MB) + 375,592 bytes (366.8 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Requests.dll: - 396,800 bytes (387.5 KB = 0.4 MB) + 408,400 bytes (398.8 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Security.dll: - 793,088 bytes (774.5 KB = 0.8 MB) + 889,128 bytes (868.3 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.ServerSentEvents.dll: - 67,584 bytes (66.0 KB = 0.1 MB) + 79,144 bytes (77.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Net.ServicePoint.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.Sockets.dll: - 689,152 bytes (673.0 KB = 0.7 MB) + 702,760 bytes (686.3 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebClient.dll: - 164,864 bytes (161.0 KB = 0.2 MB) + 175,400 bytes (171.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebHeaderCollection.dll: - 50,176 bytes (49.0 KB = 0.0 MB) + 60,200 bytes (58.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebProxy.dll: - 26,112 bytes (25.5 KB = 0.0 MB) + 36,136 bytes (35.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.Client.dll: - 87,552 bytes (85.5 KB = 0.1 MB) + 98,088 bytes (95.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Net.WebSockets.dll: - 248,832 bytes (243.0 KB = 0.2 MB) + 259,368 bytes (253.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Numerics.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Numerics.Vectors.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.ObjectModel.dll: - 66,560 bytes (65.0 KB = 0.1 MB) + 76,624 bytes (74.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.CoreLib.dll: - 18,216,960 bytes (17,790.0 KB = 17.4 MB) + 18,983,720 bytes (18,538.8 KB = 18.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.DataContractSerialization.dll: - 2,342,400 bytes (2,287.5 KB = 2.2 MB) + 2,352,424 bytes (2,297.3 KB = 2.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Uri.dll: - 249,344 bytes (243.5 KB = 0.2 MB) + 259,368 bytes (253.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.dll: - 8,666,112 bytes (8,463.0 KB = 8.3 MB) + 8,694,056 bytes (8,490.3 KB = 8.3 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Private.Xml.Linq.dll: - 404,992 bytes (395.5 KB = 0.4 MB) + 414,032 bytes (404.3 KB = 0.4 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.DispatchProxy.dll: - 62,464 bytes (61.0 KB = 0.1 MB) + 72,488 bytes (70.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.dll: + 16,208 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.dll: - 331,776 bytes (324.0 KB = 0.3 MB) + 341,800 bytes (333.8 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.ILGeneration.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Emit.Lightweight.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Extensions.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Metadata.dll: - 1,265,664 bytes (1,236.0 KB = 1.2 MB) + 1,276,712 bytes (1,246.8 KB = 1.2 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.Primitives.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Reflection.TypeExtensions.dll: - 23,552 bytes (23.0 KB = 0.0 MB) + 33,576 bytes (32.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.Reader.dll: + 15,184 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.ResourceManager.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Resources.Writer.dll: - 35,328 bytes (34.5 KB = 0.0 MB) + 45,392 bytes (44.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.CompilerServices.Unsafe.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.CompilerServices.VisualC.dll: - 8,704 bytes (8.5 KB = 0.0 MB) + 18,728 bytes (18.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.dll: + 45,864 bytes (44.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Extensions.dll: + 17,744 bytes (17.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Handles.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.dll: - 99,840 bytes (97.5 KB = 0.1 MB) + 110,376 bytes (107.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.JavaScript.dll: - 27,136 bytes (26.5 KB = 0.0 MB) + 37,160 bytes (36.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.InteropServices.RuntimeInformation.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Intrinsics.dll: + 18,768 bytes (18.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Loader.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Numerics.dll: - 486,912 bytes (475.5 KB = 0.5 MB) + 564,560 bytes (551.3 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.dll: + 17,232 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Formatters.dll: - 116,736 bytes (114.0 KB = 0.1 MB) + 126,800 bytes (123.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Json.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Primitives.dll: - 19,456 bytes (19.0 KB = 0.0 MB) + 29,480 bytes (28.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Runtime.Serialization.Xml.dll: + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.AccessControl.dll: - 45,056 bytes (44.0 KB = 0.0 MB) + 55,080 bytes (53.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Claims.dll: - 91,136 bytes (89.0 KB = 0.1 MB) + 101,200 bytes (98.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Algorithms.dll: + 17,192 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Cng.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Csp.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.dll: - 2,456,576 bytes (2,399.0 KB = 2.3 MB) + 2,472,744 bytes (2,414.8 KB = 2.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Encoding.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.OpenSsl.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Cryptography.X509Certificates.dll: + 17,232 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.dll: + 18,256 bytes (17.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Principal.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Security.Principal.Windows.dll: - 27,648 bytes (27.0 KB = 0.0 MB) + 37,672 bytes (36.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Security.SecureString.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ServiceModel.Web.dll: + 16,680 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ServiceProcess.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.CodePages.dll: - 854,528 bytes (834.5 KB = 0.8 MB) + 864,552 bytes (844.3 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encoding.Extensions.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Encodings.Web.dll: - 112,640 bytes (110.0 KB = 0.1 MB) + 122,664 bytes (119.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.Json.dll: - 2,724,352 bytes (2,660.5 KB = 2.6 MB) + 2,753,360 bytes (2,688.8 KB = 2.6 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Text.RegularExpressions.dll: - 1,146,368 bytes (1,119.5 KB = 1.1 MB) + 1,187,112 bytes (1,159.3 KB = 1.1 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.AccessControl.dll: - 23,552 bytes (23.0 KB = 0.0 MB) + 33,576 bytes (32.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Channels.dll: - 155,136 bytes (151.5 KB = 0.1 MB) + 165,160 bytes (161.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.dll: - 70,656 bytes (69.0 KB = 0.1 MB) + 80,680 bytes (78.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Overlapped.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Dataflow.dll: - 516,608 bytes (504.5 KB = 0.5 MB) + 526,632 bytes (514.3 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.dll: + 16,720 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Extensions.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Tasks.Parallel.dll: - 121,344 bytes (118.5 KB = 0.1 MB) + 136,488 bytes (133.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Thread.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.ThreadPool.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Threading.Timer.dll: + 15,184 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Transactions.dll: + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Transactions.Local.dll: - 381,440 bytes (372.5 KB = 0.4 MB) + 389,968 bytes (380.8 KB = 0.4 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.ValueTuple.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Web.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Web.HttpUtility.dll: - 46,592 bytes (45.5 KB = 0.0 MB) + 56,616 bytes (55.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Windows.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.dll: + 23,336 bytes (22.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.Linq.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.ReaderWriter.dll: + 21,800 bytes (21.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.Serialization.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XDocument.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XmlDocument.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XmlSerializer.dll: + 17,744 bytes (17.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XPath.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-arm64/System.Xml.XPath.XDocument.dll: - 7,168 bytes (7.0 KB = 0.0 MB) + 17,232 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-arm64/WindowsBase.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.CSharp.dll: - 791,552 bytes (773.0 KB = 0.8 MB) + 801,576 bytes (782.8 KB = 0.8 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Caching.Abstractions.dll: - 52,224 bytes (51.0 KB = 0.0 MB) + 76,584 bytes (74.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Configuration.Abstractions.dll: - 26,624 bytes (26.0 KB = 0.0 MB) + 36,648 bytes (35.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.DependencyInjection.Abstractions.dll: - 130,560 bytes (127.5 KB = 0.1 MB) + 140,584 bytes (137.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Diagnostics.Abstractions.dll: - 27,136 bytes (26.5 KB = 0.0 MB) + 37,200 bytes (36.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.FileProviders.Abstractions.dll: - 14,336 bytes (14.0 KB = 0.0 MB) + 24,872 bytes (24.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Hosting.Abstractions.dll: - 36,864 bytes (36.0 KB = 0.0 MB) + 46,928 bytes (45.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Logging.Abstractions.dll: - 136,192 bytes (133.0 KB = 0.1 MB) + 146,216 bytes (142.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Options.dll: - 161,280 bytes (157.5 KB = 0.2 MB) + 205,608 bytes (200.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Extensions.Primitives.dll: - 69,632 bytes (68.0 KB = 0.1 MB) + 83,240 bytes (81.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.macOS.dll: - 66,168,320 bytes (64,617.5 KB = 63.1 MB) + 66,171,392 bytes (64,620.5 KB = 63.1 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.Core.dll: - 1,181,696 bytes (1,154.0 KB = 1.1 MB) + 1,191,760 bytes (1,163.8 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.VisualBasic.dll: + 17,192 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Win32.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/Microsoft.Win32.Registry.dll: - 23,040 bytes (22.5 KB = 0.0 MB) + 33,064 bytes (32.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/mscorlib.dll: + 59,688 bytes (58.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/netstandard.dll: + 101,160 bytes (98.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/SizeTestApp.dll: 9,728 bytes (9.5 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.AppContext.dll: + 15,184 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Buffers.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Concurrent.dll: - 122,368 bytes (119.5 KB = 0.1 MB) + 132,392 bytes (129.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.dll: - 278,528 bytes (272.0 KB = 0.3 MB) + 288,552 bytes (281.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Immutable.dll: - 1,041,408 bytes (1,017.0 KB = 1.0 MB) + 1,055,016 bytes (1,030.3 KB = 1.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.NonGeneric.dll: - 82,432 bytes (80.5 KB = 0.1 MB) + 92,496 bytes (90.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Collections.Specialized.dll: - 81,920 bytes (80.0 KB = 0.1 MB) + 91,984 bytes (89.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.Annotations.dll: - 219,136 bytes (214.0 KB = 0.2 MB) + 229,160 bytes (223.8 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.DataAnnotations.dll: + 16,680 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.dll: - 7,168 bytes (7.0 KB = 0.0 MB) + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.EventBasedAsync.dll: - 26,112 bytes (25.5 KB = 0.0 MB) + 36,136 bytes (35.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.Primitives.dll: - 60,416 bytes (59.0 KB = 0.1 MB) + 70,440 bytes (68.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ComponentModel.TypeConverter.dll: - 754,688 bytes (737.0 KB = 0.7 MB) + 764,200 bytes (746.3 KB = 0.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Configuration.dll: + 19,280 bytes (18.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Console.dll: - 188,928 bytes (184.5 KB = 0.2 MB) + 198,952 bytes (194.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Core.dll: + 23,336 bytes (22.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Data.Common.dll: - 2,792,448 bytes (2,727.0 KB = 2.7 MB) + 2,802,472 bytes (2,736.8 KB = 2.7 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Data.DataSetExtensions.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Data.dll: + 25,424 bytes (24.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Contracts.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Debug.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.DiagnosticSource.dll: - 506,368 bytes (494.5 KB = 0.5 MB) + 515,920 bytes (503.8 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.FileVersionInfo.dll: - 33,280 bytes (32.5 KB = 0.0 MB) + 43,304 bytes (42.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Process.dll: - 334,848 bytes (327.0 KB = 0.3 MB) + 353,064 bytes (344.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.StackTrace.dll: - 19,968 bytes (19.5 KB = 0.0 MB) + 29,992 bytes (29.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TextWriterTraceListener.dll: - 49,152 bytes (48.0 KB = 0.0 MB) + 59,216 bytes (57.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Tools.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.TraceSource.dll: - 120,832 bytes (118.0 KB = 0.1 MB) + 130,856 bytes (127.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Diagnostics.Tracing.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.dll: + 50,472 bytes (49.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Drawing.dll: + 20,304 bytes (19.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Drawing.Primitives.dll: - 113,152 bytes (110.5 KB = 0.1 MB) + 123,176 bytes (120.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Dynamic.Runtime.dll: + 16,208 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Asn1.dll: - 224,256 bytes (219.0 KB = 0.2 MB) + 250,664 bytes (244.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Formats.Tar.dll: - 314,880 bytes (307.5 KB = 0.3 MB) + 331,560 bytes (323.8 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Globalization.Calendars.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Globalization.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Globalization.Extensions.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.Brotli.dll: - 61,952 bytes (60.5 KB = 0.1 MB) + 73,512 bytes (71.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.dll: - 577,024 bytes (563.5 KB = 0.6 MB) + 592,208 bytes (578.3 KB = 0.6 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.FileSystem.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Compression.ZipFile.dll: - 113,152 bytes (110.5 KB = 0.1 MB) + 123,176 bytes (120.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.AccessControl.dll: - 22,528 bytes (22.0 KB = 0.0 MB) + 32,552 bytes (31.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.DriveInfo.dll: - 69,632 bytes (68.0 KB = 0.1 MB) + 79,696 bytes (77.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.Primitives.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.FileSystem.Watcher.dll: - 98,816 bytes (96.5 KB = 0.1 MB) + 108,840 bytes (106.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.IsolatedStorage.dll: - 66,560 bytes (65.0 KB = 0.1 MB) + 76,584 bytes (74.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.MemoryMappedFiles.dll: - 72,704 bytes (71.0 KB = 0.1 MB) + 82,768 bytes (80.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipelines.dll: - 173,568 bytes (169.5 KB = 0.2 MB) + 194,856 bytes (190.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.AccessControl.dll: - 13,824 bytes (13.5 KB = 0.0 MB) + 23,848 bytes (23.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.IO.Pipes.dll: - 117,248 bytes (114.5 KB = 0.1 MB) + 129,320 bytes (126.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.IO.UnmanagedMemoryStream.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.AsyncEnumerable.dll: - 1,498,624 bytes (1,463.5 KB = 1.4 MB) + 1,513,768 bytes (1,478.3 KB = 1.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.dll: - 739,328 bytes (722.0 KB = 0.7 MB) + 763,216 bytes (745.3 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Expressions.dll: - 3,959,808 bytes (3,867.0 KB = 3.8 MB) + 3,970,856 bytes (3,877.8 KB = 3.8 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Parallel.dll: - 888,320 bytes (867.5 KB = 0.8 MB) + 898,344 bytes (877.3 KB = 0.9 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Linq.Queryable.dll: - 178,688 bytes (174.5 KB = 0.2 MB) + 188,712 bytes (184.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Memory.dll: - 161,280 bytes (157.5 KB = 0.2 MB) + 166,696 bytes (162.8 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.dll: + 17,192 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.dll: - 1,663,488 bytes (1,624.5 KB = 1.6 MB) + 1,719,632 bytes (1,679.3 KB = 1.6 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Http.Json.dll: - 110,080 bytes (107.5 KB = 0.1 MB) + 120,104 bytes (117.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.HttpListener.dll: - 279,040 bytes (272.5 KB = 0.3 MB) + 289,064 bytes (282.3 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Mail.dll: - 460,800 bytes (450.0 KB = 0.4 MB) + 474,408 bytes (463.3 KB = 0.5 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.NameResolution.dll: - 142,848 bytes (139.5 KB = 0.1 MB) + 252,240 bytes (246.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.NetworkInformation.dll: - 124,416 bytes (121.5 KB = 0.1 MB) + 134,440 bytes (131.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Ping.dll: - 78,336 bytes (76.5 KB = 0.1 MB) + 88,400 bytes (86.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Primitives.dll: - 213,504 bytes (208.5 KB = 0.2 MB) + 223,016 bytes (217.8 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Quic.dll: - 330,752 bytes (323.0 KB = 0.3 MB) + 340,776 bytes (332.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Requests.dll: - 351,744 bytes (343.5 KB = 0.3 MB) + 362,320 bytes (353.8 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Security.dll: - 698,368 bytes (682.0 KB = 0.7 MB) + 786,216 bytes (767.8 KB = 0.7 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.ServerSentEvents.dll: - 63,488 bytes (62.0 KB = 0.1 MB) + 74,536 bytes (72.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Net.ServicePoint.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.Sockets.dll: - 603,136 bytes (589.0 KB = 0.6 MB) + 616,784 bytes (602.3 KB = 0.6 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebClient.dll: - 147,456 bytes (144.0 KB = 0.1 MB) + 157,992 bytes (154.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebHeaderCollection.dll: - 44,544 bytes (43.5 KB = 0.0 MB) + 54,608 bytes (53.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebProxy.dll: - 24,064 bytes (23.5 KB = 0.0 MB) + 34,128 bytes (33.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebSockets.Client.dll: - 79,872 bytes (78.0 KB = 0.1 MB) + 90,408 bytes (88.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Net.WebSockets.dll: - 226,304 bytes (221.0 KB = 0.2 MB) + 237,864 bytes (232.3 KB = 0.2 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Numerics.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Numerics.Vectors.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.ObjectModel.dll: - 58,880 bytes (57.5 KB = 0.1 MB) + 68,944 bytes (67.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.CoreLib.dll: - 16,943,104 bytes (16,546.0 KB = 16.2 MB) + 17,670,440 bytes (17,256.3 KB = 16.9 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.DataContractSerialization.dll: - 2,050,560 bytes (2,002.5 KB = 2.0 MB) + 2,060,584 bytes (2,012.3 KB = 2.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Uri.dll: - 229,888 bytes (224.5 KB = 0.2 MB) + 239,952 bytes (234.3 KB = 0.2 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.dll: - 7,687,168 bytes (7,507.0 KB = 7.3 MB) + 7,713,104 bytes (7,532.3 KB = 7.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Private.Xml.Linq.dll: - 356,352 bytes (348.0 KB = 0.3 MB) + 366,888 bytes (358.3 KB = 0.3 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.DispatchProxy.dll: - 57,344 bytes (56.0 KB = 0.1 MB) + 67,408 bytes (65.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.dll: - 294,912 bytes (288.0 KB = 0.3 MB) + 304,976 bytes (297.8 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.ILGeneration.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Emit.Lightweight.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Extensions.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Metadata.dll: - 1,144,832 bytes (1,118.0 KB = 1.1 MB) + 1,155,408 bytes (1,128.3 KB = 1.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Reflection.TypeExtensions.dll: - 21,504 bytes (21.0 KB = 0.0 MB) + 31,528 bytes (30.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Resources.Reader.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Resources.ResourceManager.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Resources.Writer.dll: - 32,256 bytes (31.5 KB = 0.0 MB) + 42,280 bytes (41.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.CompilerServices.Unsafe.dll: + 15,144 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.CompilerServices.VisualC.dll: - 8,704 bytes (8.5 KB = 0.0 MB) + 18,728 bytes (18.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.dll: + 45,904 bytes (44.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Extensions.dll: + 17,744 bytes (17.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Handles.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.dll: - 92,160 bytes (90.0 KB = 0.1 MB) + 102,184 bytes (99.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.JavaScript.dll: - 27,136 bytes (26.5 KB = 0.0 MB) + 37,160 bytes (36.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.InteropServices.RuntimeInformation.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Intrinsics.dll: + 18,728 bytes (18.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Loader.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Numerics.dll: - 456,192 bytes (445.5 KB = 0.4 MB) + 524,072 bytes (511.8 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.dll: + 17,232 bytes (16.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Formatters.dll: - 105,472 bytes (103.0 KB = 0.1 MB) + 115,496 bytes (112.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Json.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Primitives.dll: - 18,432 bytes (18.0 KB = 0.0 MB) + 28,496 bytes (27.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Runtime.Serialization.Xml.dll: + 16,720 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.AccessControl.dll: - 45,056 bytes (44.0 KB = 0.0 MB) + 55,080 bytes (53.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Claims.dll: - 82,432 bytes (80.5 KB = 0.1 MB) + 92,456 bytes (90.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Algorithms.dll: + 17,232 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Cng.dll: + 16,208 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Csp.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.dll: - 2,163,200 bytes (2,112.5 KB = 2.1 MB) + 2,177,832 bytes (2,126.8 KB = 2.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Encoding.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.OpenSsl.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.Primitives.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Cryptography.X509Certificates.dll: + 17,232 bytes (16.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.dll: + 18,256 bytes (17.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.Principal.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Security.Principal.Windows.dll: - 27,648 bytes (27.0 KB = 0.0 MB) + 37,672 bytes (36.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Security.SecureString.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ServiceModel.Web.dll: + 16,720 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ServiceProcess.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.CodePages.dll: - 839,680 bytes (820.0 KB = 0.8 MB) + 849,704 bytes (829.8 KB = 0.8 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encoding.Extensions.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Encodings.Web.dll: - 104,448 bytes (102.0 KB = 0.1 MB) + 114,472 bytes (111.8 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.Json.dll: - 2,446,336 bytes (2,389.0 KB = 2.3 MB) + 2,473,768 bytes (2,415.8 KB = 2.4 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Text.RegularExpressions.dll: - 1,035,776 bytes (1,011.5 KB = 1.0 MB) + 1,074,472 bytes (1,049.3 KB = 1.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.AccessControl.dll: - 23,040 bytes (22.5 KB = 0.0 MB) + 33,064 bytes (32.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Channels.dll: - 140,800 bytes (137.5 KB = 0.1 MB) + 150,824 bytes (147.3 KB = 0.1 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.dll: - 64,512 bytes (63.0 KB = 0.1 MB) + 74,576 bytes (72.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Overlapped.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Dataflow.dll: - 461,824 bytes (451.0 KB = 0.4 MB) + 471,888 bytes (460.8 KB = 0.5 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.dll: + 16,720 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Extensions.dll: + 15,696 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Tasks.Parallel.dll: - 110,080 bytes (107.5 KB = 0.1 MB) + 124,200 bytes (121.3 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Thread.dll: + 15,696 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.ThreadPool.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Threading.Timer.dll: + 15,144 bytes (14.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Transactions.dll: + 16,720 bytes (16.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Transactions.Local.dll: - 342,016 bytes (334.0 KB = 0.3 MB) + 350,032 bytes (341.8 KB = 0.3 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.ValueTuple.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Web.dll: + 15,184 bytes (14.8 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Web.HttpUtility.dll: - 43,008 bytes (42.0 KB = 0.0 MB) + 53,032 bytes (51.8 KB = 0.1 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Windows.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.dll: + 23,376 bytes (22.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.Linq.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.ReaderWriter.dll: + 21,800 bytes (21.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.Serialization.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XDocument.dll: + 16,168 bytes (15.8 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XmlDocument.dll: + 15,656 bytes (15.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XmlSerializer.dll: + 17,704 bytes (17.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XPath.dll: + 15,656 bytes (15.3 KB = 0.0 MB) Contents/MonoBundle/.xamarin/osx-x64/System.Xml.XPath.XDocument.dll: - 6,656 bytes (6.5 KB = 0.0 MB) + 16,680 bytes (16.3 KB = 0.0 MB) +Contents/MonoBundle/.xamarin/osx-x64/WindowsBase.dll: + 16,168 bytes (15.8 KB = 0.0 MB) Contents/MonoBundle/libclrgc.dylib: - 1,658,448 bytes (1,619.6 KB = 1.6 MB) + 1,673,168 bytes (1,634.0 KB = 1.6 MB) Contents/MonoBundle/libclrgcexp.dylib: - 1,799,648 bytes (1,757.5 KB = 1.7 MB) + 1,830,656 bytes (1,787.8 KB = 1.7 MB) Contents/MonoBundle/libclrjit.dylib: - 5,860,624 bytes (5,723.3 KB = 5.6 MB) + 5,981,248 bytes (5,841.1 KB = 5.7 MB) Contents/MonoBundle/libcoreclr.dylib: - 11,068,208 bytes (10,808.8 KB = 10.6 MB) + 11,185,600 bytes (10,923.4 KB = 10.7 MB) Contents/MonoBundle/libhostfxr.dylib: - 813,360 bytes (794.3 KB = 0.8 MB) + 861,280 bytes (841.1 KB = 0.8 MB) Contents/MonoBundle/libhostpolicy.dylib: - 753,264 bytes (735.6 KB = 0.7 MB) + 817,680 bytes (798.5 KB = 0.8 MB) Contents/MonoBundle/libmscordaccore.dylib: - 3,697,808 bytes (3,611.1 KB = 3.5 MB) + 3,744,848 bytes (3,657.1 KB = 3.6 MB) Contents/MonoBundle/libmscordbi.dylib: - 3,053,040 bytes (2,981.5 KB = 2.9 MB) + 3,030,720 bytes (2,959.7 KB = 2.9 MB) Contents/MonoBundle/libSystem.Globalization.Native.dylib: - 271,184 bytes (264.8 KB = 0.3 MB) + 302,528 bytes (295.4 KB = 0.3 MB) Contents/MonoBundle/libSystem.IO.Compression.Native.dylib: - 3,078,224 bytes (3,006.1 KB = 2.9 MB) + 3,109,632 bytes (3,036.8 KB = 3.0 MB) Contents/MonoBundle/libSystem.Native.dylib: - 280,944 bytes (274.4 KB = 0.3 MB) + 312,368 bytes (305.0 KB = 0.3 MB) Contents/MonoBundle/libSystem.Net.Security.Native.dylib: - 120,784 bytes (118.0 KB = 0.1 MB) + 152,128 bytes (148.6 KB = 0.1 MB) Contents/MonoBundle/libSystem.Security.Cryptography.Native.Apple.dylib: - 476,160 bytes (465.0 KB = 0.5 MB) -Contents/MonoBundle/Microsoft.VisualBasic.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/Microsoft.Win32.Primitives.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/mscorlib.dll: - 49,664 bytes (48.5 KB = 0.0 MB) -Contents/MonoBundle/netstandard.dll: - 91,136 bytes (89.0 KB = 0.1 MB) + 510,064 bytes (498.1 KB = 0.5 MB) Contents/MonoBundle/runtimeconfig.bin: 1,363 bytes (1.3 KB = 0.0 MB) -Contents/MonoBundle/System.AppContext.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Buffers.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.ComponentModel.DataAnnotations.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.Configuration.dll: - 9,216 bytes (9.0 KB = 0.0 MB) -Contents/MonoBundle/System.Core.dll: - 13,312 bytes (13.0 KB = 0.0 MB) -Contents/MonoBundle/System.Data.DataSetExtensions.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Data.dll: - 15,360 bytes (15.0 KB = 0.0 MB) -Contents/MonoBundle/System.Diagnostics.Contracts.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Diagnostics.Debug.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Diagnostics.Tools.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Diagnostics.Tracing.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.dll: - 40,448 bytes (39.5 KB = 0.0 MB) -Contents/MonoBundle/System.Drawing.dll: - 10,240 bytes (10.0 KB = 0.0 MB) -Contents/MonoBundle/System.Dynamic.Runtime.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Globalization.Calendars.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Globalization.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Globalization.Extensions.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.IO.Compression.FileSystem.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.IO.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.IO.FileSystem.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.IO.FileSystem.Primitives.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.IO.UnmanagedMemoryStream.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Net.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/System.Net.ServicePoint.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Numerics.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Numerics.Vectors.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.Emit.ILGeneration.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.Emit.Lightweight.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.Extensions.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Reflection.Primitives.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Resources.Reader.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Resources.ResourceManager.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.CompilerServices.Unsafe.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.dll: - 35,840 bytes (35.0 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Extensions.dll: - 7,680 bytes (7.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Handles.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.InteropServices.RuntimeInformation.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Intrinsics.dll: - 8,704 bytes (8.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Loader.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Serialization.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Serialization.Json.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Runtime.Serialization.Xml.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Algorithms.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Cng.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Csp.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Encoding.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.OpenSsl.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.Primitives.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Cryptography.X509Certificates.dll: - 7,168 bytes (7.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.dll: - 8,192 bytes (8.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.Principal.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Security.SecureString.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.ServiceModel.Web.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.ServiceProcess.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Text.Encoding.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Text.Encoding.Extensions.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Overlapped.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Tasks.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Tasks.Extensions.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Thread.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.ThreadPool.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Threading.Timer.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Transactions.dll: - 6,656 bytes (6.5 KB = 0.0 MB) -Contents/MonoBundle/System.ValueTuple.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Web.dll: - 5,120 bytes (5.0 KB = 0.0 MB) -Contents/MonoBundle/System.Windows.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.dll: - 13,312 bytes (13.0 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.Linq.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.ReaderWriter.dll: - 11,776 bytes (11.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.Serialization.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.XDocument.dll: - 6,144 bytes (6.0 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.XmlDocument.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.XmlSerializer.dll: - 7,680 bytes (7.5 KB = 0.0 MB) -Contents/MonoBundle/System.Xml.XPath.dll: - 5,632 bytes (5.5 KB = 0.0 MB) -Contents/MonoBundle/WindowsBase.dll: - 6,144 bytes (6.0 KB = 0.0 MB) Contents/PkgInfo: 8 bytes (0.0 KB = 0.0 MB) diff --git a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-TrimmableStatic-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-TrimmableStatic-size.txt index 44881de1b527..f7019294cd71 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-TrimmableStatic-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-TrimmableStatic-size.txt @@ -1,9 +1,9 @@ -AppBundleSize: 4,700,499 bytes (4,590.3 KB = 4.5 MB) +AppBundleSize: 4,733,407 bytes (4,622.5 KB = 4.5 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 747 bytes (0.7 KB = 0.0 MB) + 759 bytes (0.7 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 4,697,896 bytes (4,587.8 KB = 4.5 MB) + 4,730,792 bytes (4,619.9 KB = 4.5 MB) Contents/MonoBundle/runtimeconfig.bin: 1,848 bytes (1.8 KB = 0.0 MB) Contents/PkgInfo: diff --git a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt index 44881de1b527..f7019294cd71 100644 --- a/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt +++ b/tests/dotnet/UnitTests/expected/MacOSX-NativeAOT-size.txt @@ -1,9 +1,9 @@ -AppBundleSize: 4,700,499 bytes (4,590.3 KB = 4.5 MB) +AppBundleSize: 4,733,407 bytes (4,622.5 KB = 4.5 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Contents/Info.plist: - 747 bytes (0.7 KB = 0.0 MB) + 759 bytes (0.7 KB = 0.0 MB) Contents/MacOS/SizeTestApp: - 4,697,896 bytes (4,587.8 KB = 4.5 MB) + 4,730,792 bytes (4,619.9 KB = 4.5 MB) Contents/MonoBundle/runtimeconfig.bin: 1,848 bytes (1.8 KB = 0.0 MB) Contents/PkgInfo: diff --git a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt index 02c3c93910de..af3aa0d52823 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-preservedapis.txt @@ -1935,10 +1935,14 @@ System.Private.CoreLib.dll:/__StaticArrayInitTypeS System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::2F3EFC9595514E83DED03093C4F3E3C781A650E1AAB8CA350537CD1A47E1EE8E System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::F8919BA0F50317229A66884F9CE4E004B755100D8A4000A28D468B0627472F4D +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128_Align=8 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128_Align=8 ::4EFE2D3A64964C812874074A7FEE8B5A2B4425064A81A9D44C0E7A3025C716388 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316 ::A72EB4166B1B422391E0F6E483BEF87AE75881E655BCB152E37F3D9688B2AA71 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2 ::7BEC6AD454781FDCD8D475B3418629CBABB3BF9CA66FA80009D608A1A60D06962 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8 ::DD471F12FFA94CC557A02A91C2CBB95F551AB28C8BBF297B2F953B8886BCCF6D8 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552 ::3A2A62DD9288C777284B5B71FB3EFB59CFDF6BF81068A16795E6155DB8BFA701 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=16 @@ -1977,6 +1981,8 @@ System.Private.CoreLib.dll:/__StaticArrayInitTypeS System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=256_Align=8 ::40BC6C50487BFA78776C051EF7555931E4F15E5CEE9481EB280B1C2630B906B48 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=2 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=2 ::374EE580A55269D9E298B7EFD9DB0DFE1798E301679B89E48D722345EB74B59B2 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=4 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=4 ::2106C9B520169CFE919ED2D7BAE85C716D866D8DC2716F286D9C95511F1B9B014 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4 ::74BCD6ED20AF2231F2BB1CDE814C5F4FF48E54BAC46029EEF90DDF4A208E2B204 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32 @@ -2394,6 +2400,7 @@ System.Private.CoreLib.dll:method System.Void *(System.Byte&) System.RuntimeType System.Private.CoreLib.dll:method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::OnCompletedValueTaskSource System.Private.CoreLib.dll:method System.Void *(System.Object,System.Int16,System.Byte&) System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::_getResult System.Private.CoreLib.dll:method System.Void *(System.Object) System.RuntimeType/ActivatorCache::_pfnRefCtor +System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.Continuation,System.Int32,System.Action) System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterContinuation System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*) System.Runtime.CompilerServices.PortableTailCallFrame::NextCall System.Private.CoreLib.dll:method System.Void *(System.Threading.Tasks.Task,System.Byte&) System.Runtime.CompilerServices.RuntimeAsyncTaskContinuation::_getResult System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle @@ -2419,7 +2426,7 @@ System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Path() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_SupportsRandomAccess() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_ThreadPoolBinding() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Type() -System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeek() +System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeekCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileLength() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileTypeCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetThreadPoolValueTaskSource() @@ -2868,6 +2875,9 @@ System.Private.CoreLib.dll:System.Boolean System.Collections.ObjectModel.ReadOnl System.Private.CoreLib.dll:System.Boolean System.DateTimeRawInfo::hasSameDateAndTimeSeparators System.Private.CoreLib.dll:System.Boolean System.Decimal/DecCalc::IsNegative() System.Private.CoreLib.dll:System.Boolean System.DefaultBinder/BinderState::_isParamArray +System.Private.CoreLib.dll:System.Boolean System.Delegate::HasSingleTarget() +System.Private.CoreLib.dll:System.Boolean System.Delegate::IsClosed() +System.Private.CoreLib.dll:System.Boolean System.Delegate::IsUnmanagedFunctionPtr() System.Private.CoreLib.dll:System.Boolean System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Diagnostics.Debugger::IsAttached() System.Private.CoreLib.dll:System.Boolean System.Diagnostics.StackFrame::_isLastFrameFromForeignExceptionStackTrace @@ -2992,9 +3002,10 @@ System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::ForceI System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::FormatJapaneseFirstYearAsANumber() System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::ShowILOffsets() System.Private.CoreLib.dll:System.Boolean System.Memory`1::IsEmpty() -System.Private.CoreLib.dll:System.Boolean System.MulticastDelegate::HasSingleTarget() System.Private.CoreLib.dll:System.Boolean System.Nullable`1::hasValue System.Private.CoreLib.dll:System.Boolean System.Nullable`1::HasValue() +System.Private.CoreLib.dll:System.Boolean System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Number/DecodedDecimalIeee754`1::Signed() System.Private.CoreLib.dll:System.Boolean System.Number/NumberBuffer::HasNonZeroTail System.Private.CoreLib.dll:System.Boolean System.Number/NumberBuffer::IsNegative System.Private.CoreLib.dll:System.Boolean System.Numerics.Vector::IsHardwareAccelerated() @@ -3106,8 +3117,9 @@ System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_r System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_suppressContextualReflectionContext System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_throwOnError System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::SupportsUnboundGenerics() -System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncMethodBuilderCore::TrackAsyncMethodCompletion() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::CurrentContinuationCompleted +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::CurrentContinuationResumes +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::ReachedLastContinuation System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::_finalized System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::_invalid System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::HasCapacity() @@ -3708,12 +3720,12 @@ System.Private.CoreLib.dll:System.Byte modreq(System.Runtime.CompilerServices.Is System.Private.CoreLib.dll:System.Byte System.Byte::m_value System.Private.CoreLib.dll:System.Byte System.Byte::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Byte System.Collections.Generic.InsertionBehavior::value__ System.Private.CoreLib.dll:System.Byte System.DateTimeParse/DS::value__ System.Private.CoreLib.dll:System.Byte System.Decimal::Scale() -System.Private.CoreLib.dll:System.Byte System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::value__ System.Private.CoreLib.dll:System.Byte System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::value__ System.Private.CoreLib.dll:System.Byte System.DTSubStringType::value__ System.Private.CoreLib.dll:System.Byte System.GCMemoryInfoData::_compacted @@ -3756,12 +3768,17 @@ System.Private.CoreLib.dll:System.Byte System.TimeZoneInfo/TZifType::Abbreviatio System.Private.CoreLib.dll:System.Byte System.TimeZoneInfo/TZVersion::value__ System.Private.CoreLib.dll:System.Byte.CompareTo(System.Byte) System.Private.CoreLib.dll:System.Byte.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Byte.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Byte.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Byte.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Byte.DivRem(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Equals(System.Byte) System.Private.CoreLib.dll:System.Byte.Equals(System.Object) System.Private.CoreLib.dll:System.Byte.GetHashCode() System.Private.CoreLib.dll:System.Byte.GetTypeCode() +System.Private.CoreLib.dll:System.Byte.IsOddInteger(System.Byte) +System.Private.CoreLib.dll:System.Byte.LeadingZeroCount(System.Byte) +System.Private.CoreLib.dll:System.Byte.Log2(System.Byte) System.Private.CoreLib.dll:System.Byte.Max(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Min(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -3797,32 +3814,42 @@ System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastFrom(Sys System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastFrom(System.UInt64) System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastToUInt32(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IAdditionOperators.op_Addition(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_GreaterThan(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_LessThan(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IDivisionOperators.op_Division(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IEqualityOperators.op_Equality(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IEqualityOperators.op_Inequality(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Byte.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Byte.System.Numerics.IMultiplyOperators.op_Multiply(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsFinite(System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsInfinity(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsNaN(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsNegative(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsZero(System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToChecked`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.IShiftOperators.op_LeftShift(System.Byte, System.Int32) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IShiftOperators.op_RightShift(System.Byte, System.Int32) System.Private.CoreLib.dll:System.Byte.System.Numerics.ISubtractionOperators.op_Subtraction(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Byte) System.Private.CoreLib.dll:System.Byte.ToString() System.Private.CoreLib.dll:System.Byte.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Byte.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Byte.TryConvertFromChecked`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryConvertFromSaturating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryConvertFromTruncating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -3891,6 +3918,7 @@ System.Private.CoreLib.dll:System.Char System.Buffers.RangeCharSearchValues`1::_ System.Private.CoreLib.dll:System.Char System.Char::m_value System.Private.CoreLib.dll:System.Char System.Char::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Char System.CharEnumerator::Current() @@ -3971,27 +3999,39 @@ System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastFrom(Sys System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastFrom(System.UInt64) System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastToUInt32(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IAdditionOperators.op_Addition(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryInteger.GetByteCount() +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryInteger.LeadingZeroCount(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryNumber.Log2(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_GreaterThan(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_LessThan(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IDivisionOperators.op_Division(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IEqualityOperators.op_Equality(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IEqualityOperators.op_Inequality(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Char.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Char.System.Numerics.IMultiplyOperators.op_Multiply(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsFinite(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsInfinity(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsNaN(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsNegative(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsOddInteger(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsZero(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToChecked`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.IShiftOperators.op_LeftShift(System.Char, System.Int32) +System.Private.CoreLib.dll:System.Char.System.Numerics.IShiftOperators.op_RightShift(System.Char, System.Int32) System.Private.CoreLib.dll:System.Char.System.Numerics.ISubtractionOperators.op_Subtraction(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Char) System.Private.CoreLib.dll:System.Char.ToString() @@ -5180,6 +5220,7 @@ System.Private.CoreLib.dll:System.Decimal System.Decimal::MultiplicativeIdentity System.Private.CoreLib.dll:System.Decimal System.Decimal::NegativeOne System.Private.CoreLib.dll:System.Decimal System.Decimal::One System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Decimal System.Decimal::Zero @@ -5203,6 +5244,7 @@ System.Private.CoreLib.dll:System.Decimal..ctor(System.UInt64) System.Private.CoreLib.dll:System.Decimal.AsMutable(System.Decimal&) System.Private.CoreLib.dll:System.Decimal.CompareTo(System.Decimal) System.Private.CoreLib.dll:System.Decimal.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Decimal.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Decimal.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Decimal.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Decimal.DecDivMod1E9(System.Decimal&) @@ -5217,8 +5259,10 @@ System.Private.CoreLib.dll:System.Decimal.get_Scale() System.Private.CoreLib.dll:System.Decimal.GetHashCode() System.Private.CoreLib.dll:System.Decimal.GetTypeCode() System.Private.CoreLib.dll:System.Decimal.IsNegative(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.IsOddInteger(System.Decimal) System.Private.CoreLib.dll:System.Decimal.IsValid(System.Int32) System.Private.CoreLib.dll:System.Decimal.op_Addition(System.Decimal, System.Decimal) +System.Private.CoreLib.dll:System.Decimal.op_Division(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Equality(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Explicit(System.Decimal) => System.Byte System.Private.CoreLib.dll:System.Decimal.op_Explicit(System.Decimal) => System.Char @@ -5247,6 +5291,7 @@ System.Private.CoreLib.dll:System.Decimal.op_Implicit(System.UInt64) => System.D System.Private.CoreLib.dll:System.Decimal.op_Inequality(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_LessThan(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_LessThanOrEqual(System.Decimal, System.Decimal) +System.Private.CoreLib.dll:System.Decimal.op_Multiply(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Subtraction(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_UnaryNegation(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -5270,11 +5315,14 @@ System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt16(System.IF System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Decimal.System.Numerics.IMinMaxValue.get_MinValue() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsFinite(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsInfinity(System.Decimal) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsNaN(System.Decimal) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsZero(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertToChecked`1(System.Decimal, out TOther&) @@ -5295,40 +5343,77 @@ System.Private.CoreLib.dll:System.Decimal.ToUInt64(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Truncate(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Truncate(System.Decimal&) System.Private.CoreLib.dll:System.Decimal.TryConvertFrom`1(TOther, out System.Decimal&) +System.Private.CoreLib.dll:System.Decimal.TryConvertFromChecked`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.TryConvertTo`1(System.Decimal, out TOther&) System.Private.CoreLib.dll:System.Decimal.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal/DecCalc +System.Private.CoreLib.dll:System.Decimal/DecCalc..cctor() +System.Private.CoreLib.dll:System.Decimal/DecCalc.Add32To96(System.Decimal/DecCalc/Buf12&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecAddSub(System.Decimal/DecCalc&, System.Decimal/DecCalc&, System.Boolean) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecDivMod1E9(System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPoint`1(System.UInt64, System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPointExact(System.UInt64, System.UInt32, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div128By64(System.Decimal/DecCalc/Buf16&, System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div128By96(System.Decimal/DecCalc/Buf16&, System.Decimal/DecCalc/Buf12&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div64By32(System.UInt64, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96By32(System.Decimal/DecCalc/Buf12&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96By64(System.Decimal/DecCalc/Buf12&, System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96ByConst(System.UInt64&, System.UInt32&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DivByConst(System.UInt32*, System.UInt32, out System.UInt32&, out System.UInt32&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Equals(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.get_High() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_IsNegative() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Mid() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Scale() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_UInt32Powers10() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_UInt64Powers10() System.Private.CoreLib.dll:System.Decimal/DecCalc.GetHashCode(System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale(System.Decimal/DecCalc/Buf12&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale(System.Decimal/DecCalc/Buf16&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale64(System.Decimal/DecCalc/Buf12&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.InternalRound(System.Decimal/DecCalc&, System.UInt32, System.MidpointRounding) +System.Private.CoreLib.dll:System.Decimal/DecCalc.OverflowUnscale(System.Decimal/DecCalc/Buf12&, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Decimal/DecCalc.Pow5(System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.RoundShiftRightEven(System.UInt128, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.ScaleResult(System.Decimal/DecCalc/Buf24*, System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.SearchScale(System.UInt64, System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.set_High(System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Low(System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Low64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Mid(System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.Unscale(System.UInt32&, System.UInt64&, System.Int32&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarCyFromDec(System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecCmp(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecCmpSub(System.Decimal&, System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecDiv(System.Decimal/DecCalc&, System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromFloat`1(TNumber, out System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromR4(System.Single, out System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromR8(System.Double, out System.Decimal/DecCalc&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecMul(System.Decimal/DecCalc&, System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarR4FromDec(System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarR8FromDec(System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 System.Decimal/DecCalc/Buf16::High96 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 System.Decimal/DecCalc/Buf16::Low96 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.get_High64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.set_High64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.set_Low64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.get_High64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.set_High64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.set_Low64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24 System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_High64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_Low64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_Mid64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl..ctor(System.UInt32, System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl[] System.Decimal/DecCalc::PowerOvflValues System.Private.CoreLib.dll:System.DefaultBinder System.Private.CoreLib.dll:System.DefaultBinder System.DefaultBinder::Instance System.Private.CoreLib.dll:System.DefaultBinder..cctor() @@ -5372,47 +5457,74 @@ System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/ System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/Primitives::UInt32 System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/Primitives::UInt64 System.Private.CoreLib.dll:System.Delegate +System.Private.CoreLib.dll:System.Delegate System.Delegate/Wrapper::Value System.Private.CoreLib.dll:System.Delegate System.Threading.CancellationTokenSource/CallbackNode::Callback System.Private.CoreLib.dll:System.Delegate System.Threading.Tasks.Task::m_action System.Private.CoreLib.dll:System.Delegate System.Threading.Thread/StartHelper::_start -System.Private.CoreLib.dll:System.Delegate.g____PInvoke|19_0(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags) -System.Private.CoreLib.dll:System.Delegate.g____PInvoke|32_0(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.g____PInvoke|34_0(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Delegate/BindToMethodDetails*) +System.Private.CoreLib.dll:System.Delegate.g____PInvoke|39_0(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, System.Delegate/BindToMethodDetails*) System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Runtime.CompilerServices.MethodTable*, System.IntPtr) System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Object, System.IRuntimeMethodInfo, System.RuntimeType, System.DelegateBindingFlags) -System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags) +System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags, System.Runtime.CompilerServices.ObjectHandleOnStack, out System.Delegate/BindToMethodDetails&) System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) -System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) +System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) +System.Private.CoreLib.dll:System.Delegate.CtorClosed(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorClosedStatic(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleClosedStatic(System.Object, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleOpen(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleVirtualDispatch(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorOpen(System.Object, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorRTClosed(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorVirtualDispatch(System.Object, System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.Delegate.DelegateConstruct(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.DeleteFromInvocationList(System.ReadOnlySpan`1, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Delegate.EnumerateInvocationList`1(TDelegate) System.Private.CoreLib.dll:System.Delegate.Equals(System.Object) -System.Private.CoreLib.dll:System.Delegate.FindMethodHandle() -System.Private.CoreLib.dll:System.Delegate.FindMethodHandle(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.get_HasSingleTarget() +System.Private.CoreLib.dll:System.Delegate.get_IsClosed() +System.Private.CoreLib.dll:System.Delegate.get_IsUnmanagedFunctionPtr() System.Private.CoreLib.dll:System.Delegate.get_Method() +System.Private.CoreLib.dll:System.Delegate.get_MethodDesc() System.Private.CoreLib.dll:System.Delegate.GetHashCode() System.Private.CoreLib.dll:System.Delegate.GetInvokeMethod() System.Private.CoreLib.dll:System.Delegate.GetInvokeMethod(System.Runtime.CompilerServices.MethodTable*) +System.Private.CoreLib.dll:System.Delegate.GetMethodDesc() +System.Private.CoreLib.dll:System.Delegate.GetMethodDesc(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.GetMethodImpl() +System.Private.CoreLib.dll:System.Delegate.GetMethodImplUncached() System.Private.CoreLib.dll:System.Delegate.GetMulticastInvoke() System.Private.CoreLib.dll:System.Delegate.GetMulticastInvoke(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.GetMulticastInvokeSlow(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.GetTargetForSingleCastInstanceDelegate() System.Private.CoreLib.dll:System.Delegate.InitializeVirtualCallStub(System.IntPtr) System.Private.CoreLib.dll:System.Delegate.InitializeVirtualCallStub(System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.InternalAlloc(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.InternalAlloc(System.RuntimeType) -System.Private.CoreLib.dll:System.Delegate.InternalEqualMethodHandles(System.Delegate, System.Delegate) -System.Private.CoreLib.dll:System.Delegate.InternalEqualMethodHandles(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.InternalEqualTypes(System.Object, System.Object) +System.Private.CoreLib.dll:System.Delegate.NewMulticastDelegate(System.Delegate/Wrapper[], System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Delegate.op_Equality(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.Remove(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.RemoveImpl(System.Delegate) +System.Private.CoreLib.dll:System.Delegate.ThrowNullThisInDelegateToInstance() +System.Private.CoreLib.dll:System.Delegate.TryGetAt(System.Int32) +System.Private.CoreLib.dll:System.Delegate.TryGetInvocations(out System.ReadOnlySpan`1&) +System.Private.CoreLib.dll:System.Delegate.TrySetSlot(System.Delegate&, System.Delegate) +System.Private.CoreLib.dll:System.Delegate/BindToMethodDetails System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1 System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1..ctor(System.MulticastDelegate) System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.get_Current() System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.GetEnumerator() System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.MoveNext() +System.Private.CoreLib.dll:System.Delegate/Wrapper +System.Private.CoreLib.dll:System.Delegate/Wrapper..ctor(System.Delegate) +System.Private.CoreLib.dll:System.Delegate/Wrapper.Equals(System.Delegate/Wrapper) +System.Private.CoreLib.dll:System.Delegate/Wrapper.Equals(System.Object) +System.Private.CoreLib.dll:System.Delegate/Wrapper.GetHashCode() System.Private.CoreLib.dll:System.DelegateBindingFlags System.Private.CoreLib.dll:System.DelegateBindingFlags System.DelegateBindingFlags::CaselessMatching System.Private.CoreLib.dll:System.DelegateBindingFlags System.DelegateBindingFlags::ClosedDelegateOnly @@ -5639,20 +5751,6 @@ System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource System.Diagnostics.Tracing.NativeRuntimeEventSource::Log System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource..cctor() System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource..ctor() -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.IntPtr, System.IntPtr, System.UInt64) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStart(System.Threading.Lock) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStop(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStop(System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogContentionStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.IntPtr, System.IntPtr, System.UInt64) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogContentionStop(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogWaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.IntPtr, System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogWaitHandleWaitStop(System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.IntPtr, System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.Object) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStop(System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::Managed -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::Native System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::MonitorWait System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::Unknown @@ -5678,9 +5776,11 @@ System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatingPointIeee754.PositiveInfinity() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Double System.NotFiniteNumberException::_offendingNumber +System.Private.CoreLib.dll:System.Double System.Number/SqrtCoefficients::C System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_date System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_r8 System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.NFloat::_value @@ -5706,9 +5806,11 @@ System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalDays() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalHours() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalMilliseconds() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalSeconds() +System.Private.CoreLib.dll:System.Double.Abs(System.Double) System.Private.CoreLib.dll:System.Double.CompareTo(System.Double) System.Private.CoreLib.dll:System.Double.CompareTo(System.Object) System.Private.CoreLib.dll:System.Double.ConvertToIntegerNative`1(System.Double) +System.Private.CoreLib.dll:System.Double.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Double.CreateDouble(System.Boolean, System.UInt16, System.UInt64) System.Private.CoreLib.dll:System.Double.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Double.CreateTruncating`1(TOther) @@ -5717,14 +5819,19 @@ System.Private.CoreLib.dll:System.Double.Equals(System.Object) System.Private.CoreLib.dll:System.Double.GetHashCode() System.Private.CoreLib.dll:System.Double.GetTypeCode() System.Private.CoreLib.dll:System.Double.IsFinite(System.Double) +System.Private.CoreLib.dll:System.Double.IsInfinity(System.Double) +System.Private.CoreLib.dll:System.Double.IsInteger(System.Double) System.Private.CoreLib.dll:System.Double.IsNaN(System.Double) System.Private.CoreLib.dll:System.Double.IsNaNOrZero(System.Double) System.Private.CoreLib.dll:System.Double.IsNegative(System.Double) +System.Private.CoreLib.dll:System.Double.IsOddInteger(System.Double) System.Private.CoreLib.dll:System.Double.IsZero(System.Double) +System.Private.CoreLib.dll:System.Double.Log2(System.Double) System.Private.CoreLib.dll:System.Double.Max(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.Min(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_Equality(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_GreaterThan(System.Double, System.Double) +System.Private.CoreLib.dll:System.Double.op_GreaterThanOrEqual(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_Inequality(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_LessThan(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_LessThanOrEqual(System.Double, System.Double) @@ -5774,15 +5881,20 @@ System.Private.CoreLib.dll:System.Double.System.IConvertible.ToUInt64(System.IFo System.Private.CoreLib.dll:System.Double.System.Numerics.IAdditionOperators.op_Addition(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Double, System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.IDivisionOperators.op_Division(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NaN() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NegativeInfinity() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NegativeZero() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_PositiveInfinity() System.Private.CoreLib.dll:System.Double.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Double.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Double.System.Numerics.IMultiplyOperators.op_Multiply(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.IsZero(System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertToChecked`1(System.Double, out TOther&) @@ -5793,6 +5905,7 @@ System.Private.CoreLib.dll:System.Double.System.Numerics.IUnaryNegationOperators System.Private.CoreLib.dll:System.Double.ToString() System.Private.CoreLib.dll:System.Double.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Double.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Double.Truncate(System.Double) System.Private.CoreLib.dll:System.Double.TryConvertFrom`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.TryConvertTo`1(System.Double, out TOther&) System.Private.CoreLib.dll:System.Double.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -6264,11 +6377,6 @@ System.Private.CoreLib.dll:System.GC/GC_ALLOC_FLAGS System.GC/GC_ALLOC_FLAGS::GC System.Private.CoreLib.dll:System.GC/GC_ALLOC_FLAGS System.GC/GC_ALLOC_FLAGS::GC_ALLOC_ZEROING_OPTIONAL System.Private.CoreLib.dll:System.GC/GCHeapHardLimitInfo System.Private.CoreLib.dll:System.GCGenerationInfo -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo0 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo1 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo2 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo3 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo4 System.Private.CoreLib.dll:System.GCKind System.Private.CoreLib.dll:System.GCKind System.GCKind::Any System.Private.CoreLib.dll:System.GCKind System.GCKind::Background @@ -7205,11 +7313,12 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globaliz System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::InvariantInfo() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..cctor() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData) -System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|58_0(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|60_0(System.IFormatProvider) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|167_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|166_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|165_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.AllowHyphenDuringParsing() +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CreateUtf8Cache(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyGroupSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencySymbolTChar`1() @@ -7232,6 +7341,7 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PercentPosi System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetFormat(System.Type) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetUtf8Span(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.InitializeInvariantAndNegativeSignFlags() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NaNSymbolTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NegativeInfinitySymbolTChar`1() @@ -7257,7 +7367,6 @@ System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalizatio System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowLeadingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowParentheses System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowThousands -System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingInvalidCharacters System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingSign System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::Any @@ -7627,6 +7736,7 @@ System.Private.CoreLib.dll:System.Guid.TryFormatCore`1(System.Span`1, out System.Private.CoreLib.dll:System.Guid.TryFormatX`1(System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Half System.Private.CoreLib.dll:System.Half System.Half::MaxValue() +System.Private.CoreLib.dll:System.Half System.Half::MinValue() System.Private.CoreLib.dll:System.Half System.Half::NaN() System.Private.CoreLib.dll:System.Half System.Half::NegativeInfinity() System.Private.CoreLib.dll:System.Half System.Half::NegativeZero() @@ -7638,6 +7748,7 @@ System.Private.CoreLib.dll:System.Half..ctor(System.UInt16) System.Private.CoreLib.dll:System.Half.AreZero(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.CompareTo(System.Half) System.Private.CoreLib.dll:System.Half.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Half.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Half.CreateDoubleNaN(System.Boolean, System.UInt64) System.Private.CoreLib.dll:System.Half.CreateHalfNaN(System.Boolean, System.UInt64) System.Private.CoreLib.dll:System.Half.CreateSaturating`1(TOther) @@ -7648,6 +7759,7 @@ System.Private.CoreLib.dll:System.Half.ExtractBiasedExponentFromBits(System.UInt System.Private.CoreLib.dll:System.Half.ExtractTrailingSignificandFromBits(System.UInt16) System.Private.CoreLib.dll:System.Half.get_BiasedExponent() System.Private.CoreLib.dll:System.Half.get_MaxValue() +System.Private.CoreLib.dll:System.Half.get_MinValue() System.Private.CoreLib.dll:System.Half.get_NaN() System.Private.CoreLib.dll:System.Half.get_NegativeInfinity() System.Private.CoreLib.dll:System.Half.get_NegativeZero() @@ -7655,12 +7767,16 @@ System.Private.CoreLib.dll:System.Half.get_One() System.Private.CoreLib.dll:System.Half.get_PositiveInfinity() System.Private.CoreLib.dll:System.Half.get_TrailingSignificand() System.Private.CoreLib.dll:System.Half.get_Zero() +System.Private.CoreLib.dll:System.Half.GetCompareKey(System.UInt16) System.Private.CoreLib.dll:System.Half.GetHashCode() System.Private.CoreLib.dll:System.Half.IsFinite(System.Half) +System.Private.CoreLib.dll:System.Half.IsInfinity(System.Half) System.Private.CoreLib.dll:System.Half.IsNaN(System.Half) System.Private.CoreLib.dll:System.Half.IsNaNOrZero(System.Half) System.Private.CoreLib.dll:System.Half.IsNegative(System.Half) +System.Private.CoreLib.dll:System.Half.IsOddInteger(System.Half) System.Private.CoreLib.dll:System.Half.IsZero(System.Half) +System.Private.CoreLib.dll:System.Half.Log2(System.Half) System.Private.CoreLib.dll:System.Half.NormSubnormalF16Sig(System.UInt32) System.Private.CoreLib.dll:System.Half.op_Addition(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) @@ -7671,6 +7787,12 @@ System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_Division(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Equality(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Explicit(System.Char) => System.Half System.Private.CoreLib.dll:System.Half.op_Explicit(System.Decimal) => System.Half @@ -7707,6 +7829,7 @@ System.Private.CoreLib.dll:System.Half.op_Implicit(System.SByte) => System.Half System.Private.CoreLib.dll:System.Half.op_Inequality(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_LessThan(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_LessThanOrEqual(System.Half, System.Half) +System.Private.CoreLib.dll:System.Half.op_Multiply(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Subtraction(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_UnaryNegation(System.Half) System.Private.CoreLib.dll:System.Half.RoundPackToHalf(System.Boolean, System.Int16, System.UInt16) @@ -7739,8 +7862,10 @@ System.Private.CoreLib.dll:System.Half.System.IBinaryFloatParseAndFormatInfo.get_ZeroBits() System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Half, System.Half) +System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.IsZero(System.Half) +System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertToChecked`1(System.Half, out TOther&) @@ -7849,6 +7974,42 @@ System.Private.CoreLib.dll:System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.ICustomFormatter System.Private.CoreLib.dll:System.ICustomFormatter.Format(System.String, System.Object, System.IFormatProvider) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2 +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.ConvertToExponent(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.CountDigits(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.DivRemPow10(TValue, System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_BufferLength() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_ExponentBias() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G0G1Mask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxSignificand() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MinExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NaN() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NaNMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NegativeInfinity() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_PositiveInfinity() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_Precision() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_SignMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_Zero() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsFinite(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNaN(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNegative(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNegativeInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsPositiveInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.Power10(System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.ToDecStr(TValue) System.Private.CoreLib.dll:System.IDisposable System.Private.CoreLib.dll:System.IDisposable.Dispose() System.Private.CoreLib.dll:System.IEquatable`1 @@ -7865,6 +8026,7 @@ System.Private.CoreLib.dll:System.Index System.Range::k__BackingField System.Private.CoreLib.dll:System.Index System.Range::k__BackingField System.Private.CoreLib.dll:System.Index System.Range::End() System.Private.CoreLib.dll:System.Index System.Range::Start() +System.Private.CoreLib.dll:System.Index..ctor(System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Index..ctor(System.Int32) System.Private.CoreLib.dll:System.Index.Equals(System.Index) System.Private.CoreLib.dll:System.Index.Equals(System.Object) @@ -7897,8 +8059,10 @@ System.Private.CoreLib.dll:System.Int128 System.Int128::Zero() System.Private.CoreLib.dll:System.Int128..ctor(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.Int128.CompareTo(System.Int128) System.Private.CoreLib.dll:System.Int128.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int128.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int128.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int128.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int128.DivRem(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.Equals(System.Int128) System.Private.CoreLib.dll:System.Int128.Equals(System.Object) System.Private.CoreLib.dll:System.Int128.get_MaxValue() @@ -7907,7 +8071,11 @@ System.Private.CoreLib.dll:System.Int128.get_One() System.Private.CoreLib.dll:System.Int128.get_Zero() System.Private.CoreLib.dll:System.Int128.GetHashCode() System.Private.CoreLib.dll:System.Int128.IsNegative(System.Int128) +System.Private.CoreLib.dll:System.Int128.IsOddInteger(System.Int128) System.Private.CoreLib.dll:System.Int128.IsPositive(System.Int128) +System.Private.CoreLib.dll:System.Int128.LeadingZeroCount(System.Int128) +System.Private.CoreLib.dll:System.Int128.LeadingZeroCountAsInt32(System.Int128) +System.Private.CoreLib.dll:System.Int128.Log2(System.Int128) System.Private.CoreLib.dll:System.Int128.op_Addition(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_BitwiseAnd(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_BitwiseOr(System.Int128, System.Int128) @@ -7920,7 +8088,14 @@ System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Single) +System.Private.CoreLib.dll:System.Int128.op_Division(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Equality(System.Int128, System.Int128) +System.Private.CoreLib.dll:System.Int128.op_ExclusiveOr(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Decimal) => System.Int128 System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Double) => System.Int128 System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Int128) => System.Byte @@ -7959,6 +8134,7 @@ System.Private.CoreLib.dll:System.Int128.op_LessThan(System.Int128, System.Int12 System.Private.CoreLib.dll:System.Int128.op_LessThanOrEqual(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Multiply(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_OnesComplement(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_RightShift(System.Int128, System.Int32) System.Private.CoreLib.dll:System.Int128.op_Subtraction(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_UnaryNegation(System.Int128) System.Private.CoreLib.dll:System.Int128.op_UnsignedRightShift(System.Int128, System.Int32) @@ -7970,9 +8146,12 @@ System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.IsGreaterThanAsUnsigned(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy10(System.Int128) System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy16(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsFinite(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsInfinity(System.Int128) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsNaN(System.Int128) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsZero(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int128, out TOther&) @@ -7981,6 +8160,7 @@ System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -7993,6 +8173,7 @@ System.Private.CoreLib.dll:System.Int16 System.Guid::_c System.Private.CoreLib.dll:System.Int16 System.Int16::m_value System.Private.CoreLib.dll:System.Int16 System.Int16::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token @@ -8031,13 +8212,18 @@ System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1::_tok System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_token System.Private.CoreLib.dll:System.Int16.CompareTo(System.Int16) System.Private.CoreLib.dll:System.Int16.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int16.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int16.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int16.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int16.DivRem(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Equals(System.Int16) System.Private.CoreLib.dll:System.Int16.Equals(System.Object) System.Private.CoreLib.dll:System.Int16.GetHashCode() System.Private.CoreLib.dll:System.Int16.GetTypeCode() System.Private.CoreLib.dll:System.Int16.IsNegative(System.Int16) +System.Private.CoreLib.dll:System.Int16.IsOddInteger(System.Int16) +System.Private.CoreLib.dll:System.Int16.LeadingZeroCount(System.Int16) +System.Private.CoreLib.dll:System.Int16.Log2(System.Int16) System.Private.CoreLib.dll:System.Int16.Max(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Min(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -8067,31 +8253,41 @@ System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.System.Numerics.IAdditionOperators.op_Addition(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_LessThan(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IDivisionOperators.op_Division(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IEqualityOperators.op_Equality(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IEqualityOperators.op_Inequality(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int16.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int16.System.Numerics.IMultiplyOperators.op_Multiply(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsFinite(System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsInfinity(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsNaN(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsZero(System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.IShiftOperators.op_LeftShift(System.Int16, System.Int32) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IShiftOperators.op_RightShift(System.Int16, System.Int32) System.Private.CoreLib.dll:System.Int16.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int16) System.Private.CoreLib.dll:System.Int16.ToString() System.Private.CoreLib.dll:System.Int16.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Int16.TryConvertFromChecked`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryConvertFromSaturating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryConvertFromTruncating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -8243,6 +8439,7 @@ System.Private.CoreLib.dll:System.Int32 System.Decimal::_flags System.Private.CoreLib.dll:System.Int32 System.Decimal/DecCalc::Scale() System.Private.CoreLib.dll:System.Int32 System.DefaultBinder/BinderState::_originalSize System.Private.CoreLib.dll:System.Int32 System.DefaultBinder/Primitives::value__ +System.Private.CoreLib.dll:System.Int32 System.Delegate/BindToMethodDetails::selfReferentialTarget System.Private.CoreLib.dll:System.Int32 System.Delegate/InvocationListEnumerator`1::_index System.Private.CoreLib.dll:System.Int32 System.DelegateBindingFlags::value__ System.Private.CoreLib.dll:System.Int32 System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes::value__ @@ -8437,6 +8634,14 @@ System.Private.CoreLib.dll:System.Int32 System.IBinaryFloatParseAndFormatInfo`1: System.Private.CoreLib.dll:System.Int32 System.IBinaryFloatParseAndFormatInfo`1::OverflowDecimalExponent() System.Private.CoreLib.dll:System.Int32 System.IBinaryIntegerParseAndFormatInfo`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.IBinaryIntegerParseAndFormatInfo`1::MaxHexDigitCount() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::BufferLength() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MinExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::Precision() System.Private.CoreLib.dll:System.Int32 System.Index::_value System.Private.CoreLib.dll:System.Int32 System.Index::Value() System.Private.CoreLib.dll:System.Int32 System.Int128::System.IBinaryIntegerParseAndFormatInfo.MaxDigitCount() @@ -8448,6 +8653,7 @@ System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParse System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParseAndFormatInfo.MaxHexDigitCount() System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int32 System.Int64::System.IBinaryIntegerParseAndFormatInfo.MaxDigitCount() @@ -8498,12 +8704,40 @@ System.Private.CoreLib.dll:System.Int32 System.Memory`1::Length() System.Private.CoreLib.dll:System.Int32 System.MidpointRounding::value__ System.Private.CoreLib.dll:System.Int32 System.Number/BigInteger::_length System.Private.CoreLib.dll:System.Int32 System.Number/BinaryParser`1::MaxDigitCount() +System.Private.CoreLib.dll:System.Int32 System.Number/DecimalIeee754ToIntegerStatus::value__ +System.Private.CoreLib.dll:System.Int32 System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Number/DecodedDecimalIeee754`1::UnbiasedExponent() System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp::e +System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp128::_exponent System.Private.CoreLib.dll:System.Int32 System.Number/HexParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/IHexOrBinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::DigitsCount System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::Scale System.Private.CoreLib.dll:System.Int32 System.Number/ParsingStatus::value__ +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.Precision() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.Precision() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.Precision() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector::Alignment() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector`1::Count() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector`1::System.Runtime.Intrinsics.ISimdVector,T>.Alignment() @@ -8613,6 +8847,7 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::Generic System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_maxCacheSize @@ -8780,7 +9015,6 @@ System.Private.CoreLib.dll:System.Int32 System.Threading.AbandonedMutexException System.Private.CoreLib.dll:System.Int32 System.Threading.CancellationTokenSource/States::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.EventResetMode::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::_owningThreadId -System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::OwningThreadId() System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::s_staticsInitializationStage System.Private.CoreLib.dll:System.Int32 System.Threading.Lock/Scope::_currentThreadId System.Private.CoreLib.dll:System.Int32 System.Threading.Lock/StaticsInitializationStage::value__ @@ -8900,11 +9134,14 @@ System.Private.CoreLib.dll:System.Int32.CompareTo(System.Object) System.Private.CoreLib.dll:System.Int32.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int32.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int32.DivRem(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Equals(System.Int32) System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.IsOddInteger(System.Int32) +System.Private.CoreLib.dll:System.Int32.LeadingZeroCount(System.Int32) System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) @@ -8935,26 +9172,35 @@ System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int32.System.Numerics.IAdditionOperators.op_Addition(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_LessThan(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IDivisionOperators.op_Division(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IEqualityOperators.op_Equality(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IEqualityOperators.op_Inequality(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int32.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int32.System.Numerics.IMultiplyOperators.op_Multiply(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsFinite(System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsInfinity(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsNaN(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsZero(System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.IShiftOperators.op_LeftShift(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IShiftOperators.op_RightShift(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int32) System.Private.CoreLib.dll:System.Int32.ToString() @@ -9055,6 +9301,7 @@ System.Private.CoreLib.dll:System.Int64 System.Globalization.PersianCalendar::s_ System.Private.CoreLib.dll:System.Int64 System.Int64::m_value System.Private.CoreLib.dll:System.Int64 System.Int64::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int64 System.IO.FileStream::Length() @@ -9112,13 +9359,18 @@ System.Private.CoreLib.dll:System.Int64 System.TimeZoneInfo/DateTimeNowCache::_n System.Private.CoreLib.dll:System.Int64 System.TimeZoneInfo/DateTimeNowCache::_nowUtcOffsetTicks System.Private.CoreLib.dll:System.Int64.CompareTo(System.Int64) System.Private.CoreLib.dll:System.Int64.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int64.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int64.DivRem(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Equals(System.Int64) System.Private.CoreLib.dll:System.Int64.Equals(System.Object) System.Private.CoreLib.dll:System.Int64.GetHashCode() System.Private.CoreLib.dll:System.Int64.GetTypeCode() System.Private.CoreLib.dll:System.Int64.IsNegative(System.Int64) +System.Private.CoreLib.dll:System.Int64.IsOddInteger(System.Int64) +System.Private.CoreLib.dll:System.Int64.LeadingZeroCount(System.Int64) +System.Private.CoreLib.dll:System.Int64.Log2(System.Int64) System.Private.CoreLib.dll:System.Int64.Max(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Min(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -9148,32 +9400,42 @@ System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.System.Numerics.IAdditionOperators.op_Addition(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_LessThan(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IDivisionOperators.op_Division(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IEqualityOperators.op_Equality(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IEqualityOperators.op_Inequality(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int64.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int64.System.Numerics.IMultiplyOperators.op_Multiply(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsFinite(System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsInfinity(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsNaN(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsZero(System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.IShiftOperators.op_LeftShift(System.Int64, System.Int32) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IShiftOperators.op_RightShift(System.Int64, System.Int32) System.Private.CoreLib.dll:System.Int64.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int64) System.Private.CoreLib.dll:System.Int64.ToString() System.Private.CoreLib.dll:System.Int64.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.ToString(System.String) +System.Private.CoreLib.dll:System.Int64.TryConvertFromChecked`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryConvertFromSaturating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryConvertFromTruncating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -9189,19 +9451,24 @@ System.Private.CoreLib.dll:System.IntPtr System.ArgIterator::_argPtr System.Private.CoreLib.dll:System.IntPtr System.ArgIterator/SigPointer::_ptr System.Private.CoreLib.dll:System.IntPtr System.ComAwareWeakReference::_weakHandle System.Private.CoreLib.dll:System.IntPtr System.ComAwareWeakReference/ComInfo::_pComWeakRef +System.Private.CoreLib.dll:System.IntPtr System.Delegate::_extraData System.Private.CoreLib.dll:System.IntPtr System.Delegate::_methodPtr System.Private.CoreLib.dll:System.IntPtr System.Delegate::_methodPtrAux +System.Private.CoreLib.dll:System.IntPtr System.Delegate::UnmanagedMarker +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::extraData +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::methodPtr +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::methodPtrAux System.Private.CoreLib.dll:System.IntPtr System.Diagnostics.Tracing.EventSource::m_writeEventStringEventHandle System.Private.CoreLib.dll:System.IntPtr System.Exception::_xptrs System.Private.CoreLib.dll:System.IntPtr System.IntPtr::_value System.Private.CoreLib.dll:System.IntPtr System.IntPtr::MaxValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::MinValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::Zero System.Private.CoreLib.dll:System.IntPtr System.IO.Enumeration.FileSystemEnumerator`1::_directoryHandle -System.Private.CoreLib.dll:System.IntPtr System.MulticastDelegate::_invocationCount System.Private.CoreLib.dll:System.IntPtr System.Reflection.ConstArray::m_constArray System.Private.CoreLib.dll:System.IntPtr System.Reflection.ConstArray::Signature() System.Private.CoreLib.dll:System.IntPtr System.Reflection.FieldAccessor::_addressOrOffset @@ -9282,7 +9549,6 @@ System.Private.CoreLib.dll:System.IntPtr System.RuntimeType::m_cache System.Private.CoreLib.dll:System.IntPtr System.RuntimeType::m_handle System.Private.CoreLib.dll:System.IntPtr System.RuntimeTypeHandle::Value() System.Private.CoreLib.dll:System.IntPtr System.Threading.AutoreleasePool::s_AutoreleasePoolInstance -System.Private.CoreLib.dll:System.IntPtr System.Threading.Lock::LockIdForEvents() System.Private.CoreLib.dll:System.IntPtr System.Threading.LowLevelMonitor::_nativeMonitor System.Private.CoreLib.dll:System.IntPtr System.Threading.Thread::_DONT_USE_InternalThread System.Private.CoreLib.dll:System.IntPtr System.Threading.Thread/DirectOnThreadLocalData::pNativeThread @@ -9296,8 +9562,10 @@ System.Private.CoreLib.dll:System.IntPtr..ctor(System.Int64) System.Private.CoreLib.dll:System.IntPtr..ctor(System.Void*) System.Private.CoreLib.dll:System.IntPtr.CompareTo(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.CompareTo(System.Object) +System.Private.CoreLib.dll:System.IntPtr.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.IntPtr.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.IntPtr.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.IntPtr.DivRem(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Equals(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Equals(System.Object) System.Private.CoreLib.dll:System.IntPtr.get_MaxValue() @@ -9305,29 +9573,41 @@ System.Private.CoreLib.dll:System.IntPtr.get_MinValue() System.Private.CoreLib.dll:System.IntPtr.get_Size() System.Private.CoreLib.dll:System.IntPtr.GetHashCode() System.Private.CoreLib.dll:System.IntPtr.IsNegative(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.IsOddInteger(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.LeadingZeroCount(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.Log2(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Max(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Min(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.op_Equality(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.op_Inequality(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IAdditionOperators.op_Addition(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_OnesComplement(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_GreaterThan(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_LessThan(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IDivisionOperators.op_Division(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMultiplyOperators.op_Multiply(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsFinite(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsInfinity(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsNaN(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsZero(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToChecked`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToSaturating`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToTruncating`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IShiftOperators.op_LeftShift(System.IntPtr, System.Int32) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IShiftOperators.op_RightShift(System.IntPtr, System.Int32) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.ISubtractionOperators.op_Subtraction(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.ToInt64() @@ -9335,6 +9615,7 @@ System.Private.CoreLib.dll:System.IntPtr.ToPointer() System.Private.CoreLib.dll:System.IntPtr.ToString() System.Private.CoreLib.dll:System.IntPtr.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.IntPtr.ToString(System.String) +System.Private.CoreLib.dll:System.IntPtr.TryConvertFromChecked`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryConvertFromSaturating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryConvertFromTruncating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -9780,6 +10061,7 @@ System.Private.CoreLib.dll:System.IO.RandomAccess.ReadScatterAtOffset(Microsoft. System.Private.CoreLib.dll:System.IO.RandomAccess.ShouldFallBackToNonOffsetSyscall(Interop/ErrorInfo) System.Private.CoreLib.dll:System.IO.RandomAccess.ValidateInput(Microsoft.Win32.SafeHandles.SafeFileHandle, System.Int64, System.Boolean) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlySpan`1, System.Int64) +System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlySpan`1, System.Int64&) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffsetAsync(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlyMemory`1, System.Int64, System.Threading.CancellationToken, System.IO.Strategies.OSFileStreamStrategy) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteGatherAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.Collections.Generic.IReadOnlyList`1>, System.Int64) System.Private.CoreLib.dll:System.IO.SearchOption @@ -10046,7 +10328,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value -System.Private.CoreLib.dll:System.IRuntimeMethodInfo.get_Value() +System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable System.Private.CoreLib.dll:System.ISpanFormattable.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.IUtf8SpanFormattable @@ -10079,8 +10361,8 @@ System.Private.CoreLib.dll:System.Marvin.ComputeHash32OrdinalIgnoreCaseSlow(Syst System.Private.CoreLib.dll:System.Marvin.GenerateSeed() System.Private.CoreLib.dll:System.Marvin.get_DefaultSeed() System.Private.CoreLib.dll:System.Math -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|47_0(System.UInt64, System.UInt64, out System.UInt64&) -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|53_0(System.Double, System.Double) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|45_0(System.UInt64, System.UInt64, out System.UInt64&) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|51_0(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Int32) System.Private.CoreLib.dll:System.Math.Abs(System.Single) @@ -10095,10 +10377,18 @@ System.Private.CoreLib.dll:System.Math.ConvertToUInt32Checked(System.Double) System.Private.CoreLib.dll:System.Math.ConvertToUInt64Checked(System.Double) System.Private.CoreLib.dll:System.Math.CopySign(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Cos(System.Double) +System.Private.CoreLib.dll:System.Math.DivRem(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Math.DivRem(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Math.DivRem(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Math.DivRem(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Math.DivRem(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Math.DivRem(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.Math.DivRem(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.Math.DivRem(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.Math.DivRem(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Math.DivRem(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.Math.Floor(System.Double) +System.Private.CoreLib.dll:System.Math.Log2(System.Double) System.Private.CoreLib.dll:System.Math.Max(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Math.Max(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Max(System.Int16, System.Int16) @@ -10135,8 +10425,11 @@ System.Private.CoreLib.dll:System.Math.ThrowNegateTwosCompOverflow() System.Private.CoreLib.dll:System.Math.Truncate(System.Double) System.Private.CoreLib.dll:System.MathF System.Private.CoreLib.dll:System.MathF.Abs(System.Single) +System.Private.CoreLib.dll:System.MathF.Log2(System.Single) System.Private.CoreLib.dll:System.MathF.Max(System.Single, System.Single) System.Private.CoreLib.dll:System.MathF.Min(System.Single, System.Single) +System.Private.CoreLib.dll:System.MathF.ModF(System.Single, System.Single*) +System.Private.CoreLib.dll:System.MathF.Truncate(System.Single) System.Private.CoreLib.dll:System.MdUtf8String System.Private.CoreLib.dll:System.MdUtf8String System.RuntimeType/RuntimeTypeCache/Filter::m_name System.Private.CoreLib.dll:System.MdUtf8String..ctor(System.Byte*, System.Int32) @@ -10197,6 +10490,7 @@ System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAny`1(System.ReadOnlyS System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExcept`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExceptInRange`1(System.ReadOnlySpan`1, T, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyInRange`1(System.ReadOnlySpan`1, T, T) +System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.Max`1(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.Min`1(System.ReadOnlySpan`1) @@ -10295,29 +10589,6 @@ System.Private.CoreLib.dll:System.ModuleHandle.ResolveTypeHandle(System.Int32) System.Private.CoreLib.dll:System.ModuleHandle.ValidateModulePointer(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.MulticastDelegate System.Private.CoreLib.dll:System.MulticastDelegate System.Delegate/InvocationListEnumerator`1::_delegate -System.Private.CoreLib.dll:System.MulticastDelegate.CombineImpl(System.Delegate) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorClosed(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorClosedStatic(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleClosedStatic(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleOpened(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleVirtualDispatch(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorOpened(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorRTClosed(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorVirtualDispatch(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.DeleteFromInvocationList(System.Object[], System.Int32, System.Int32, System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.EqualInvocationLists(System.Object[], System.Object[], System.Int32, System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.Equals(System.Object) -System.Private.CoreLib.dll:System.MulticastDelegate.get_HasSingleTarget() -System.Private.CoreLib.dll:System.MulticastDelegate.GetHashCode() -System.Private.CoreLib.dll:System.MulticastDelegate.GetMethodImpl() -System.Private.CoreLib.dll:System.MulticastDelegate.InvocationListEquals(System.MulticastDelegate) -System.Private.CoreLib.dll:System.MulticastDelegate.IsUnmanagedFunctionPtr() -System.Private.CoreLib.dll:System.MulticastDelegate.NewMulticastDelegate(System.Object[], System.Int32, System.Boolean) -System.Private.CoreLib.dll:System.MulticastDelegate.NewMulticastDelegate(System.Object[], System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.RemoveImpl(System.Delegate) -System.Private.CoreLib.dll:System.MulticastDelegate.ThrowNullThisInDelegateToInstance() -System.Private.CoreLib.dll:System.MulticastDelegate.TryGetAt(System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.TrySetSlot(System.Object[], System.Int32, System.Object) System.Private.CoreLib.dll:System.MulticastNotSupportedException System.Private.CoreLib.dll:System.MulticastNotSupportedException..ctor() System.Private.CoreLib.dll:System.MulticastNotSupportedException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -10373,46 +10644,73 @@ System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String, Sy System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String) System.Private.CoreLib.dll:System.Number System.Private.CoreLib.dll:System.Number..cctor() -System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|192_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) -System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|60_0(System.Int128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|52_0(System.Int32, System.Int32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|56_0(System.Int64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|62_0(System.UInt128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|54_0(System.UInt32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|58_0(System.UInt64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__Slow|45_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) -System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|198_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|61_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|53_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|57_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|63_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|55_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|59_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|81_0(System.UInt32) +System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|560_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) +System.Private.CoreLib.dll:System.Number.g__InternalInfinityCompare|3_1`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.g__InternalUnsignedCompare|3_0`2(System.Number/DecodedDecimalIeee754`1, System.Number/DecodedDecimalIeee754`1) +System.Private.CoreLib.dll:System.Number.g__MaterializePreferredZeros|85_0`3(System.Number/NumberBuffer&, System.Span`1) +System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|416_0(System.Int128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|408_0(System.Int32, System.Int32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|412_0(System.Int64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|418_0(System.UInt128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|410_0(System.UInt32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|414_0(System.UInt64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__Slow|401_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.g__ClampExponentOverflow|9_0`2(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|566_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|417_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|409_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|413_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|419_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|411_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|415_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|437_0(System.UInt32) System.Private.CoreLib.dll:System.Number.AccumulateDecimalDigitsIntoBigInteger(System.Number/NumberBuffer&, System.UInt32, System.UInt32, out System.Number/BigInteger&) +System.Private.CoreLib.dll:System.Number.AddDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.AlignmentScaleFactor`2(System.Int32) System.Private.CoreLib.dll:System.Number.AppendUnknownChar`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) System.Private.CoreLib.dll:System.Number.AssembleFloatingPointBits`1(System.UInt64, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.CalculatePower(System.Int32) +System.Private.CoreLib.dll:System.Number.ClassifyIntegerParityDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.CompareDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.ComputeFloat`1(System.Int64, System.UInt64) System.Private.CoreLib.dll:System.Number.ComputeProductApproximation(System.Int32, System.Int64, System.UInt64) System.Private.CoreLib.dll:System.Number.ConsumeTrailingNulls`1(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.ConvertBigIntegerToFloatingPointBits`1(System.Number/BigInteger&, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754`4(TSourceValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToDecimal`2(TValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToFloat`3(TValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToInteger`3(TValue, System.Boolean) +System.Private.CoreLib.dll:System.Number.ConvertDecimalToDecimalIeee754`2(System.Decimal) +System.Private.CoreLib.dll:System.Number.ConvertFloatToDecimalIeee754`3(TFloat) +System.Private.CoreLib.dll:System.Number.ConvertIntegerToDecimalIeee754`3(TInteger) System.Private.CoreLib.dll:System.Number.CurrencyGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.DecimalIeee754FiniteNumberBinaryEncoding`2(System.Boolean, TValue, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754FromMagnitude`2(System.Boolean, System.UInt128, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754Rounding`2(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754ToIntegerMagnitude`2(TValue, out System.Boolean&, out System.UInt128&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.DecimalIeee754ToNumber`2(TValue, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.DecimalToNumber(System.Decimal&, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.DigitsToUInt32(System.Byte*, System.Int32) System.Private.CoreLib.dll:System.Number.DigitsToUInt64(System.Byte*, System.Int32) -System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.DivideDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&, out System.Boolean&) System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.DropDigits`2(TValue&, TValue&, System.Int32, System.Boolean&, out System.Int32&) +System.Private.CoreLib.dll:System.Number.EqualsDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.ExtractFractionAndBiasedExponent`1(TNumber, out System.Int32&) System.Private.CoreLib.dll:System.Number.FindSection(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.FormatCurrency`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatDecimal(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.FormatDecimalIeee754`2(TValue, System.String, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.FormatDecimalIeee754`3(System.Collections.Generic.ValueListBuilder`1&, TValue, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatExponent`1(System.Collections.Generic.ValueListBuilder`1&, System.Globalization.NumberFormatInfo, System.Int32, System.Char, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.FormatFixed`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Int32[], System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.FormatFloat`1(TNumber, System.String, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatFloat`2(System.Collections.Generic.ValueListBuilder`1&, TNumber, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatFloatingPointAsHex`2(System.Collections.Generic.ValueListBuilder`1&, TNumber, System.Char, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatGeneral`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Globalization.NumberFormatInfo, System.Char, System.Boolean) +System.Private.CoreLib.dll:System.Number.FormatGeneralAndRoundTripDecimalIeee754`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Char, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatInt128(System.Int128, System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Number.FormatInt32(System.Int32, System.Int32, System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Number.FormatInt64(System.Int64, System.String, System.IFormatProvider) @@ -10426,9 +10724,12 @@ System.Private.CoreLib.dll:System.Number.get_Pow10DoubleTable() System.Private.CoreLib.dll:System.Number.get_Pow5128Table() System.Private.CoreLib.dll:System.Number.get_TwoDigitsBytes() System.Private.CoreLib.dll:System.Number.get_TwoDigitsCharsAsBytes() +System.Private.CoreLib.dll:System.Number.GetDecimalIeee754HashCode`2(TValue) System.Private.CoreLib.dll:System.Number.GetFloatingPointMaxDigitsAndPrecision(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) System.Private.CoreLib.dll:System.Number.GetHexBase(System.Char) System.Private.CoreLib.dll:System.Number.GetTwoDigitsBytesRef(System.Boolean) +System.Private.CoreLib.dll:System.Number.GreaterThanDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.GreaterThanOrEqualDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.HasNegativeSection(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.Int128DivMod1E19(System.UInt128&) System.Private.CoreLib.dll:System.Number.Int128ToDecStr(System.Int128) @@ -10444,15 +10745,22 @@ System.Private.CoreLib.dll:System.Number.Int64ToHexChars`1(TChar*, System.UInt64 System.Private.CoreLib.dll:System.Number.Int64ToHexStr(System.Int64, System.Char, System.Int32) System.Private.CoreLib.dll:System.Number.Int64ToNumber(System.Int64, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.IsDigit(System.UInt32) +System.Private.CoreLib.dll:System.Number.IsOddIntegerDecimalIeee754`2(TValue) System.Private.CoreLib.dll:System.Number.IsSpaceReplacingChar(System.UInt32) System.Private.CoreLib.dll:System.Number.IsWhite(System.UInt32) +System.Private.CoreLib.dll:System.Number.IsZeroDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.LessThanDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.LessThanOrEqualDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.MatchChars`1(TChar*, TChar*, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.MatchNegativeSignChars`1(TChar*, TChar*, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.MultiplyDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.NegativeInt128ToDecStr(System.Int128, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NegativeInt32ToDecStr(System.Int32, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NegativeInt64ToDecStr(System.Int64, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NormalizeSpaceReplacingChar(System.UInt32) System.Private.CoreLib.dll:System.Number.NumberGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.NumberToDecimalIeee754Bits`2(System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.NumberToDecimalIeee754BitsFromWide`2(System.Boolean, TValue, TValue, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.NumberToFloat`1(System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.NumberToFloatingPointBits`1(System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.NumberToFloatingPointBitsSlow`1(System.Number/NumberBuffer&, System.UInt32, System.UInt32, System.UInt32) @@ -10464,19 +10772,27 @@ System.Private.CoreLib.dll:System.Number.ParseEightDigitsUnrolled(System.Byte*) System.Private.CoreLib.dll:System.Number.ParseFloat`2(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.ParseFormatSpecifier(System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.PercentGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.PropagateNaN`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.RightShiftWithRounding(System.UInt64, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.RoundNumber(System.Number/NumberBuffer&, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.RoundToZeroOrEpsilon`2(System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.RoundWideToSignificand`2(System.Boolean, TValue, TValue, System.Int32, System.Int32, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.RoundWideToZeroOrEpsilon`2(System.Boolean, TValue, TValue, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.ShouldRoundUp(System.Boolean, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Number.SinglePassPow10`1(out TValue&) System.Private.CoreLib.dll:System.Number.SpanEqualsOrdinalIgnoreCase`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.SpanStartsWith`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.StringComparison) System.Private.CoreLib.dll:System.Number.SpanStartsWith`1(System.ReadOnlySpan`1, TChar) System.Private.CoreLib.dll:System.Number.SpanTrimStart`1(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Number.SubtractDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.ThrowDecimalOverflowException() System.Private.CoreLib.dll:System.Number.ThrowFormatException`1(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.Number.ThrowOverflowException(System.String) System.Private.CoreLib.dll:System.Number.ThrowOverflowException`1() System.Private.CoreLib.dll:System.Number.ThrowOverflowOrFormatException`2(System.Number/ParsingStatus, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.TryCopyTo`1(System.String, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.TryFloatingPointBitsFromMantissa`1(System.UInt64, System.Int32, out System.UInt64&) System.Private.CoreLib.dll:System.Number.TryFormatDecimal`1(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.TryFormatDecimalIeee754`3(TValue, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatFloat`2(TNumber, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatInt128`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatInt32`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) @@ -10533,6 +10849,12 @@ System.Private.CoreLib.dll:System.Number.UInt64ToDecChars`1(TChar*, System.UInt6 System.Private.CoreLib.dll:System.Number.UInt64ToDecStr(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Number.UInt64ToDecStr(System.UInt64) System.Private.CoreLib.dll:System.Number.UInt64ToNumber(System.UInt64, System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.UnpackDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.WideDigitCount`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.WideDivideByPow10`1(TValue&, TValue&, TValue) +System.Private.CoreLib.dll:System.Number.WideMultiply`1(TValue, TValue, out TValue&, out TValue&) +System.Private.CoreLib.dll:System.Number.WidePow10`1(System.Int32) +System.Private.CoreLib.dll:System.Number.WriteDecimalDigits(System.UInt128, System.Span`1) System.Private.CoreLib.dll:System.Number.WriteDigits`1(System.UInt32, TChar*, System.Int32) System.Private.CoreLib.dll:System.Number.WriteFourDigits`1(System.UInt32, TChar*) System.Private.CoreLib.dll:System.Number.WriteTwoDigits`1(System.UInt32, TChar*) @@ -10569,6 +10891,7 @@ System.Private.CoreLib.dll:System.Number/BigInteger.SetValue(out System.Number/B System.Private.CoreLib.dll:System.Number/BigInteger.SetZero(out System.Number/BigInteger&) System.Private.CoreLib.dll:System.Number/BigInteger.ShiftLeft(System.Int32) System.Private.CoreLib.dll:System.Number/BigInteger.SubtractDivisor(System.Number/BigInteger&, System.Int32, System.Number/BigInteger&, System.UInt64) +System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt128() System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt32() System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt64() System.Private.CoreLib.dll:System.Number/BigInteger/BlocksBuffer @@ -10579,6 +10902,16 @@ System.Private.CoreLib.dll:System.Number/BinaryParser`1.get_MaxDigitCount() System.Private.CoreLib.dll:System.Number/BinaryParser`1.get_MaxDigitValue() System.Private.CoreLib.dll:System.Number/BinaryParser`1.IsValidChar(System.UInt32) System.Private.CoreLib.dll:System.Number/BinaryParser`1.ShiftLeftForNextDigit(TInteger) +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::Finite +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::NaN +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::NegativeInfinity +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::PositiveInfinity +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1 +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1..ctor(System.Boolean, System.Int32, TSignificand) +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_Signed() +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_Significand() +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_UnbiasedExponent() System.Private.CoreLib.dll:System.Number/DiyFp System.Private.CoreLib.dll:System.Number/DiyFp..ctor(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Number/DiyFp.Create`1(TNumber) @@ -10587,6 +10920,31 @@ System.Private.CoreLib.dll:System.Number/DiyFp.GetBoundaries(System.Int32, out S System.Private.CoreLib.dll:System.Number/DiyFp.Multiply(System.Number/DiyFp&) System.Private.CoreLib.dll:System.Number/DiyFp.Normalize() System.Private.CoreLib.dll:System.Number/DiyFp.Subtract(System.Number/DiyFp&) +System.Private.CoreLib.dll:System.Number/DiyFp128 +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxHalf +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxOne +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxThreeQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128..ctor(System.UInt32, System.Int32, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::InvTrigConstants +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::PiFractionConstants +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Exp10Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::ExpCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperCoshCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperSinhCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Log2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Pow2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::PowLog2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigCosCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigSinCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanNumeratorCoefficients System.Private.CoreLib.dll:System.Number/Grisu3 System.Private.CoreLib.dll:System.Number/Grisu3.BiggestPowerTen(System.UInt32, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Number/Grisu3.get_CachedPowersBinaryExponent() @@ -10621,6 +10979,7 @@ System.Private.CoreLib.dll:System.Number/NumberBuffer.ToString() System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBuffer::Kind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Decimal +System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::DecimalIeee754 System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::FloatingPoint System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Integer System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Unknown @@ -10628,9 +10987,13 @@ System.Private.CoreLib.dll:System.Number/ParsingStatus System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Failed System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::OK System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Overflow +System.Private.CoreLib.dll:System.Number/SqrtCoefficients +System.Private.CoreLib.dll:System.Number/SqrtCoefficients..ctor(System.Single, System.Single, System.Double) +System.Private.CoreLib.dll:System.Number/SqrtCoefficients[] System.Number::s_sqrtTable System.Private.CoreLib.dll:System.Numerics.BitOperations System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|22_0(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|23_0(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.BitOperations.FlipBit(System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.get_Log2DeBruijn() System.Private.CoreLib.dll:System.Numerics.BitOperations.get_TrailingZeroCountDeBruijn() System.Private.CoreLib.dll:System.Numerics.BitOperations.IsPow2(System.Int32) @@ -10640,6 +11003,7 @@ System.Private.CoreLib.dll:System.Numerics.BitOperations.LeadingZeroCount(System System.Private.CoreLib.dll:System.Numerics.BitOperations.LeadingZeroCount(System.UIntPtr) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UIntPtr) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2SoftwareFallback(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.PopCount(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.PopCount(System.UInt64) @@ -10649,19 +11013,459 @@ System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UInt3 System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UIntPtr, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateRight(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Numerics.BitOperations.RoundUpToPowerOf2(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.TrailingZeroCount(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.TrailingZeroCount(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::One() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128..cctor() +System.Private.CoreLib.dll:System.Numerics.Decimal128..ctor(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CompareTo(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.Equals(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeInfinityValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeZeroValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_OneValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_PositiveInfinityValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_QuietNaNValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_ZeroValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsFinite(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNaN(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNegative(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNegativeInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsOddInteger(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsPositiveInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Addition(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Division(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Equality(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Double) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Half) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Int128) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Single) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.UInt128) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_GreaterThan(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_GreaterThanOrEqual(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Byte) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Char) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Decimal) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int16) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.IntPtr) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.SByte) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt16) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UIntPtr) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Inequality(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_LessThan(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_LessThanOrEqual(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Multiply(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Subtraction(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_UnaryNegation(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt128, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal128.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryConvertFrom`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryConvertTo`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::One() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32..ctor(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CompareTo(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.Equals(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_UInt32Powers10() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsFinite(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNaN(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNegative(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNegativeInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsOddInteger(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsPositiveInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Addition(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Division(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Equality(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Decimal) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Double) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Half) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int32) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.IntPtr) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Single) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt32) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UIntPtr) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_GreaterThan(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_GreaterThanOrEqual(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Byte) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Char) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Int16) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Numerics.Decimal32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Numerics.Decimal32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.SByte) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.UInt16) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Inequality(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_LessThan(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_LessThanOrEqual(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Multiply(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Subtraction(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_UnaryNegation(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal32.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryConvertFrom`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryConvertTo`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::One() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64..ctor(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CompareTo(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.Equals(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_UInt64Powers10() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsFinite(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNaN(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNegative(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNegativeInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsOddInteger(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsPositiveInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Addition(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Division(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Equality(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Decimal) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Double) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Half) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Int128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Int64) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.IntPtr) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Single) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UInt128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UInt64) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UIntPtr) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_GreaterThan(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_GreaterThanOrEqual(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Byte) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Char) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Int16) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Int32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Numerics.Decimal64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.SByte) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.UInt16) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.UInt32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Inequality(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_LessThan(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_LessThanOrEqual(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Multiply(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Subtraction(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_UnaryNegation(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt64, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal64.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryConvertFrom`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryConvertTo`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Numerics.IAdditionOperators`3 System.Private.CoreLib.dll:System.Numerics.IAdditionOperators`3.op_Addition(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1 +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.DivRem(TSelf, TSelf) +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.GetByteCount() +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.LeadingZeroCount(TSelf) +System.Private.CoreLib.dll:System.Numerics.IBinaryNumber`1 +System.Private.CoreLib.dll:System.Numerics.IBinaryNumber`1.Log2(TSelf) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3 System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_BitwiseAnd(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_BitwiseOr(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_ExclusiveOr(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_OnesComplement(TSelf) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3 System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_GreaterThan(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_GreaterThanOrEqual(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_LessThan(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_LessThanOrEqual(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IDivisionOperators`3 +System.Private.CoreLib.dll:System.Numerics.IDivisionOperators`3.op_Division(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3 System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3.op_Equality(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3.op_Inequality(TSelf, TOther) @@ -10673,16 +11477,23 @@ System.Private.CoreLib.dll:System.Numerics.IFloatingPointIeee754`1.get_NegativeZ System.Private.CoreLib.dll:System.Numerics.IFloatingPointIeee754`1.get_PositiveInfinity() System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1 System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.IMultiplyOperators`3 +System.Private.CoreLib.dll:System.Numerics.IMultiplyOperators`3.op_Multiply(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.INumber`1 System.Private.CoreLib.dll:System.Numerics.INumberBase`1 +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.get_One() System.Private.CoreLib.dll:System.Numerics.INumberBase`1.get_Zero() System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsFinite(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsInfinity(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsNaN(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsNegative(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsOddInteger(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsZero(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromChecked`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromSaturating`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromTruncating`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToChecked`1(TSelf, out TOther&) @@ -10690,6 +11501,7 @@ System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToSaturating` System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToTruncating`1(TSelf, out TOther&) System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3 System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3.op_LeftShift(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3.op_RightShift(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.ISubtractionOperators`3 System.Private.CoreLib.dll:System.Numerics.ISubtractionOperators`3.op_Subtraction(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IUnaryNegationOperators`2 @@ -10735,12 +11547,15 @@ System.Private.CoreLib.dll:System.Numerics.Vector`1.GetHashCode() System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector`1, System.Numerics.Vector`1) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Division(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector`1) => System.Numerics.Vector`1 System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_LeftShift(System.Numerics.Vector`1, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector`1) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_RightShift(System.Numerics.Vector`1, System.Int32) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Numerics.Vector`1, System.Numerics.Vector`1, System.Numerics.Vector`1) @@ -10791,7 +11606,6 @@ System.Private.CoreLib.dll:System.Object System.Exception/DispatchState::StackTr System.Private.CoreLib.dll:System.Object System.IAsyncResult::AsyncState() System.Private.CoreLib.dll:System.Object System.IO.Enumeration.FileSystemEnumerator`1::_lock System.Private.CoreLib.dll:System.Object System.Memory`1::_object -System.Private.CoreLib.dll:System.Object System.MulticastDelegate::_invocationList System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value @@ -11137,8 +11951,11 @@ System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Decimal/D System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/BigInteger::Pow10BigNumTable() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/BigInteger::Pow10UInt32Table() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/Grisu3::SmallPowersOfTen() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Numerics.Decimal32::UInt32Powers10() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Decimal/DecCalc::UInt64Powers10() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number::Pow5128Table() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/Grisu3::CachedPowersSignificand() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Numerics.Decimal64::UInt64Powers10() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlyMemory`1::Span() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlySpan`1::Empty() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlySpan`1/Enumerator::_span @@ -12611,7 +13428,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.InternalLoad(System System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.InternalLoad(System.Reflection.NativeAssemblyNameParts*, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.StackCrawlMarkHandle, System.Boolean, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo..ctor(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, System.Reflection.MethodAttributes, System.Reflection.BindingFlags) -System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.g__LazyCreateSignature|21_0() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.g__LazyCreateSignature|19_0() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.CheckCanCreateInstance(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ComputeAndUpdateInvocationFlags() @@ -12644,7 +13461,6 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(Syste System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.InvokeClassConstructor() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.IsDefined(System.Type, System.Boolean) -System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ThrowNoInvokeException() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeCustomAttributeData @@ -12730,8 +13546,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimePropertyInfo::m_getterMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimePropertyInfo::m_setterMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo..ctor(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, System.Reflection.MethodAttributes, System.Reflection.BindingFlags, System.Object) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__IsDisallowedByRefType|98_0(System.Type) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|27_0() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__IsDisallowedByRefType|96_0(System.Type) +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) @@ -12775,7 +13591,6 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDe System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.IsDefined(System.Type, System.Boolean) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeException() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule @@ -13182,11 +13997,16 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await(System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await`1(System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await`1(System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaitAwaiterInContinuation`1(System.Int32) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaiterOnCompletedFromContinuation`1(System.Runtime.CompilerServices.Continuation, System.Int32, System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaitTaskWithRareOptions(System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContexts(out System.Threading.Thread&, out System.Threading.ExecutionContext&, out System.Threading.SynchronizationContext&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContinuationContext(System.Object&, System.Runtime.CompilerServices.ContinuationFlags&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContinuationContextFlags(System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureExecutionContext() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionContinueOnThreadPool(System.Boolean, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionNoContinuationContext(System.Boolean, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionWithContinuationContext(System.Boolean, System.Object&, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncTask(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncTask`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncValueTask(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) @@ -13197,12 +14017,14 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSu System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContexts(System.Boolean, System.Threading.Thread, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContextsOnSuspension(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreExecutionContext(System.Threading.Thread, System.Threading.ExecutionContext) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreInlinedFrameContexts(System.Threading.ExecutionContext, System.Object, System.Runtime.CompilerServices.ContinuationFlags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ResumeInterpreterContinuation(System.Runtime.CompilerServices.Continuation, System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ReturnTaskContinuation(System.Runtime.CompilerServices.RuntimeAsyncTaskContinuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend(System.Threading.Tasks.Sources.IValueTaskSource, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend(System.Threading.Tasks.Task, System.Threading.Tasks.ConfigureAwaitOptions) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend`1(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend`1(System.Threading.Tasks.Task`1, System.Threading.Tasks.ConfigureAwaitOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.SwitchToContinuationContext(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&, System.Object, System.Runtime.CompilerServices.ContinuationFlags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TailAwait() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TaskFromException(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TaskFromException`1(System.Exception) @@ -13215,6 +14037,8 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Transpar System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TransparentSuspend`1(System.Threading.Tasks.Task`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TransparentSuspend`1(System.Threading.Tasks.ValueTask`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaitAwaiter`1(TAwaiter) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaitAwaiterInContinuation`1(System.Int32) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaiterOnCompletedFromContinuation`1(System.Runtime.CompilerServices.Continuation, System.Int32, System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTaskFromException(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTaskFromException`1(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/AsyncContexts @@ -13285,9 +14109,10 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::Synchronize System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::Tpl System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::UnwindAsyncException +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/IsEnabled +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/IsEnabled.Tpl(System.Runtime.CompilerServices.AsyncInstrumentation/Flags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.get_TrackAsyncMethodCompletion() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine, System.Threading.Tasks.Task) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start`1(TStateMachine&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncProfiler @@ -13310,6 +14135,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilde System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.get_Context() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.get_MoveNextAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext(System.Threading.Thread, System.Runtime.CompilerServices.AsyncInstrumentation/Flags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext(System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder..cctor() @@ -13512,6 +14338,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags Sys System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ExecutionContextIndexNumBits System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ResultIndexFirstBit System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ResultIndexNumBits +System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ValueTaskAdaptedToTask System.Private.CoreLib.dll:System.Runtime.CompilerServices.CustomConstantAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.CustomConstantAttribute.get_Value() System.Private.CoreLib.dll:System.Runtime.CompilerServices.DateTimeConstantAttribute @@ -13583,6 +14410,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.GenericsStaticsInfo S System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox +System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox System.Runtime.CompilerServices.AsyncProfiler/Info::LastContinuation System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.get_MoveNextAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IConfiguredTaskAwaiter @@ -13596,9 +14424,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitClass System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitClassSlow(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitInstantiatedClass(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodDesc*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 System.GCMemoryInfoData::_pauseDurations System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.DateTimeRawInfo::num System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray4`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 System.GCMemoryInfoData::_generationInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Buffers.BitVector256::_values System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArrayAttribute @@ -13622,6 +14453,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.IteratorStateMachineA System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.get_MethodTable() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodDescChunk() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable @@ -14278,6 +15110,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.FieldOffsetAttribute.. System.Private.CoreLib.dll:System.Runtime.InteropServices.FieldOffsetAttribute.get_Value() System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Buffers.MemoryHandle::_handle +System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Delegate/BindToMethodDetails::loaderAllocatorGCHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/NativeObjectWrapper::_proxyHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/NativeObjectWrapper::_proxyHandleTrackingResurrection System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/ReferenceTrackerNativeObjectWrapper::_nativeObjectWrapperWeakHandle @@ -14543,6 +15376,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NativeMemory.Clear(Sys System.Private.CoreLib.dll:System.Runtime.InteropServices.NativeMemory.Free(System.Void*) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::MaxValue() +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::MinValue() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NaN() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NegativeInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NegativeZero() @@ -14552,19 +15386,24 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime. System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat..ctor(System.Double) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CompareTo(System.Object) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CompareTo(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Equals(System.Object) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Equals(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_MaxValue() +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_MinValue() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NaN() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NegativeInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NegativeZero() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_PositiveInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.GetHashCode() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsFinite(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsInfinity(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsNaN(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsNegative(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsOddInteger(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Log2(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Addition(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) @@ -14579,6 +15418,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExpli System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Division(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Equality(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Explicit(System.Decimal) => System.Runtime.InteropServices.NFloat System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Explicit(System.Double) => System.Runtime.InteropServices.NFloat @@ -14619,14 +15459,17 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Implicit(Sys System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Inequality(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_LessThan(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_LessThanOrEqual(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Multiply(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Subtraction(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_UnaryNegation(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.IsZero(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertToChecked`1(System.Runtime.InteropServices.NFloat, out TOther&) @@ -14884,6 +15727,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.ISimdVector`2.StoreUnsafe(T System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Add(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.AddSaturate(T, T) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Divide(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Equals(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ExtractMostSignificantBit(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.get_AllBitsSet() @@ -14895,6 +15739,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.LessThan(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.LessThanOrEqual(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Max(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Min(T, T) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Multiply(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ObjectEquals(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ShiftLeft(T, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ShiftRightArithmetic(T, System.Int32) @@ -15011,10 +15856,12 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Addition(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Division(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Equality(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Inequality(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_LeftShift(System.Runtime.Intrinsics.Vector128`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Multiply(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_OnesComplement(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_RightShift(System.Runtime.Intrinsics.Vector128`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Subtraction(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) @@ -15091,11 +15938,14 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Addition(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Division(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Equality(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Inequality(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_LeftShift(System.Runtime.Intrinsics.Vector256`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Multiply(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_OnesComplement(System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_RightShift(System.Runtime.Intrinsics.Vector256`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Subtraction(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_UnaryNegation(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) @@ -15169,11 +16019,14 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Addition(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Division(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Equality(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Inequality(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_LeftShift(System.Runtime.Intrinsics.Vector512`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Multiply(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_OnesComplement(System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_RightShift(System.Runtime.Intrinsics.Vector512`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Subtraction(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_UnaryNegation(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) @@ -15262,10 +16115,12 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Addition(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Division(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Equality(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Inequality(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_LeftShift(System.Runtime.Intrinsics.Vector64`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Multiply(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_OnesComplement(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_RightShift(System.Runtime.Intrinsics.Vector64`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Subtraction(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) @@ -15568,11 +16423,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.IRuntimeMethodInfo::Value() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.RuntimeConstructorInfo::System.IRuntimeMethodInfo.Value() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.RuntimeMethodInfo::System.IRuntimeMethodInfo.Value() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodInfoStub::System.IRuntimeMethodInfo.Value() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Signature::_pMethod @@ -15583,7 +16434,6 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) -System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType @@ -16036,17 +16886,23 @@ System.Private.CoreLib.dll:System.SByte System.Runtime.InteropServices.Marshalli System.Private.CoreLib.dll:System.SByte System.SByte::m_value System.Private.CoreLib.dll:System.SByte System.SByte::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.SByte.CompareTo(System.Object) System.Private.CoreLib.dll:System.SByte.CompareTo(System.SByte) +System.Private.CoreLib.dll:System.SByte.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.SByte.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.SByte.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.SByte.DivRem(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Equals(System.Object) System.Private.CoreLib.dll:System.SByte.Equals(System.SByte) System.Private.CoreLib.dll:System.SByte.GetHashCode() System.Private.CoreLib.dll:System.SByte.GetTypeCode() System.Private.CoreLib.dll:System.SByte.IsNegative(System.SByte) +System.Private.CoreLib.dll:System.SByte.IsOddInteger(System.SByte) +System.Private.CoreLib.dll:System.SByte.LeadingZeroCount(System.SByte) +System.Private.CoreLib.dll:System.SByte.Log2(System.SByte) System.Private.CoreLib.dll:System.SByte.Max(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Min(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -16076,31 +16932,41 @@ System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.System.Numerics.IAdditionOperators.op_Addition(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_OnesComplement(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_GreaterThan(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_LessThan(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IDivisionOperators.op_Division(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IEqualityOperators.op_Equality(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IEqualityOperators.op_Inequality(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.SByte.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.SByte.System.Numerics.IMultiplyOperators.op_Multiply(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsFinite(System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsInfinity(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsNaN(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsZero(System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToChecked`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToSaturating`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToTruncating`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.IShiftOperators.op_LeftShift(System.SByte, System.Int32) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IShiftOperators.op_RightShift(System.SByte, System.Int32) System.Private.CoreLib.dll:System.SByte.System.Numerics.ISubtractionOperators.op_Subtraction(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.SByte) System.Private.CoreLib.dll:System.SByte.ToString() System.Private.CoreLib.dll:System.SByte.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.SByte.TryConvertFromChecked`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryConvertFromSaturating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryConvertFromTruncating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -16168,6 +17034,8 @@ System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single System.Private.CoreLib.dll:System.Single System.Collections.Hashtable::_loadFactor +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::A +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::B System.Private.CoreLib.dll:System.Single System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_r4 System.Private.CoreLib.dll:System.Single System.Single::m_value System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NaN() @@ -16175,12 +17043,14 @@ System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.PositiveInfinity() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Single System.Threading.PortableThreadPool/HillClimbing/LogEntry::lastHistoryMean System.Private.CoreLib.dll:System.Single.Abs(System.Single) System.Private.CoreLib.dll:System.Single.CompareTo(System.Object) System.Private.CoreLib.dll:System.Single.CompareTo(System.Single) +System.Private.CoreLib.dll:System.Single.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Single.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Single.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Single.Equals(System.Object) @@ -16188,14 +17058,19 @@ System.Private.CoreLib.dll:System.Single.Equals(System.Single) System.Private.CoreLib.dll:System.Single.GetHashCode() System.Private.CoreLib.dll:System.Single.GetTypeCode() System.Private.CoreLib.dll:System.Single.IsFinite(System.Single) +System.Private.CoreLib.dll:System.Single.IsInfinity(System.Single) +System.Private.CoreLib.dll:System.Single.IsInteger(System.Single) System.Private.CoreLib.dll:System.Single.IsNaN(System.Single) System.Private.CoreLib.dll:System.Single.IsNaNOrZero(System.Single) System.Private.CoreLib.dll:System.Single.IsNegative(System.Single) +System.Private.CoreLib.dll:System.Single.IsOddInteger(System.Single) System.Private.CoreLib.dll:System.Single.IsZero(System.Single) +System.Private.CoreLib.dll:System.Single.Log2(System.Single) System.Private.CoreLib.dll:System.Single.Max(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.Min(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_Equality(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_GreaterThan(System.Single, System.Single) +System.Private.CoreLib.dll:System.Single.op_GreaterThanOrEqual(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_Inequality(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_LessThan(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_LessThanOrEqual(System.Single, System.Single) @@ -16245,15 +17120,20 @@ System.Private.CoreLib.dll:System.Single.System.IConvertible.ToUInt64(System.IFo System.Private.CoreLib.dll:System.Single.System.Numerics.IAdditionOperators.op_Addition(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Single, System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.IDivisionOperators.op_Division(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NaN() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NegativeInfinity() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NegativeZero() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_PositiveInfinity() System.Private.CoreLib.dll:System.Single.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Single.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Single.System.Numerics.IMultiplyOperators.op_Multiply(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.IsZero(System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertToChecked`1(System.Single, out TOther&) @@ -16264,6 +17144,7 @@ System.Private.CoreLib.dll:System.Single.System.Numerics.IUnaryNegationOperators System.Private.CoreLib.dll:System.Single.ToString() System.Private.CoreLib.dll:System.Single.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Single.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Single.Truncate(System.Single) System.Private.CoreLib.dll:System.Single.TryConvertFrom`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.TryConvertTo`1(System.Single, out TOther&) System.Private.CoreLib.dll:System.Single.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -16344,6 +17225,9 @@ System.Private.CoreLib.dll:System.SpanHelpers.IndexOfNullByte(System.Byte*) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfNullCharacter(System.Char*) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfValueType`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf(System.Byte&, System.Int32, System.Byte&, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf(System.Char&, System.Int32, System.Char&, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf`1(T&, System.Int32, T&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOfValueType`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOfValueType`2(TValue&, TValue, System.Int32) @@ -17199,7 +18083,7 @@ System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.System.StubHe System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1/SizeHolder System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1/SizeHolder..cctor() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers -System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|18_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) +System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|17_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.AddToCleanupList(System.StubHelpers.CleanupWorkListElement&, System.Runtime.InteropServices.SafeHandle) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CalcVaListSize(System.IntPtr) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CheckStringLength(System.Int32) @@ -17215,7 +18099,6 @@ System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CreateCustomMarshaler( System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CreateLayoutClassMarshalStubs(System.Runtime.CompilerServices.QCallTypeHandle, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.DestroyCleanupList(System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.FreeArrayContents`2(System.Byte*, System.Int32) -System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetDelegateTarget(System.Delegate) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetHRExceptionObject(System.Int32) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetPendingExceptionObject() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetStubContext() @@ -18089,8 +18972,6 @@ System.Private.CoreLib.dll:System.Threading.Lock.ExitAll() System.Private.CoreLib.dll:System.Threading.Lock.ExitImpl() System.Private.CoreLib.dll:System.Threading.Lock.get_IsHeldByCurrentThread() System.Private.CoreLib.dll:System.Threading.Lock.get_IsSingleProcessor() -System.Private.CoreLib.dll:System.Threading.Lock.get_LockIdForEvents() -System.Private.CoreLib.dll:System.Threading.Lock.get_OwningThreadId() System.Private.CoreLib.dll:System.Threading.Lock.get_ShouldStopPreemptingWaiters() System.Private.CoreLib.dll:System.Threading.Lock.get_WaitEvent() System.Private.CoreLib.dll:System.Threading.Lock.GetOrCreateCondition() @@ -19234,6 +20115,7 @@ System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue System.Threading System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue System.Threading.ThreadPoolWorkQueueThreadLocals::workQueue System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue..cctor() System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue..ctor() +System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.AssignWorkItemQueue(System.Threading.ThreadPoolWorkQueueThreadLocals) System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.CreateThreadLocals() System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.Dequeue(System.Threading.ThreadPoolWorkQueueThreadLocals, System.Boolean&) System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.Dispatch() @@ -19630,8 +20512,6 @@ System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeResult::timeZoneOffset -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration0 -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration1 System.Private.CoreLib.dll:System.TimeSpan System.Globalization.TimeSpanParse/TimeSpanResult::parsedTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.Threading.Timeout::InfiniteTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MaxValue @@ -20195,6 +21075,25 @@ System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.Runtime.Ser System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.String) System.Private.CoreLib.dll:System.UInt128 +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::NegativeInfinityValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::NegativeZeroValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::OneValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::PositiveInfinityValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::QuietNaNValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.Zero() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::ZeroValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::MaxValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::MinValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() @@ -20207,6 +21106,7 @@ System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(S System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt128.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt128.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.UInt128.DivRem(System.UInt128, System.UInt128) @@ -20219,6 +21119,7 @@ System.Private.CoreLib.dll:System.UInt128.get_One() System.Private.CoreLib.dll:System.UInt128.get_Upper() System.Private.CoreLib.dll:System.UInt128.get_Zero() System.Private.CoreLib.dll:System.UInt128.GetHashCode() +System.Private.CoreLib.dll:System.UInt128.IsOddInteger(System.UInt128) System.Private.CoreLib.dll:System.UInt128.LeadingZeroCount(System.UInt128) System.Private.CoreLib.dll:System.UInt128.LeadingZeroCountAsInt32(System.UInt128) System.Private.CoreLib.dll:System.UInt128.Log2(System.UInt128) @@ -20239,8 +21140,14 @@ System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Division(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Equality(System.UInt128, System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_ExclusiveOr(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Decimal) => System.UInt128 System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Double) => System.UInt128 System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Int16) => System.UInt128 @@ -20278,6 +21185,7 @@ System.Private.CoreLib.dll:System.UInt128.op_Inequality(System.UInt128, System.U System.Private.CoreLib.dll:System.UInt128.op_LeftShift(System.UInt128, System.Int32) System.Private.CoreLib.dll:System.UInt128.op_LessThan(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_LessThanOrEqual(System.UInt128, System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_Modulus(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Multiply(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_OnesComplement(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_RightShift(System.UInt128, System.Int32) @@ -20292,10 +21200,13 @@ System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInf System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.IsGreaterThanAsUnsigned(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy10(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy16(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsFinite(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsInfinity(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsNaN(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsNegative(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsZero(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt128, out TOther&) @@ -20304,9 +21215,11 @@ System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt128[] System.Numerics.Decimal128::UInt128Powers10 System.Private.CoreLib.dll:System.UInt16 System.Private.CoreLib.dll:System.UInt16 System.Double::System.IBinaryFloatParseAndFormatInfo.DenormalMantissaBits() System.Private.CoreLib.dll:System.UInt16 System.Double::System.IBinaryFloatParseAndFormatInfo.ExponentBits() @@ -20345,16 +21258,22 @@ System.Private.CoreLib.dll:System.UInt16 System.Threading.LowLevelLifoSemaphore/ System.Private.CoreLib.dll:System.UInt16 System.UInt16::m_value System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt16.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt16.CompareTo(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt16.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt16.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt16.DivRem(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Equals(System.Object) System.Private.CoreLib.dll:System.UInt16.Equals(System.UInt16) System.Private.CoreLib.dll:System.UInt16.GetHashCode() System.Private.CoreLib.dll:System.UInt16.GetTypeCode() +System.Private.CoreLib.dll:System.UInt16.IsOddInteger(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.LeadingZeroCount(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.Log2(System.UInt16) System.Private.CoreLib.dll:System.UInt16.Max(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Min(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -20384,32 +21303,42 @@ System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IAdditionOperators.op_Addition(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_LessThan(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IDivisionOperators.op_Division(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IEqualityOperators.op_Equality(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IEqualityOperators.op_Inequality(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsFinite(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsInfinity(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsNaN(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsNegative(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsZero(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IShiftOperators.op_LeftShift(System.UInt16, System.Int32) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IShiftOperators.op_RightShift(System.UInt16, System.Int32) System.Private.CoreLib.dll:System.UInt16.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt16) System.Private.CoreLib.dll:System.UInt16.ToString() System.Private.CoreLib.dll:System.UInt16.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt16.TryConvertFromChecked`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryConvertFromSaturating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryConvertFromTruncating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20446,16 +21375,26 @@ System.Private.CoreLib.dll:System.UInt32 System.Decimal::High() System.Private.CoreLib.dll:System.UInt32 System.Decimal::Low() System.Private.CoreLib.dll:System.UInt32 System.Decimal::Mid() System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::High() +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::Low() +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::Mid() System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::uflags System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::uhi System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::ulo System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::umid +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U0 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U1 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U2 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U0 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U1 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U2 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U3 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U0 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U1 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U2 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U3 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U4 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U5 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/PowerOvfl::Hi System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleGroupingData::value__ System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleNumberData::value__ System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleStringData::value__ @@ -20471,8 +21410,23 @@ System.Private.CoreLib.dll:System.UInt32 System.HashCode::s_seed System.Private.CoreLib.dll:System.UInt32 System.HexConverter/Casing::value__ System.Private.CoreLib.dll:System.UInt32 System.Number/BigInteger/BlocksBuffer::e0 System.Private.CoreLib.dll:System.UInt32 System.Number/BinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Number/DiyFp128::_sign System.Private.CoreLib.dll:System.UInt32 System.Number/HexParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Number/IHexOrBinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::_value +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.Zero() System.Private.CoreLib.dll:System.UInt32 System.Reflection.InvocationFlags::value__ System.Private.CoreLib.dll:System.UInt32 System.Runtime.CompilerServices.AsyncInstrumentation/Flags::value__ System.Private.CoreLib.dll:System.UInt32 System.Runtime.CompilerServices.AsyncProfiler/Info::ContinuationIndex @@ -20519,6 +21473,7 @@ System.Private.CoreLib.dll:System.UInt32 System.TimeZoneInfo/TZifHead::TypeCount System.Private.CoreLib.dll:System.UInt32 System.UInt32::m_value System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt32.CompareTo(System.Object) @@ -20526,10 +21481,12 @@ System.Private.CoreLib.dll:System.UInt32.CompareTo(System.UInt32) System.Private.CoreLib.dll:System.UInt32.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt32.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt32.DivRem(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.Equals(System.Object) System.Private.CoreLib.dll:System.UInt32.Equals(System.UInt32) System.Private.CoreLib.dll:System.UInt32.GetHashCode() System.Private.CoreLib.dll:System.UInt32.GetTypeCode() +System.Private.CoreLib.dll:System.UInt32.IsOddInteger(System.UInt32) System.Private.CoreLib.dll:System.UInt32.LeadingZeroCount(System.UInt32) System.Private.CoreLib.dll:System.UInt32.Log2(System.UInt32) System.Private.CoreLib.dll:System.UInt32.Max(System.UInt32, System.UInt32) @@ -20561,27 +21518,36 @@ System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IAdditionOperators.op_Addition(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_LessThan(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IDivisionOperators.op_Division(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IEqualityOperators.op_Equality(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IEqualityOperators.op_Inequality(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsFinite(System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsInfinity(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsNaN(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsNegative(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsZero(System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IShiftOperators.op_LeftShift(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IShiftOperators.op_RightShift(System.UInt32, System.Int32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt32) System.Private.CoreLib.dll:System.UInt32.ToString() @@ -20613,11 +21579,19 @@ System.Private.CoreLib.dll:System.UInt64 System.Decimal::_lo64 System.Private.CoreLib.dll:System.UInt64 System.Decimal::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc::ulomid +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::High64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::Low64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::uhigh64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::ulo64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf16::High64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf16::Low64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::High64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::Mid64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::uhigh64LE System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::ulo64LE System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::umid64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/PowerOvfl::MidLo System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.DenormalMantissaMask() System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.InfinityBits() System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.MaxMantissaFastPath() @@ -20646,12 +21620,33 @@ System.Private.CoreLib.dll:System.UInt64 System.Int128::_upper System.Private.CoreLib.dll:System.UInt64 System.Marvin::k__BackingField System.Private.CoreLib.dll:System.UInt64 System.Marvin::DefaultSeed() System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp::f +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_hi +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_lo +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::High +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::Low +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal128::_lower +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal128::_upper +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::_value +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.Zero() System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_00 System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_01 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s0 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s1 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s2 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s3 +System.Private.CoreLib.dll:System.UInt64 System.Runtime.CompilerServices.AsyncProfiler/Info::DispatcherId System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.ComWrappers/ManagedObjectWrapper::RefCount System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_ui8 System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.SafeBuffer::ByteLength() @@ -20671,10 +21666,12 @@ System.Private.CoreLib.dll:System.UInt64 System.UInt128::Upper() System.Private.CoreLib.dll:System.UInt64 System.UInt64::m_value System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) @@ -20682,6 +21679,7 @@ System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() System.Private.CoreLib.dll:System.UInt64.GetTypeCode() +System.Private.CoreLib.dll:System.UInt64.IsOddInteger(System.UInt64) System.Private.CoreLib.dll:System.UInt64.LeadingZeroCount(System.UInt64) System.Private.CoreLib.dll:System.UInt64.Log2(System.UInt64) System.Private.CoreLib.dll:System.UInt64.Max(System.UInt64, System.UInt64) @@ -20713,32 +21711,42 @@ System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IAdditionOperators.op_Addition(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_LessThan(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IDivisionOperators.op_Division(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IEqualityOperators.op_Equality(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IEqualityOperators.op_Inequality(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsFinite(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsInfinity(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsNaN(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsNegative(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsZero(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IShiftOperators.op_LeftShift(System.UInt64, System.Int32) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IShiftOperators.op_RightShift(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.UInt64.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt64) System.Private.CoreLib.dll:System.UInt64.ToString() System.Private.CoreLib.dll:System.UInt64.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt64.TryConvertFromChecked`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryConvertFromSaturating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryConvertFromTruncating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20783,46 +21791,62 @@ System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::_value System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::MaxValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::MinValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::Zero System.Private.CoreLib.dll:System.UIntPtr.CompareTo(System.Object) System.Private.CoreLib.dll:System.UIntPtr.CompareTo(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UIntPtr.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UIntPtr.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UIntPtr.DivRem(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Equals(System.Object) System.Private.CoreLib.dll:System.UIntPtr.Equals(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.get_MaxValue() System.Private.CoreLib.dll:System.UIntPtr.get_MinValue() System.Private.CoreLib.dll:System.UIntPtr.GetHashCode() +System.Private.CoreLib.dll:System.UIntPtr.IsOddInteger(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.LeadingZeroCount(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.Log2(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Max(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Min(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.op_Equality(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.op_Inequality(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IAdditionOperators.op_Addition(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_GreaterThan(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_LessThan(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IDivisionOperators.op_Division(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMultiplyOperators.op_Multiply(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsFinite(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsInfinity(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsNaN(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsNegative(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsZero(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToChecked`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IShiftOperators.op_LeftShift(System.UIntPtr, System.Int32) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IShiftOperators.op_RightShift(System.UIntPtr, System.Int32) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.ISubtractionOperators.op_Subtraction(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.ToString() System.Private.CoreLib.dll:System.UIntPtr.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromChecked`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromSaturating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromTruncating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20960,6 +21984,7 @@ System.Private.CoreLib.dll:T System.Reflection.MethodBase/ArgumentData`1::_arg0 System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray2`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray3`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray4`1::t +System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray5`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray8`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.StrongBox`1::Value System.Private.CoreLib.dll:T System.Runtime.InteropServices.GCHandle`1::Target() @@ -21043,9 +22068,12 @@ System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::Negati System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::NegativeZero() System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::PositiveInfinity() System.Private.CoreLib.dll:TSelf System.Numerics.IMinMaxValue`1::MaxValue() +System.Private.CoreLib.dll:TSelf System.Numerics.IMinMaxValue`1::MinValue() System.Private.CoreLib.dll:TSelf System.Numerics.INumberBase`1::One() System.Private.CoreLib.dll:TSelf System.Numerics.INumberBase`1::Zero() System.Private.CoreLib.dll:TSelf System.Runtime.Intrinsics.ISimdVector`2::Zero() +System.Private.CoreLib.dll:TSignificand System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:TSignificand System.Number/DecodedDecimalIeee754`1::Significand() System.Private.CoreLib.dll:TState System.Threading.QueueUserWorkItemCallback`1::_state System.Private.CoreLib.dll:TState System.Threading.QueueUserWorkItemCallbackDefaultContext`1::_state System.Private.CoreLib.dll:TStateMachine System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1::StateMachine @@ -21060,6 +22088,19 @@ System.Private.CoreLib.dll:TValue System.Collections.Generic.Dictionary`2::Item( System.Private.CoreLib.dll:TValue System.Collections.Generic.Dictionary`2/Entry::value System.Private.CoreLib.dll:TValue System.Collections.Generic.KeyValuePair`2::value System.Private.CoreLib.dll:TValue System.Collections.Generic.KeyValuePair`2::Value() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G0G1Mask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::GwPlus4SignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::MaxSignificand() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NaN() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NaNMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NegativeInfinity() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::PositiveInfinity() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::SignMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::Zero() System.Private.CoreLib.dll:TValue System.Runtime.CompilerServices.GenericCache`2/Entry::_value System.Private.CoreLib.dll:V System.Reflection.CerHashtable`2::Item(K) System.Private.CoreLib.dll:V[] System.Reflection.CerHashtable`2/Table::m_values diff --git a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-size.txt b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-size.txt index 837df2092e26..fc34f6cc6d43 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-Interpreter-size.txt @@ -1,39 +1,39 @@ -AppBundleSize: 8,037,871 bytes (7,849.5 KB = 7.7 MB) +AppBundleSize: 8,463,881 bytes (8,265.5 KB = 8.1 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Frameworks/libcoreclr.framework/Info.plist: - 798 bytes (0.8 KB = 0.0 MB) + 777 bytes (0.8 KB = 0.0 MB) Frameworks/libcoreclr.framework/libcoreclr: - 4,200,608 bytes (4,102.2 KB = 4.0 MB) + 4,324,144 bytes (4,222.8 KB = 4.1 MB) Frameworks/libSystem.Globalization.Native.framework/Info.plist: - 840 bytes (0.8 KB = 0.0 MB) + 819 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Globalization.Native.framework/libSystem.Globalization.Native: - 90,576 bytes (88.5 KB = 0.1 MB) + 124,608 bytes (121.7 KB = 0.1 MB) Frameworks/libSystem.IO.Compression.Native.framework/Info.plist: - 842 bytes (0.8 KB = 0.0 MB) + 821 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.IO.Compression.Native.framework/libSystem.IO.Compression.Native: - 1,393,600 bytes (1,360.9 KB = 1.3 MB) + 1,438,032 bytes (1,404.3 KB = 1.4 MB) Frameworks/libSystem.Native.framework/Info.plist: - 812 bytes (0.8 KB = 0.0 MB) + 791 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Native.framework/libSystem.Native: - 143,216 bytes (139.9 KB = 0.1 MB) + 177,552 bytes (173.4 KB = 0.2 MB) Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/Info.plist: - 868 bytes (0.8 KB = 0.0 MB) + 847 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/libSystem.Security.Cryptography.Native.Apple: - 195,056 bytes (190.5 KB = 0.2 MB) + 248,672 bytes (242.8 KB = 0.2 MB) Info.plist: - 1,126 bytes (1.1 KB = 0.0 MB) + 1,105 bytes (1.1 KB = 0.0 MB) Microsoft.tvOS.dll: - 98,816 bytes (96.5 KB = 0.1 MB) + 97,792 bytes (95.5 KB = 0.1 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) SizeTestApp: - 128,488 bytes (125.5 KB = 0.1 MB) + 128,480 bytes (125.5 KB = 0.1 MB) SizeTestApp.dll: - 7,680 bytes (7.5 KB = 0.0 MB) + 7,168 bytes (7.0 KB = 0.0 MB) System.Collections.Immutable.dll: - 14,848 bytes (14.5 KB = 0.0 MB) + 14,336 bytes (14.0 KB = 0.0 MB) System.Diagnostics.StackTrace.dll: 8,192 bytes (8.0 KB = 0.0 MB) System.IO.Compression.dll: @@ -41,7 +41,7 @@ System.IO.Compression.dll: System.IO.MemoryMappedFiles.dll: 22,016 bytes (21.5 KB = 0.0 MB) System.Private.CoreLib.dll: - 1,610,752 bytes (1,573.0 KB = 1.5 MB) + 1,748,992 bytes (1,708.0 KB = 1.7 MB) System.Reflection.Metadata.dll: 84,480 bytes (82.5 KB = 0.1 MB) System.Runtime.dll: diff --git a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt index 02c3c93910de..af3aa0d52823 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-preservedapis.txt @@ -1935,10 +1935,14 @@ System.Private.CoreLib.dll:/__StaticArrayInitTypeS System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::2F3EFC9595514E83DED03093C4F3E3C781A650E1AAB8CA350537CD1A47E1EE8E System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::F8919BA0F50317229A66884F9CE4E004B755100D8A4000A28D468B0627472F4D +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128_Align=8 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128_Align=8 ::4EFE2D3A64964C812874074A7FEE8B5A2B4425064A81A9D44C0E7A3025C716388 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316 ::A72EB4166B1B422391E0F6E483BEF87AE75881E655BCB152E37F3D9688B2AA71 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2 ::7BEC6AD454781FDCD8D475B3418629CBABB3BF9CA66FA80009D608A1A60D06962 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8 ::DD471F12FFA94CC557A02A91C2CBB95F551AB28C8BBF297B2F953B8886BCCF6D8 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552 ::3A2A62DD9288C777284B5B71FB3EFB59CFDF6BF81068A16795E6155DB8BFA701 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=16 @@ -1977,6 +1981,8 @@ System.Private.CoreLib.dll:/__StaticArrayInitTypeS System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=256_Align=8 ::40BC6C50487BFA78776C051EF7555931E4F15E5CEE9481EB280B1C2630B906B48 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=2 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=2 ::374EE580A55269D9E298B7EFD9DB0DFE1798E301679B89E48D722345EB74B59B2 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=4 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=4 ::2106C9B520169CFE919ED2D7BAE85C716D866D8DC2716F286D9C95511F1B9B014 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4 ::74BCD6ED20AF2231F2BB1CDE814C5F4FF48E54BAC46029EEF90DDF4A208E2B204 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32 @@ -2394,6 +2400,7 @@ System.Private.CoreLib.dll:method System.Void *(System.Byte&) System.RuntimeType System.Private.CoreLib.dll:method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::OnCompletedValueTaskSource System.Private.CoreLib.dll:method System.Void *(System.Object,System.Int16,System.Byte&) System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::_getResult System.Private.CoreLib.dll:method System.Void *(System.Object) System.RuntimeType/ActivatorCache::_pfnRefCtor +System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.Continuation,System.Int32,System.Action) System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterContinuation System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*) System.Runtime.CompilerServices.PortableTailCallFrame::NextCall System.Private.CoreLib.dll:method System.Void *(System.Threading.Tasks.Task,System.Byte&) System.Runtime.CompilerServices.RuntimeAsyncTaskContinuation::_getResult System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle @@ -2419,7 +2426,7 @@ System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Path() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_SupportsRandomAccess() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_ThreadPoolBinding() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Type() -System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeek() +System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeekCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileLength() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileTypeCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetThreadPoolValueTaskSource() @@ -2868,6 +2875,9 @@ System.Private.CoreLib.dll:System.Boolean System.Collections.ObjectModel.ReadOnl System.Private.CoreLib.dll:System.Boolean System.DateTimeRawInfo::hasSameDateAndTimeSeparators System.Private.CoreLib.dll:System.Boolean System.Decimal/DecCalc::IsNegative() System.Private.CoreLib.dll:System.Boolean System.DefaultBinder/BinderState::_isParamArray +System.Private.CoreLib.dll:System.Boolean System.Delegate::HasSingleTarget() +System.Private.CoreLib.dll:System.Boolean System.Delegate::IsClosed() +System.Private.CoreLib.dll:System.Boolean System.Delegate::IsUnmanagedFunctionPtr() System.Private.CoreLib.dll:System.Boolean System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Diagnostics.Debugger::IsAttached() System.Private.CoreLib.dll:System.Boolean System.Diagnostics.StackFrame::_isLastFrameFromForeignExceptionStackTrace @@ -2992,9 +3002,10 @@ System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::ForceI System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::FormatJapaneseFirstYearAsANumber() System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::ShowILOffsets() System.Private.CoreLib.dll:System.Boolean System.Memory`1::IsEmpty() -System.Private.CoreLib.dll:System.Boolean System.MulticastDelegate::HasSingleTarget() System.Private.CoreLib.dll:System.Boolean System.Nullable`1::hasValue System.Private.CoreLib.dll:System.Boolean System.Nullable`1::HasValue() +System.Private.CoreLib.dll:System.Boolean System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Number/DecodedDecimalIeee754`1::Signed() System.Private.CoreLib.dll:System.Boolean System.Number/NumberBuffer::HasNonZeroTail System.Private.CoreLib.dll:System.Boolean System.Number/NumberBuffer::IsNegative System.Private.CoreLib.dll:System.Boolean System.Numerics.Vector::IsHardwareAccelerated() @@ -3106,8 +3117,9 @@ System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_r System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_suppressContextualReflectionContext System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_throwOnError System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::SupportsUnboundGenerics() -System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncMethodBuilderCore::TrackAsyncMethodCompletion() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::CurrentContinuationCompleted +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::CurrentContinuationResumes +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::ReachedLastContinuation System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::_finalized System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::_invalid System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::HasCapacity() @@ -3708,12 +3720,12 @@ System.Private.CoreLib.dll:System.Byte modreq(System.Runtime.CompilerServices.Is System.Private.CoreLib.dll:System.Byte System.Byte::m_value System.Private.CoreLib.dll:System.Byte System.Byte::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Byte System.Collections.Generic.InsertionBehavior::value__ System.Private.CoreLib.dll:System.Byte System.DateTimeParse/DS::value__ System.Private.CoreLib.dll:System.Byte System.Decimal::Scale() -System.Private.CoreLib.dll:System.Byte System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::value__ System.Private.CoreLib.dll:System.Byte System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::value__ System.Private.CoreLib.dll:System.Byte System.DTSubStringType::value__ System.Private.CoreLib.dll:System.Byte System.GCMemoryInfoData::_compacted @@ -3756,12 +3768,17 @@ System.Private.CoreLib.dll:System.Byte System.TimeZoneInfo/TZifType::Abbreviatio System.Private.CoreLib.dll:System.Byte System.TimeZoneInfo/TZVersion::value__ System.Private.CoreLib.dll:System.Byte.CompareTo(System.Byte) System.Private.CoreLib.dll:System.Byte.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Byte.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Byte.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Byte.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Byte.DivRem(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Equals(System.Byte) System.Private.CoreLib.dll:System.Byte.Equals(System.Object) System.Private.CoreLib.dll:System.Byte.GetHashCode() System.Private.CoreLib.dll:System.Byte.GetTypeCode() +System.Private.CoreLib.dll:System.Byte.IsOddInteger(System.Byte) +System.Private.CoreLib.dll:System.Byte.LeadingZeroCount(System.Byte) +System.Private.CoreLib.dll:System.Byte.Log2(System.Byte) System.Private.CoreLib.dll:System.Byte.Max(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Min(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -3797,32 +3814,42 @@ System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastFrom(Sys System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastFrom(System.UInt64) System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastToUInt32(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IAdditionOperators.op_Addition(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_GreaterThan(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_LessThan(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IDivisionOperators.op_Division(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IEqualityOperators.op_Equality(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IEqualityOperators.op_Inequality(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Byte.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Byte.System.Numerics.IMultiplyOperators.op_Multiply(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsFinite(System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsInfinity(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsNaN(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsNegative(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsZero(System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToChecked`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.IShiftOperators.op_LeftShift(System.Byte, System.Int32) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IShiftOperators.op_RightShift(System.Byte, System.Int32) System.Private.CoreLib.dll:System.Byte.System.Numerics.ISubtractionOperators.op_Subtraction(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Byte) System.Private.CoreLib.dll:System.Byte.ToString() System.Private.CoreLib.dll:System.Byte.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Byte.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Byte.TryConvertFromChecked`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryConvertFromSaturating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryConvertFromTruncating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -3891,6 +3918,7 @@ System.Private.CoreLib.dll:System.Char System.Buffers.RangeCharSearchValues`1::_ System.Private.CoreLib.dll:System.Char System.Char::m_value System.Private.CoreLib.dll:System.Char System.Char::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Char System.CharEnumerator::Current() @@ -3971,27 +3999,39 @@ System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastFrom(Sys System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastFrom(System.UInt64) System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastToUInt32(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IAdditionOperators.op_Addition(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryInteger.GetByteCount() +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryInteger.LeadingZeroCount(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryNumber.Log2(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_GreaterThan(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_LessThan(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IDivisionOperators.op_Division(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IEqualityOperators.op_Equality(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IEqualityOperators.op_Inequality(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Char.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Char.System.Numerics.IMultiplyOperators.op_Multiply(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsFinite(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsInfinity(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsNaN(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsNegative(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsOddInteger(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsZero(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToChecked`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.IShiftOperators.op_LeftShift(System.Char, System.Int32) +System.Private.CoreLib.dll:System.Char.System.Numerics.IShiftOperators.op_RightShift(System.Char, System.Int32) System.Private.CoreLib.dll:System.Char.System.Numerics.ISubtractionOperators.op_Subtraction(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Char) System.Private.CoreLib.dll:System.Char.ToString() @@ -5180,6 +5220,7 @@ System.Private.CoreLib.dll:System.Decimal System.Decimal::MultiplicativeIdentity System.Private.CoreLib.dll:System.Decimal System.Decimal::NegativeOne System.Private.CoreLib.dll:System.Decimal System.Decimal::One System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Decimal System.Decimal::Zero @@ -5203,6 +5244,7 @@ System.Private.CoreLib.dll:System.Decimal..ctor(System.UInt64) System.Private.CoreLib.dll:System.Decimal.AsMutable(System.Decimal&) System.Private.CoreLib.dll:System.Decimal.CompareTo(System.Decimal) System.Private.CoreLib.dll:System.Decimal.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Decimal.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Decimal.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Decimal.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Decimal.DecDivMod1E9(System.Decimal&) @@ -5217,8 +5259,10 @@ System.Private.CoreLib.dll:System.Decimal.get_Scale() System.Private.CoreLib.dll:System.Decimal.GetHashCode() System.Private.CoreLib.dll:System.Decimal.GetTypeCode() System.Private.CoreLib.dll:System.Decimal.IsNegative(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.IsOddInteger(System.Decimal) System.Private.CoreLib.dll:System.Decimal.IsValid(System.Int32) System.Private.CoreLib.dll:System.Decimal.op_Addition(System.Decimal, System.Decimal) +System.Private.CoreLib.dll:System.Decimal.op_Division(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Equality(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Explicit(System.Decimal) => System.Byte System.Private.CoreLib.dll:System.Decimal.op_Explicit(System.Decimal) => System.Char @@ -5247,6 +5291,7 @@ System.Private.CoreLib.dll:System.Decimal.op_Implicit(System.UInt64) => System.D System.Private.CoreLib.dll:System.Decimal.op_Inequality(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_LessThan(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_LessThanOrEqual(System.Decimal, System.Decimal) +System.Private.CoreLib.dll:System.Decimal.op_Multiply(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Subtraction(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_UnaryNegation(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -5270,11 +5315,14 @@ System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt16(System.IF System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Decimal.System.Numerics.IMinMaxValue.get_MinValue() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsFinite(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsInfinity(System.Decimal) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsNaN(System.Decimal) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsZero(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertToChecked`1(System.Decimal, out TOther&) @@ -5295,40 +5343,77 @@ System.Private.CoreLib.dll:System.Decimal.ToUInt64(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Truncate(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Truncate(System.Decimal&) System.Private.CoreLib.dll:System.Decimal.TryConvertFrom`1(TOther, out System.Decimal&) +System.Private.CoreLib.dll:System.Decimal.TryConvertFromChecked`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.TryConvertTo`1(System.Decimal, out TOther&) System.Private.CoreLib.dll:System.Decimal.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal/DecCalc +System.Private.CoreLib.dll:System.Decimal/DecCalc..cctor() +System.Private.CoreLib.dll:System.Decimal/DecCalc.Add32To96(System.Decimal/DecCalc/Buf12&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecAddSub(System.Decimal/DecCalc&, System.Decimal/DecCalc&, System.Boolean) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecDivMod1E9(System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPoint`1(System.UInt64, System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPointExact(System.UInt64, System.UInt32, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div128By64(System.Decimal/DecCalc/Buf16&, System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div128By96(System.Decimal/DecCalc/Buf16&, System.Decimal/DecCalc/Buf12&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div64By32(System.UInt64, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96By32(System.Decimal/DecCalc/Buf12&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96By64(System.Decimal/DecCalc/Buf12&, System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96ByConst(System.UInt64&, System.UInt32&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DivByConst(System.UInt32*, System.UInt32, out System.UInt32&, out System.UInt32&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Equals(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.get_High() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_IsNegative() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Mid() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Scale() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_UInt32Powers10() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_UInt64Powers10() System.Private.CoreLib.dll:System.Decimal/DecCalc.GetHashCode(System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale(System.Decimal/DecCalc/Buf12&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale(System.Decimal/DecCalc/Buf16&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale64(System.Decimal/DecCalc/Buf12&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.InternalRound(System.Decimal/DecCalc&, System.UInt32, System.MidpointRounding) +System.Private.CoreLib.dll:System.Decimal/DecCalc.OverflowUnscale(System.Decimal/DecCalc/Buf12&, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Decimal/DecCalc.Pow5(System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.RoundShiftRightEven(System.UInt128, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.ScaleResult(System.Decimal/DecCalc/Buf24*, System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.SearchScale(System.UInt64, System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.set_High(System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Low(System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Low64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Mid(System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.Unscale(System.UInt32&, System.UInt64&, System.Int32&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarCyFromDec(System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecCmp(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecCmpSub(System.Decimal&, System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecDiv(System.Decimal/DecCalc&, System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromFloat`1(TNumber, out System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromR4(System.Single, out System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromR8(System.Double, out System.Decimal/DecCalc&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecMul(System.Decimal/DecCalc&, System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarR4FromDec(System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarR8FromDec(System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 System.Decimal/DecCalc/Buf16::High96 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 System.Decimal/DecCalc/Buf16::Low96 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.get_High64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.set_High64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.set_Low64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.get_High64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.set_High64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.set_Low64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24 System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_High64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_Low64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_Mid64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl..ctor(System.UInt32, System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl[] System.Decimal/DecCalc::PowerOvflValues System.Private.CoreLib.dll:System.DefaultBinder System.Private.CoreLib.dll:System.DefaultBinder System.DefaultBinder::Instance System.Private.CoreLib.dll:System.DefaultBinder..cctor() @@ -5372,47 +5457,74 @@ System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/ System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/Primitives::UInt32 System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/Primitives::UInt64 System.Private.CoreLib.dll:System.Delegate +System.Private.CoreLib.dll:System.Delegate System.Delegate/Wrapper::Value System.Private.CoreLib.dll:System.Delegate System.Threading.CancellationTokenSource/CallbackNode::Callback System.Private.CoreLib.dll:System.Delegate System.Threading.Tasks.Task::m_action System.Private.CoreLib.dll:System.Delegate System.Threading.Thread/StartHelper::_start -System.Private.CoreLib.dll:System.Delegate.g____PInvoke|19_0(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags) -System.Private.CoreLib.dll:System.Delegate.g____PInvoke|32_0(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.g____PInvoke|34_0(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Delegate/BindToMethodDetails*) +System.Private.CoreLib.dll:System.Delegate.g____PInvoke|39_0(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, System.Delegate/BindToMethodDetails*) System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Runtime.CompilerServices.MethodTable*, System.IntPtr) System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Object, System.IRuntimeMethodInfo, System.RuntimeType, System.DelegateBindingFlags) -System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags) +System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags, System.Runtime.CompilerServices.ObjectHandleOnStack, out System.Delegate/BindToMethodDetails&) System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) -System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) +System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) +System.Private.CoreLib.dll:System.Delegate.CtorClosed(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorClosedStatic(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleClosedStatic(System.Object, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleOpen(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleVirtualDispatch(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorOpen(System.Object, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorRTClosed(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorVirtualDispatch(System.Object, System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.Delegate.DelegateConstruct(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.DeleteFromInvocationList(System.ReadOnlySpan`1, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Delegate.EnumerateInvocationList`1(TDelegate) System.Private.CoreLib.dll:System.Delegate.Equals(System.Object) -System.Private.CoreLib.dll:System.Delegate.FindMethodHandle() -System.Private.CoreLib.dll:System.Delegate.FindMethodHandle(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.get_HasSingleTarget() +System.Private.CoreLib.dll:System.Delegate.get_IsClosed() +System.Private.CoreLib.dll:System.Delegate.get_IsUnmanagedFunctionPtr() System.Private.CoreLib.dll:System.Delegate.get_Method() +System.Private.CoreLib.dll:System.Delegate.get_MethodDesc() System.Private.CoreLib.dll:System.Delegate.GetHashCode() System.Private.CoreLib.dll:System.Delegate.GetInvokeMethod() System.Private.CoreLib.dll:System.Delegate.GetInvokeMethod(System.Runtime.CompilerServices.MethodTable*) +System.Private.CoreLib.dll:System.Delegate.GetMethodDesc() +System.Private.CoreLib.dll:System.Delegate.GetMethodDesc(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.GetMethodImpl() +System.Private.CoreLib.dll:System.Delegate.GetMethodImplUncached() System.Private.CoreLib.dll:System.Delegate.GetMulticastInvoke() System.Private.CoreLib.dll:System.Delegate.GetMulticastInvoke(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.GetMulticastInvokeSlow(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.GetTargetForSingleCastInstanceDelegate() System.Private.CoreLib.dll:System.Delegate.InitializeVirtualCallStub(System.IntPtr) System.Private.CoreLib.dll:System.Delegate.InitializeVirtualCallStub(System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.InternalAlloc(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.InternalAlloc(System.RuntimeType) -System.Private.CoreLib.dll:System.Delegate.InternalEqualMethodHandles(System.Delegate, System.Delegate) -System.Private.CoreLib.dll:System.Delegate.InternalEqualMethodHandles(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.InternalEqualTypes(System.Object, System.Object) +System.Private.CoreLib.dll:System.Delegate.NewMulticastDelegate(System.Delegate/Wrapper[], System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Delegate.op_Equality(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.Remove(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.RemoveImpl(System.Delegate) +System.Private.CoreLib.dll:System.Delegate.ThrowNullThisInDelegateToInstance() +System.Private.CoreLib.dll:System.Delegate.TryGetAt(System.Int32) +System.Private.CoreLib.dll:System.Delegate.TryGetInvocations(out System.ReadOnlySpan`1&) +System.Private.CoreLib.dll:System.Delegate.TrySetSlot(System.Delegate&, System.Delegate) +System.Private.CoreLib.dll:System.Delegate/BindToMethodDetails System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1 System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1..ctor(System.MulticastDelegate) System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.get_Current() System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.GetEnumerator() System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.MoveNext() +System.Private.CoreLib.dll:System.Delegate/Wrapper +System.Private.CoreLib.dll:System.Delegate/Wrapper..ctor(System.Delegate) +System.Private.CoreLib.dll:System.Delegate/Wrapper.Equals(System.Delegate/Wrapper) +System.Private.CoreLib.dll:System.Delegate/Wrapper.Equals(System.Object) +System.Private.CoreLib.dll:System.Delegate/Wrapper.GetHashCode() System.Private.CoreLib.dll:System.DelegateBindingFlags System.Private.CoreLib.dll:System.DelegateBindingFlags System.DelegateBindingFlags::CaselessMatching System.Private.CoreLib.dll:System.DelegateBindingFlags System.DelegateBindingFlags::ClosedDelegateOnly @@ -5639,20 +5751,6 @@ System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource System.Diagnostics.Tracing.NativeRuntimeEventSource::Log System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource..cctor() System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource..ctor() -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.IntPtr, System.IntPtr, System.UInt64) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStart(System.Threading.Lock) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStop(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStop(System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogContentionStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.IntPtr, System.IntPtr, System.UInt64) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogContentionStop(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogWaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.IntPtr, System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogWaitHandleWaitStop(System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.IntPtr, System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.Object) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStop(System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::Managed -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::Native System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::MonitorWait System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::Unknown @@ -5678,9 +5776,11 @@ System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatingPointIeee754.PositiveInfinity() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Double System.NotFiniteNumberException::_offendingNumber +System.Private.CoreLib.dll:System.Double System.Number/SqrtCoefficients::C System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_date System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_r8 System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.NFloat::_value @@ -5706,9 +5806,11 @@ System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalDays() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalHours() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalMilliseconds() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalSeconds() +System.Private.CoreLib.dll:System.Double.Abs(System.Double) System.Private.CoreLib.dll:System.Double.CompareTo(System.Double) System.Private.CoreLib.dll:System.Double.CompareTo(System.Object) System.Private.CoreLib.dll:System.Double.ConvertToIntegerNative`1(System.Double) +System.Private.CoreLib.dll:System.Double.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Double.CreateDouble(System.Boolean, System.UInt16, System.UInt64) System.Private.CoreLib.dll:System.Double.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Double.CreateTruncating`1(TOther) @@ -5717,14 +5819,19 @@ System.Private.CoreLib.dll:System.Double.Equals(System.Object) System.Private.CoreLib.dll:System.Double.GetHashCode() System.Private.CoreLib.dll:System.Double.GetTypeCode() System.Private.CoreLib.dll:System.Double.IsFinite(System.Double) +System.Private.CoreLib.dll:System.Double.IsInfinity(System.Double) +System.Private.CoreLib.dll:System.Double.IsInteger(System.Double) System.Private.CoreLib.dll:System.Double.IsNaN(System.Double) System.Private.CoreLib.dll:System.Double.IsNaNOrZero(System.Double) System.Private.CoreLib.dll:System.Double.IsNegative(System.Double) +System.Private.CoreLib.dll:System.Double.IsOddInteger(System.Double) System.Private.CoreLib.dll:System.Double.IsZero(System.Double) +System.Private.CoreLib.dll:System.Double.Log2(System.Double) System.Private.CoreLib.dll:System.Double.Max(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.Min(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_Equality(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_GreaterThan(System.Double, System.Double) +System.Private.CoreLib.dll:System.Double.op_GreaterThanOrEqual(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_Inequality(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_LessThan(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_LessThanOrEqual(System.Double, System.Double) @@ -5774,15 +5881,20 @@ System.Private.CoreLib.dll:System.Double.System.IConvertible.ToUInt64(System.IFo System.Private.CoreLib.dll:System.Double.System.Numerics.IAdditionOperators.op_Addition(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Double, System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.IDivisionOperators.op_Division(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NaN() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NegativeInfinity() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NegativeZero() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_PositiveInfinity() System.Private.CoreLib.dll:System.Double.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Double.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Double.System.Numerics.IMultiplyOperators.op_Multiply(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.IsZero(System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertToChecked`1(System.Double, out TOther&) @@ -5793,6 +5905,7 @@ System.Private.CoreLib.dll:System.Double.System.Numerics.IUnaryNegationOperators System.Private.CoreLib.dll:System.Double.ToString() System.Private.CoreLib.dll:System.Double.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Double.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Double.Truncate(System.Double) System.Private.CoreLib.dll:System.Double.TryConvertFrom`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.TryConvertTo`1(System.Double, out TOther&) System.Private.CoreLib.dll:System.Double.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -6264,11 +6377,6 @@ System.Private.CoreLib.dll:System.GC/GC_ALLOC_FLAGS System.GC/GC_ALLOC_FLAGS::GC System.Private.CoreLib.dll:System.GC/GC_ALLOC_FLAGS System.GC/GC_ALLOC_FLAGS::GC_ALLOC_ZEROING_OPTIONAL System.Private.CoreLib.dll:System.GC/GCHeapHardLimitInfo System.Private.CoreLib.dll:System.GCGenerationInfo -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo0 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo1 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo2 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo3 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo4 System.Private.CoreLib.dll:System.GCKind System.Private.CoreLib.dll:System.GCKind System.GCKind::Any System.Private.CoreLib.dll:System.GCKind System.GCKind::Background @@ -7205,11 +7313,12 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globaliz System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::InvariantInfo() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..cctor() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData) -System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|58_0(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|60_0(System.IFormatProvider) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|167_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|166_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|165_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.AllowHyphenDuringParsing() +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CreateUtf8Cache(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyGroupSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencySymbolTChar`1() @@ -7232,6 +7341,7 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PercentPosi System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetFormat(System.Type) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetUtf8Span(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.InitializeInvariantAndNegativeSignFlags() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NaNSymbolTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NegativeInfinitySymbolTChar`1() @@ -7257,7 +7367,6 @@ System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalizatio System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowLeadingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowParentheses System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowThousands -System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingInvalidCharacters System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingSign System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::Any @@ -7627,6 +7736,7 @@ System.Private.CoreLib.dll:System.Guid.TryFormatCore`1(System.Span`1, out System.Private.CoreLib.dll:System.Guid.TryFormatX`1(System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Half System.Private.CoreLib.dll:System.Half System.Half::MaxValue() +System.Private.CoreLib.dll:System.Half System.Half::MinValue() System.Private.CoreLib.dll:System.Half System.Half::NaN() System.Private.CoreLib.dll:System.Half System.Half::NegativeInfinity() System.Private.CoreLib.dll:System.Half System.Half::NegativeZero() @@ -7638,6 +7748,7 @@ System.Private.CoreLib.dll:System.Half..ctor(System.UInt16) System.Private.CoreLib.dll:System.Half.AreZero(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.CompareTo(System.Half) System.Private.CoreLib.dll:System.Half.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Half.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Half.CreateDoubleNaN(System.Boolean, System.UInt64) System.Private.CoreLib.dll:System.Half.CreateHalfNaN(System.Boolean, System.UInt64) System.Private.CoreLib.dll:System.Half.CreateSaturating`1(TOther) @@ -7648,6 +7759,7 @@ System.Private.CoreLib.dll:System.Half.ExtractBiasedExponentFromBits(System.UInt System.Private.CoreLib.dll:System.Half.ExtractTrailingSignificandFromBits(System.UInt16) System.Private.CoreLib.dll:System.Half.get_BiasedExponent() System.Private.CoreLib.dll:System.Half.get_MaxValue() +System.Private.CoreLib.dll:System.Half.get_MinValue() System.Private.CoreLib.dll:System.Half.get_NaN() System.Private.CoreLib.dll:System.Half.get_NegativeInfinity() System.Private.CoreLib.dll:System.Half.get_NegativeZero() @@ -7655,12 +7767,16 @@ System.Private.CoreLib.dll:System.Half.get_One() System.Private.CoreLib.dll:System.Half.get_PositiveInfinity() System.Private.CoreLib.dll:System.Half.get_TrailingSignificand() System.Private.CoreLib.dll:System.Half.get_Zero() +System.Private.CoreLib.dll:System.Half.GetCompareKey(System.UInt16) System.Private.CoreLib.dll:System.Half.GetHashCode() System.Private.CoreLib.dll:System.Half.IsFinite(System.Half) +System.Private.CoreLib.dll:System.Half.IsInfinity(System.Half) System.Private.CoreLib.dll:System.Half.IsNaN(System.Half) System.Private.CoreLib.dll:System.Half.IsNaNOrZero(System.Half) System.Private.CoreLib.dll:System.Half.IsNegative(System.Half) +System.Private.CoreLib.dll:System.Half.IsOddInteger(System.Half) System.Private.CoreLib.dll:System.Half.IsZero(System.Half) +System.Private.CoreLib.dll:System.Half.Log2(System.Half) System.Private.CoreLib.dll:System.Half.NormSubnormalF16Sig(System.UInt32) System.Private.CoreLib.dll:System.Half.op_Addition(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) @@ -7671,6 +7787,12 @@ System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_Division(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Equality(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Explicit(System.Char) => System.Half System.Private.CoreLib.dll:System.Half.op_Explicit(System.Decimal) => System.Half @@ -7707,6 +7829,7 @@ System.Private.CoreLib.dll:System.Half.op_Implicit(System.SByte) => System.Half System.Private.CoreLib.dll:System.Half.op_Inequality(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_LessThan(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_LessThanOrEqual(System.Half, System.Half) +System.Private.CoreLib.dll:System.Half.op_Multiply(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Subtraction(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_UnaryNegation(System.Half) System.Private.CoreLib.dll:System.Half.RoundPackToHalf(System.Boolean, System.Int16, System.UInt16) @@ -7739,8 +7862,10 @@ System.Private.CoreLib.dll:System.Half.System.IBinaryFloatParseAndFormatInfo.get_ZeroBits() System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Half, System.Half) +System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.IsZero(System.Half) +System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertToChecked`1(System.Half, out TOther&) @@ -7849,6 +7974,42 @@ System.Private.CoreLib.dll:System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.ICustomFormatter System.Private.CoreLib.dll:System.ICustomFormatter.Format(System.String, System.Object, System.IFormatProvider) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2 +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.ConvertToExponent(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.CountDigits(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.DivRemPow10(TValue, System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_BufferLength() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_ExponentBias() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G0G1Mask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxSignificand() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MinExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NaN() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NaNMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NegativeInfinity() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_PositiveInfinity() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_Precision() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_SignMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_Zero() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsFinite(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNaN(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNegative(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNegativeInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsPositiveInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.Power10(System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.ToDecStr(TValue) System.Private.CoreLib.dll:System.IDisposable System.Private.CoreLib.dll:System.IDisposable.Dispose() System.Private.CoreLib.dll:System.IEquatable`1 @@ -7865,6 +8026,7 @@ System.Private.CoreLib.dll:System.Index System.Range::k__BackingField System.Private.CoreLib.dll:System.Index System.Range::k__BackingField System.Private.CoreLib.dll:System.Index System.Range::End() System.Private.CoreLib.dll:System.Index System.Range::Start() +System.Private.CoreLib.dll:System.Index..ctor(System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Index..ctor(System.Int32) System.Private.CoreLib.dll:System.Index.Equals(System.Index) System.Private.CoreLib.dll:System.Index.Equals(System.Object) @@ -7897,8 +8059,10 @@ System.Private.CoreLib.dll:System.Int128 System.Int128::Zero() System.Private.CoreLib.dll:System.Int128..ctor(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.Int128.CompareTo(System.Int128) System.Private.CoreLib.dll:System.Int128.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int128.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int128.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int128.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int128.DivRem(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.Equals(System.Int128) System.Private.CoreLib.dll:System.Int128.Equals(System.Object) System.Private.CoreLib.dll:System.Int128.get_MaxValue() @@ -7907,7 +8071,11 @@ System.Private.CoreLib.dll:System.Int128.get_One() System.Private.CoreLib.dll:System.Int128.get_Zero() System.Private.CoreLib.dll:System.Int128.GetHashCode() System.Private.CoreLib.dll:System.Int128.IsNegative(System.Int128) +System.Private.CoreLib.dll:System.Int128.IsOddInteger(System.Int128) System.Private.CoreLib.dll:System.Int128.IsPositive(System.Int128) +System.Private.CoreLib.dll:System.Int128.LeadingZeroCount(System.Int128) +System.Private.CoreLib.dll:System.Int128.LeadingZeroCountAsInt32(System.Int128) +System.Private.CoreLib.dll:System.Int128.Log2(System.Int128) System.Private.CoreLib.dll:System.Int128.op_Addition(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_BitwiseAnd(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_BitwiseOr(System.Int128, System.Int128) @@ -7920,7 +8088,14 @@ System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Single) +System.Private.CoreLib.dll:System.Int128.op_Division(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Equality(System.Int128, System.Int128) +System.Private.CoreLib.dll:System.Int128.op_ExclusiveOr(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Decimal) => System.Int128 System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Double) => System.Int128 System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Int128) => System.Byte @@ -7959,6 +8134,7 @@ System.Private.CoreLib.dll:System.Int128.op_LessThan(System.Int128, System.Int12 System.Private.CoreLib.dll:System.Int128.op_LessThanOrEqual(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Multiply(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_OnesComplement(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_RightShift(System.Int128, System.Int32) System.Private.CoreLib.dll:System.Int128.op_Subtraction(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_UnaryNegation(System.Int128) System.Private.CoreLib.dll:System.Int128.op_UnsignedRightShift(System.Int128, System.Int32) @@ -7970,9 +8146,12 @@ System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.IsGreaterThanAsUnsigned(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy10(System.Int128) System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy16(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsFinite(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsInfinity(System.Int128) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsNaN(System.Int128) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsZero(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int128, out TOther&) @@ -7981,6 +8160,7 @@ System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -7993,6 +8173,7 @@ System.Private.CoreLib.dll:System.Int16 System.Guid::_c System.Private.CoreLib.dll:System.Int16 System.Int16::m_value System.Private.CoreLib.dll:System.Int16 System.Int16::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token @@ -8031,13 +8212,18 @@ System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1::_tok System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_token System.Private.CoreLib.dll:System.Int16.CompareTo(System.Int16) System.Private.CoreLib.dll:System.Int16.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int16.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int16.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int16.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int16.DivRem(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Equals(System.Int16) System.Private.CoreLib.dll:System.Int16.Equals(System.Object) System.Private.CoreLib.dll:System.Int16.GetHashCode() System.Private.CoreLib.dll:System.Int16.GetTypeCode() System.Private.CoreLib.dll:System.Int16.IsNegative(System.Int16) +System.Private.CoreLib.dll:System.Int16.IsOddInteger(System.Int16) +System.Private.CoreLib.dll:System.Int16.LeadingZeroCount(System.Int16) +System.Private.CoreLib.dll:System.Int16.Log2(System.Int16) System.Private.CoreLib.dll:System.Int16.Max(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Min(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -8067,31 +8253,41 @@ System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.System.Numerics.IAdditionOperators.op_Addition(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_LessThan(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IDivisionOperators.op_Division(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IEqualityOperators.op_Equality(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IEqualityOperators.op_Inequality(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int16.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int16.System.Numerics.IMultiplyOperators.op_Multiply(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsFinite(System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsInfinity(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsNaN(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsZero(System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.IShiftOperators.op_LeftShift(System.Int16, System.Int32) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IShiftOperators.op_RightShift(System.Int16, System.Int32) System.Private.CoreLib.dll:System.Int16.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int16) System.Private.CoreLib.dll:System.Int16.ToString() System.Private.CoreLib.dll:System.Int16.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Int16.TryConvertFromChecked`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryConvertFromSaturating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryConvertFromTruncating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -8243,6 +8439,7 @@ System.Private.CoreLib.dll:System.Int32 System.Decimal::_flags System.Private.CoreLib.dll:System.Int32 System.Decimal/DecCalc::Scale() System.Private.CoreLib.dll:System.Int32 System.DefaultBinder/BinderState::_originalSize System.Private.CoreLib.dll:System.Int32 System.DefaultBinder/Primitives::value__ +System.Private.CoreLib.dll:System.Int32 System.Delegate/BindToMethodDetails::selfReferentialTarget System.Private.CoreLib.dll:System.Int32 System.Delegate/InvocationListEnumerator`1::_index System.Private.CoreLib.dll:System.Int32 System.DelegateBindingFlags::value__ System.Private.CoreLib.dll:System.Int32 System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes::value__ @@ -8437,6 +8634,14 @@ System.Private.CoreLib.dll:System.Int32 System.IBinaryFloatParseAndFormatInfo`1: System.Private.CoreLib.dll:System.Int32 System.IBinaryFloatParseAndFormatInfo`1::OverflowDecimalExponent() System.Private.CoreLib.dll:System.Int32 System.IBinaryIntegerParseAndFormatInfo`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.IBinaryIntegerParseAndFormatInfo`1::MaxHexDigitCount() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::BufferLength() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MinExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::Precision() System.Private.CoreLib.dll:System.Int32 System.Index::_value System.Private.CoreLib.dll:System.Int32 System.Index::Value() System.Private.CoreLib.dll:System.Int32 System.Int128::System.IBinaryIntegerParseAndFormatInfo.MaxDigitCount() @@ -8448,6 +8653,7 @@ System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParse System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParseAndFormatInfo.MaxHexDigitCount() System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int32 System.Int64::System.IBinaryIntegerParseAndFormatInfo.MaxDigitCount() @@ -8498,12 +8704,40 @@ System.Private.CoreLib.dll:System.Int32 System.Memory`1::Length() System.Private.CoreLib.dll:System.Int32 System.MidpointRounding::value__ System.Private.CoreLib.dll:System.Int32 System.Number/BigInteger::_length System.Private.CoreLib.dll:System.Int32 System.Number/BinaryParser`1::MaxDigitCount() +System.Private.CoreLib.dll:System.Int32 System.Number/DecimalIeee754ToIntegerStatus::value__ +System.Private.CoreLib.dll:System.Int32 System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Number/DecodedDecimalIeee754`1::UnbiasedExponent() System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp::e +System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp128::_exponent System.Private.CoreLib.dll:System.Int32 System.Number/HexParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/IHexOrBinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::DigitsCount System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::Scale System.Private.CoreLib.dll:System.Int32 System.Number/ParsingStatus::value__ +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.Precision() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.Precision() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.Precision() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector::Alignment() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector`1::Count() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector`1::System.Runtime.Intrinsics.ISimdVector,T>.Alignment() @@ -8613,6 +8847,7 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::Generic System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_maxCacheSize @@ -8780,7 +9015,6 @@ System.Private.CoreLib.dll:System.Int32 System.Threading.AbandonedMutexException System.Private.CoreLib.dll:System.Int32 System.Threading.CancellationTokenSource/States::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.EventResetMode::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::_owningThreadId -System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::OwningThreadId() System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::s_staticsInitializationStage System.Private.CoreLib.dll:System.Int32 System.Threading.Lock/Scope::_currentThreadId System.Private.CoreLib.dll:System.Int32 System.Threading.Lock/StaticsInitializationStage::value__ @@ -8900,11 +9134,14 @@ System.Private.CoreLib.dll:System.Int32.CompareTo(System.Object) System.Private.CoreLib.dll:System.Int32.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int32.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int32.DivRem(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Equals(System.Int32) System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.IsOddInteger(System.Int32) +System.Private.CoreLib.dll:System.Int32.LeadingZeroCount(System.Int32) System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) @@ -8935,26 +9172,35 @@ System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int32.System.Numerics.IAdditionOperators.op_Addition(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_LessThan(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IDivisionOperators.op_Division(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IEqualityOperators.op_Equality(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IEqualityOperators.op_Inequality(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int32.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int32.System.Numerics.IMultiplyOperators.op_Multiply(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsFinite(System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsInfinity(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsNaN(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsZero(System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.IShiftOperators.op_LeftShift(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IShiftOperators.op_RightShift(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int32) System.Private.CoreLib.dll:System.Int32.ToString() @@ -9055,6 +9301,7 @@ System.Private.CoreLib.dll:System.Int64 System.Globalization.PersianCalendar::s_ System.Private.CoreLib.dll:System.Int64 System.Int64::m_value System.Private.CoreLib.dll:System.Int64 System.Int64::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int64 System.IO.FileStream::Length() @@ -9112,13 +9359,18 @@ System.Private.CoreLib.dll:System.Int64 System.TimeZoneInfo/DateTimeNowCache::_n System.Private.CoreLib.dll:System.Int64 System.TimeZoneInfo/DateTimeNowCache::_nowUtcOffsetTicks System.Private.CoreLib.dll:System.Int64.CompareTo(System.Int64) System.Private.CoreLib.dll:System.Int64.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int64.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int64.DivRem(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Equals(System.Int64) System.Private.CoreLib.dll:System.Int64.Equals(System.Object) System.Private.CoreLib.dll:System.Int64.GetHashCode() System.Private.CoreLib.dll:System.Int64.GetTypeCode() System.Private.CoreLib.dll:System.Int64.IsNegative(System.Int64) +System.Private.CoreLib.dll:System.Int64.IsOddInteger(System.Int64) +System.Private.CoreLib.dll:System.Int64.LeadingZeroCount(System.Int64) +System.Private.CoreLib.dll:System.Int64.Log2(System.Int64) System.Private.CoreLib.dll:System.Int64.Max(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Min(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -9148,32 +9400,42 @@ System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.System.Numerics.IAdditionOperators.op_Addition(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_LessThan(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IDivisionOperators.op_Division(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IEqualityOperators.op_Equality(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IEqualityOperators.op_Inequality(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int64.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int64.System.Numerics.IMultiplyOperators.op_Multiply(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsFinite(System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsInfinity(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsNaN(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsZero(System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.IShiftOperators.op_LeftShift(System.Int64, System.Int32) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IShiftOperators.op_RightShift(System.Int64, System.Int32) System.Private.CoreLib.dll:System.Int64.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int64) System.Private.CoreLib.dll:System.Int64.ToString() System.Private.CoreLib.dll:System.Int64.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.ToString(System.String) +System.Private.CoreLib.dll:System.Int64.TryConvertFromChecked`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryConvertFromSaturating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryConvertFromTruncating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -9189,19 +9451,24 @@ System.Private.CoreLib.dll:System.IntPtr System.ArgIterator::_argPtr System.Private.CoreLib.dll:System.IntPtr System.ArgIterator/SigPointer::_ptr System.Private.CoreLib.dll:System.IntPtr System.ComAwareWeakReference::_weakHandle System.Private.CoreLib.dll:System.IntPtr System.ComAwareWeakReference/ComInfo::_pComWeakRef +System.Private.CoreLib.dll:System.IntPtr System.Delegate::_extraData System.Private.CoreLib.dll:System.IntPtr System.Delegate::_methodPtr System.Private.CoreLib.dll:System.IntPtr System.Delegate::_methodPtrAux +System.Private.CoreLib.dll:System.IntPtr System.Delegate::UnmanagedMarker +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::extraData +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::methodPtr +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::methodPtrAux System.Private.CoreLib.dll:System.IntPtr System.Diagnostics.Tracing.EventSource::m_writeEventStringEventHandle System.Private.CoreLib.dll:System.IntPtr System.Exception::_xptrs System.Private.CoreLib.dll:System.IntPtr System.IntPtr::_value System.Private.CoreLib.dll:System.IntPtr System.IntPtr::MaxValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::MinValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::Zero System.Private.CoreLib.dll:System.IntPtr System.IO.Enumeration.FileSystemEnumerator`1::_directoryHandle -System.Private.CoreLib.dll:System.IntPtr System.MulticastDelegate::_invocationCount System.Private.CoreLib.dll:System.IntPtr System.Reflection.ConstArray::m_constArray System.Private.CoreLib.dll:System.IntPtr System.Reflection.ConstArray::Signature() System.Private.CoreLib.dll:System.IntPtr System.Reflection.FieldAccessor::_addressOrOffset @@ -9282,7 +9549,6 @@ System.Private.CoreLib.dll:System.IntPtr System.RuntimeType::m_cache System.Private.CoreLib.dll:System.IntPtr System.RuntimeType::m_handle System.Private.CoreLib.dll:System.IntPtr System.RuntimeTypeHandle::Value() System.Private.CoreLib.dll:System.IntPtr System.Threading.AutoreleasePool::s_AutoreleasePoolInstance -System.Private.CoreLib.dll:System.IntPtr System.Threading.Lock::LockIdForEvents() System.Private.CoreLib.dll:System.IntPtr System.Threading.LowLevelMonitor::_nativeMonitor System.Private.CoreLib.dll:System.IntPtr System.Threading.Thread::_DONT_USE_InternalThread System.Private.CoreLib.dll:System.IntPtr System.Threading.Thread/DirectOnThreadLocalData::pNativeThread @@ -9296,8 +9562,10 @@ System.Private.CoreLib.dll:System.IntPtr..ctor(System.Int64) System.Private.CoreLib.dll:System.IntPtr..ctor(System.Void*) System.Private.CoreLib.dll:System.IntPtr.CompareTo(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.CompareTo(System.Object) +System.Private.CoreLib.dll:System.IntPtr.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.IntPtr.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.IntPtr.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.IntPtr.DivRem(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Equals(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Equals(System.Object) System.Private.CoreLib.dll:System.IntPtr.get_MaxValue() @@ -9305,29 +9573,41 @@ System.Private.CoreLib.dll:System.IntPtr.get_MinValue() System.Private.CoreLib.dll:System.IntPtr.get_Size() System.Private.CoreLib.dll:System.IntPtr.GetHashCode() System.Private.CoreLib.dll:System.IntPtr.IsNegative(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.IsOddInteger(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.LeadingZeroCount(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.Log2(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Max(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Min(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.op_Equality(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.op_Inequality(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IAdditionOperators.op_Addition(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_OnesComplement(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_GreaterThan(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_LessThan(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IDivisionOperators.op_Division(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMultiplyOperators.op_Multiply(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsFinite(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsInfinity(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsNaN(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsZero(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToChecked`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToSaturating`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToTruncating`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IShiftOperators.op_LeftShift(System.IntPtr, System.Int32) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IShiftOperators.op_RightShift(System.IntPtr, System.Int32) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.ISubtractionOperators.op_Subtraction(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.ToInt64() @@ -9335,6 +9615,7 @@ System.Private.CoreLib.dll:System.IntPtr.ToPointer() System.Private.CoreLib.dll:System.IntPtr.ToString() System.Private.CoreLib.dll:System.IntPtr.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.IntPtr.ToString(System.String) +System.Private.CoreLib.dll:System.IntPtr.TryConvertFromChecked`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryConvertFromSaturating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryConvertFromTruncating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -9780,6 +10061,7 @@ System.Private.CoreLib.dll:System.IO.RandomAccess.ReadScatterAtOffset(Microsoft. System.Private.CoreLib.dll:System.IO.RandomAccess.ShouldFallBackToNonOffsetSyscall(Interop/ErrorInfo) System.Private.CoreLib.dll:System.IO.RandomAccess.ValidateInput(Microsoft.Win32.SafeHandles.SafeFileHandle, System.Int64, System.Boolean) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlySpan`1, System.Int64) +System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlySpan`1, System.Int64&) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffsetAsync(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlyMemory`1, System.Int64, System.Threading.CancellationToken, System.IO.Strategies.OSFileStreamStrategy) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteGatherAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.Collections.Generic.IReadOnlyList`1>, System.Int64) System.Private.CoreLib.dll:System.IO.SearchOption @@ -10046,7 +10328,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value -System.Private.CoreLib.dll:System.IRuntimeMethodInfo.get_Value() +System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable System.Private.CoreLib.dll:System.ISpanFormattable.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.IUtf8SpanFormattable @@ -10079,8 +10361,8 @@ System.Private.CoreLib.dll:System.Marvin.ComputeHash32OrdinalIgnoreCaseSlow(Syst System.Private.CoreLib.dll:System.Marvin.GenerateSeed() System.Private.CoreLib.dll:System.Marvin.get_DefaultSeed() System.Private.CoreLib.dll:System.Math -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|47_0(System.UInt64, System.UInt64, out System.UInt64&) -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|53_0(System.Double, System.Double) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|45_0(System.UInt64, System.UInt64, out System.UInt64&) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|51_0(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Int32) System.Private.CoreLib.dll:System.Math.Abs(System.Single) @@ -10095,10 +10377,18 @@ System.Private.CoreLib.dll:System.Math.ConvertToUInt32Checked(System.Double) System.Private.CoreLib.dll:System.Math.ConvertToUInt64Checked(System.Double) System.Private.CoreLib.dll:System.Math.CopySign(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Cos(System.Double) +System.Private.CoreLib.dll:System.Math.DivRem(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Math.DivRem(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Math.DivRem(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Math.DivRem(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Math.DivRem(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Math.DivRem(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.Math.DivRem(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.Math.DivRem(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.Math.DivRem(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Math.DivRem(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.Math.Floor(System.Double) +System.Private.CoreLib.dll:System.Math.Log2(System.Double) System.Private.CoreLib.dll:System.Math.Max(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Math.Max(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Max(System.Int16, System.Int16) @@ -10135,8 +10425,11 @@ System.Private.CoreLib.dll:System.Math.ThrowNegateTwosCompOverflow() System.Private.CoreLib.dll:System.Math.Truncate(System.Double) System.Private.CoreLib.dll:System.MathF System.Private.CoreLib.dll:System.MathF.Abs(System.Single) +System.Private.CoreLib.dll:System.MathF.Log2(System.Single) System.Private.CoreLib.dll:System.MathF.Max(System.Single, System.Single) System.Private.CoreLib.dll:System.MathF.Min(System.Single, System.Single) +System.Private.CoreLib.dll:System.MathF.ModF(System.Single, System.Single*) +System.Private.CoreLib.dll:System.MathF.Truncate(System.Single) System.Private.CoreLib.dll:System.MdUtf8String System.Private.CoreLib.dll:System.MdUtf8String System.RuntimeType/RuntimeTypeCache/Filter::m_name System.Private.CoreLib.dll:System.MdUtf8String..ctor(System.Byte*, System.Int32) @@ -10197,6 +10490,7 @@ System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAny`1(System.ReadOnlyS System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExcept`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExceptInRange`1(System.ReadOnlySpan`1, T, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyInRange`1(System.ReadOnlySpan`1, T, T) +System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.Max`1(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.Min`1(System.ReadOnlySpan`1) @@ -10295,29 +10589,6 @@ System.Private.CoreLib.dll:System.ModuleHandle.ResolveTypeHandle(System.Int32) System.Private.CoreLib.dll:System.ModuleHandle.ValidateModulePointer(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.MulticastDelegate System.Private.CoreLib.dll:System.MulticastDelegate System.Delegate/InvocationListEnumerator`1::_delegate -System.Private.CoreLib.dll:System.MulticastDelegate.CombineImpl(System.Delegate) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorClosed(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorClosedStatic(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleClosedStatic(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleOpened(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleVirtualDispatch(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorOpened(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorRTClosed(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorVirtualDispatch(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.DeleteFromInvocationList(System.Object[], System.Int32, System.Int32, System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.EqualInvocationLists(System.Object[], System.Object[], System.Int32, System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.Equals(System.Object) -System.Private.CoreLib.dll:System.MulticastDelegate.get_HasSingleTarget() -System.Private.CoreLib.dll:System.MulticastDelegate.GetHashCode() -System.Private.CoreLib.dll:System.MulticastDelegate.GetMethodImpl() -System.Private.CoreLib.dll:System.MulticastDelegate.InvocationListEquals(System.MulticastDelegate) -System.Private.CoreLib.dll:System.MulticastDelegate.IsUnmanagedFunctionPtr() -System.Private.CoreLib.dll:System.MulticastDelegate.NewMulticastDelegate(System.Object[], System.Int32, System.Boolean) -System.Private.CoreLib.dll:System.MulticastDelegate.NewMulticastDelegate(System.Object[], System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.RemoveImpl(System.Delegate) -System.Private.CoreLib.dll:System.MulticastDelegate.ThrowNullThisInDelegateToInstance() -System.Private.CoreLib.dll:System.MulticastDelegate.TryGetAt(System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.TrySetSlot(System.Object[], System.Int32, System.Object) System.Private.CoreLib.dll:System.MulticastNotSupportedException System.Private.CoreLib.dll:System.MulticastNotSupportedException..ctor() System.Private.CoreLib.dll:System.MulticastNotSupportedException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -10373,46 +10644,73 @@ System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String, Sy System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String) System.Private.CoreLib.dll:System.Number System.Private.CoreLib.dll:System.Number..cctor() -System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|192_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) -System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|60_0(System.Int128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|52_0(System.Int32, System.Int32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|56_0(System.Int64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|62_0(System.UInt128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|54_0(System.UInt32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|58_0(System.UInt64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__Slow|45_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) -System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|198_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|61_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|53_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|57_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|63_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|55_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|59_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|81_0(System.UInt32) +System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|560_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) +System.Private.CoreLib.dll:System.Number.g__InternalInfinityCompare|3_1`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.g__InternalUnsignedCompare|3_0`2(System.Number/DecodedDecimalIeee754`1, System.Number/DecodedDecimalIeee754`1) +System.Private.CoreLib.dll:System.Number.g__MaterializePreferredZeros|85_0`3(System.Number/NumberBuffer&, System.Span`1) +System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|416_0(System.Int128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|408_0(System.Int32, System.Int32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|412_0(System.Int64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|418_0(System.UInt128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|410_0(System.UInt32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|414_0(System.UInt64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__Slow|401_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.g__ClampExponentOverflow|9_0`2(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|566_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|417_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|409_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|413_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|419_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|411_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|415_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|437_0(System.UInt32) System.Private.CoreLib.dll:System.Number.AccumulateDecimalDigitsIntoBigInteger(System.Number/NumberBuffer&, System.UInt32, System.UInt32, out System.Number/BigInteger&) +System.Private.CoreLib.dll:System.Number.AddDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.AlignmentScaleFactor`2(System.Int32) System.Private.CoreLib.dll:System.Number.AppendUnknownChar`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) System.Private.CoreLib.dll:System.Number.AssembleFloatingPointBits`1(System.UInt64, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.CalculatePower(System.Int32) +System.Private.CoreLib.dll:System.Number.ClassifyIntegerParityDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.CompareDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.ComputeFloat`1(System.Int64, System.UInt64) System.Private.CoreLib.dll:System.Number.ComputeProductApproximation(System.Int32, System.Int64, System.UInt64) System.Private.CoreLib.dll:System.Number.ConsumeTrailingNulls`1(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.ConvertBigIntegerToFloatingPointBits`1(System.Number/BigInteger&, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754`4(TSourceValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToDecimal`2(TValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToFloat`3(TValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToInteger`3(TValue, System.Boolean) +System.Private.CoreLib.dll:System.Number.ConvertDecimalToDecimalIeee754`2(System.Decimal) +System.Private.CoreLib.dll:System.Number.ConvertFloatToDecimalIeee754`3(TFloat) +System.Private.CoreLib.dll:System.Number.ConvertIntegerToDecimalIeee754`3(TInteger) System.Private.CoreLib.dll:System.Number.CurrencyGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.DecimalIeee754FiniteNumberBinaryEncoding`2(System.Boolean, TValue, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754FromMagnitude`2(System.Boolean, System.UInt128, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754Rounding`2(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754ToIntegerMagnitude`2(TValue, out System.Boolean&, out System.UInt128&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.DecimalIeee754ToNumber`2(TValue, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.DecimalToNumber(System.Decimal&, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.DigitsToUInt32(System.Byte*, System.Int32) System.Private.CoreLib.dll:System.Number.DigitsToUInt64(System.Byte*, System.Int32) -System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.DivideDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&, out System.Boolean&) System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.DropDigits`2(TValue&, TValue&, System.Int32, System.Boolean&, out System.Int32&) +System.Private.CoreLib.dll:System.Number.EqualsDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.ExtractFractionAndBiasedExponent`1(TNumber, out System.Int32&) System.Private.CoreLib.dll:System.Number.FindSection(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.FormatCurrency`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatDecimal(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.FormatDecimalIeee754`2(TValue, System.String, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.FormatDecimalIeee754`3(System.Collections.Generic.ValueListBuilder`1&, TValue, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatExponent`1(System.Collections.Generic.ValueListBuilder`1&, System.Globalization.NumberFormatInfo, System.Int32, System.Char, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.FormatFixed`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Int32[], System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.FormatFloat`1(TNumber, System.String, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatFloat`2(System.Collections.Generic.ValueListBuilder`1&, TNumber, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatFloatingPointAsHex`2(System.Collections.Generic.ValueListBuilder`1&, TNumber, System.Char, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatGeneral`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Globalization.NumberFormatInfo, System.Char, System.Boolean) +System.Private.CoreLib.dll:System.Number.FormatGeneralAndRoundTripDecimalIeee754`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Char, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatInt128(System.Int128, System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Number.FormatInt32(System.Int32, System.Int32, System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Number.FormatInt64(System.Int64, System.String, System.IFormatProvider) @@ -10426,9 +10724,12 @@ System.Private.CoreLib.dll:System.Number.get_Pow10DoubleTable() System.Private.CoreLib.dll:System.Number.get_Pow5128Table() System.Private.CoreLib.dll:System.Number.get_TwoDigitsBytes() System.Private.CoreLib.dll:System.Number.get_TwoDigitsCharsAsBytes() +System.Private.CoreLib.dll:System.Number.GetDecimalIeee754HashCode`2(TValue) System.Private.CoreLib.dll:System.Number.GetFloatingPointMaxDigitsAndPrecision(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) System.Private.CoreLib.dll:System.Number.GetHexBase(System.Char) System.Private.CoreLib.dll:System.Number.GetTwoDigitsBytesRef(System.Boolean) +System.Private.CoreLib.dll:System.Number.GreaterThanDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.GreaterThanOrEqualDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.HasNegativeSection(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.Int128DivMod1E19(System.UInt128&) System.Private.CoreLib.dll:System.Number.Int128ToDecStr(System.Int128) @@ -10444,15 +10745,22 @@ System.Private.CoreLib.dll:System.Number.Int64ToHexChars`1(TChar*, System.UInt64 System.Private.CoreLib.dll:System.Number.Int64ToHexStr(System.Int64, System.Char, System.Int32) System.Private.CoreLib.dll:System.Number.Int64ToNumber(System.Int64, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.IsDigit(System.UInt32) +System.Private.CoreLib.dll:System.Number.IsOddIntegerDecimalIeee754`2(TValue) System.Private.CoreLib.dll:System.Number.IsSpaceReplacingChar(System.UInt32) System.Private.CoreLib.dll:System.Number.IsWhite(System.UInt32) +System.Private.CoreLib.dll:System.Number.IsZeroDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.LessThanDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.LessThanOrEqualDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.MatchChars`1(TChar*, TChar*, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.MatchNegativeSignChars`1(TChar*, TChar*, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.MultiplyDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.NegativeInt128ToDecStr(System.Int128, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NegativeInt32ToDecStr(System.Int32, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NegativeInt64ToDecStr(System.Int64, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NormalizeSpaceReplacingChar(System.UInt32) System.Private.CoreLib.dll:System.Number.NumberGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.NumberToDecimalIeee754Bits`2(System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.NumberToDecimalIeee754BitsFromWide`2(System.Boolean, TValue, TValue, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.NumberToFloat`1(System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.NumberToFloatingPointBits`1(System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.NumberToFloatingPointBitsSlow`1(System.Number/NumberBuffer&, System.UInt32, System.UInt32, System.UInt32) @@ -10464,19 +10772,27 @@ System.Private.CoreLib.dll:System.Number.ParseEightDigitsUnrolled(System.Byte*) System.Private.CoreLib.dll:System.Number.ParseFloat`2(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.ParseFormatSpecifier(System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.PercentGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.PropagateNaN`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.RightShiftWithRounding(System.UInt64, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.RoundNumber(System.Number/NumberBuffer&, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.RoundToZeroOrEpsilon`2(System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.RoundWideToSignificand`2(System.Boolean, TValue, TValue, System.Int32, System.Int32, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.RoundWideToZeroOrEpsilon`2(System.Boolean, TValue, TValue, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.ShouldRoundUp(System.Boolean, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Number.SinglePassPow10`1(out TValue&) System.Private.CoreLib.dll:System.Number.SpanEqualsOrdinalIgnoreCase`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.SpanStartsWith`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.StringComparison) System.Private.CoreLib.dll:System.Number.SpanStartsWith`1(System.ReadOnlySpan`1, TChar) System.Private.CoreLib.dll:System.Number.SpanTrimStart`1(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Number.SubtractDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.ThrowDecimalOverflowException() System.Private.CoreLib.dll:System.Number.ThrowFormatException`1(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.Number.ThrowOverflowException(System.String) System.Private.CoreLib.dll:System.Number.ThrowOverflowException`1() System.Private.CoreLib.dll:System.Number.ThrowOverflowOrFormatException`2(System.Number/ParsingStatus, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.TryCopyTo`1(System.String, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.TryFloatingPointBitsFromMantissa`1(System.UInt64, System.Int32, out System.UInt64&) System.Private.CoreLib.dll:System.Number.TryFormatDecimal`1(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.TryFormatDecimalIeee754`3(TValue, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatFloat`2(TNumber, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatInt128`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatInt32`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) @@ -10533,6 +10849,12 @@ System.Private.CoreLib.dll:System.Number.UInt64ToDecChars`1(TChar*, System.UInt6 System.Private.CoreLib.dll:System.Number.UInt64ToDecStr(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Number.UInt64ToDecStr(System.UInt64) System.Private.CoreLib.dll:System.Number.UInt64ToNumber(System.UInt64, System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.UnpackDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.WideDigitCount`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.WideDivideByPow10`1(TValue&, TValue&, TValue) +System.Private.CoreLib.dll:System.Number.WideMultiply`1(TValue, TValue, out TValue&, out TValue&) +System.Private.CoreLib.dll:System.Number.WidePow10`1(System.Int32) +System.Private.CoreLib.dll:System.Number.WriteDecimalDigits(System.UInt128, System.Span`1) System.Private.CoreLib.dll:System.Number.WriteDigits`1(System.UInt32, TChar*, System.Int32) System.Private.CoreLib.dll:System.Number.WriteFourDigits`1(System.UInt32, TChar*) System.Private.CoreLib.dll:System.Number.WriteTwoDigits`1(System.UInt32, TChar*) @@ -10569,6 +10891,7 @@ System.Private.CoreLib.dll:System.Number/BigInteger.SetValue(out System.Number/B System.Private.CoreLib.dll:System.Number/BigInteger.SetZero(out System.Number/BigInteger&) System.Private.CoreLib.dll:System.Number/BigInteger.ShiftLeft(System.Int32) System.Private.CoreLib.dll:System.Number/BigInteger.SubtractDivisor(System.Number/BigInteger&, System.Int32, System.Number/BigInteger&, System.UInt64) +System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt128() System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt32() System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt64() System.Private.CoreLib.dll:System.Number/BigInteger/BlocksBuffer @@ -10579,6 +10902,16 @@ System.Private.CoreLib.dll:System.Number/BinaryParser`1.get_MaxDigitCount() System.Private.CoreLib.dll:System.Number/BinaryParser`1.get_MaxDigitValue() System.Private.CoreLib.dll:System.Number/BinaryParser`1.IsValidChar(System.UInt32) System.Private.CoreLib.dll:System.Number/BinaryParser`1.ShiftLeftForNextDigit(TInteger) +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::Finite +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::NaN +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::NegativeInfinity +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::PositiveInfinity +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1 +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1..ctor(System.Boolean, System.Int32, TSignificand) +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_Signed() +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_Significand() +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_UnbiasedExponent() System.Private.CoreLib.dll:System.Number/DiyFp System.Private.CoreLib.dll:System.Number/DiyFp..ctor(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Number/DiyFp.Create`1(TNumber) @@ -10587,6 +10920,31 @@ System.Private.CoreLib.dll:System.Number/DiyFp.GetBoundaries(System.Int32, out S System.Private.CoreLib.dll:System.Number/DiyFp.Multiply(System.Number/DiyFp&) System.Private.CoreLib.dll:System.Number/DiyFp.Normalize() System.Private.CoreLib.dll:System.Number/DiyFp.Subtract(System.Number/DiyFp&) +System.Private.CoreLib.dll:System.Number/DiyFp128 +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxHalf +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxOne +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxThreeQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128..ctor(System.UInt32, System.Int32, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::InvTrigConstants +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::PiFractionConstants +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Exp10Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::ExpCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperCoshCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperSinhCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Log2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Pow2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::PowLog2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigCosCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigSinCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanNumeratorCoefficients System.Private.CoreLib.dll:System.Number/Grisu3 System.Private.CoreLib.dll:System.Number/Grisu3.BiggestPowerTen(System.UInt32, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Number/Grisu3.get_CachedPowersBinaryExponent() @@ -10621,6 +10979,7 @@ System.Private.CoreLib.dll:System.Number/NumberBuffer.ToString() System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBuffer::Kind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Decimal +System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::DecimalIeee754 System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::FloatingPoint System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Integer System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Unknown @@ -10628,9 +10987,13 @@ System.Private.CoreLib.dll:System.Number/ParsingStatus System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Failed System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::OK System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Overflow +System.Private.CoreLib.dll:System.Number/SqrtCoefficients +System.Private.CoreLib.dll:System.Number/SqrtCoefficients..ctor(System.Single, System.Single, System.Double) +System.Private.CoreLib.dll:System.Number/SqrtCoefficients[] System.Number::s_sqrtTable System.Private.CoreLib.dll:System.Numerics.BitOperations System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|22_0(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|23_0(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.BitOperations.FlipBit(System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.get_Log2DeBruijn() System.Private.CoreLib.dll:System.Numerics.BitOperations.get_TrailingZeroCountDeBruijn() System.Private.CoreLib.dll:System.Numerics.BitOperations.IsPow2(System.Int32) @@ -10640,6 +11003,7 @@ System.Private.CoreLib.dll:System.Numerics.BitOperations.LeadingZeroCount(System System.Private.CoreLib.dll:System.Numerics.BitOperations.LeadingZeroCount(System.UIntPtr) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UIntPtr) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2SoftwareFallback(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.PopCount(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.PopCount(System.UInt64) @@ -10649,19 +11013,459 @@ System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UInt3 System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UIntPtr, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateRight(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Numerics.BitOperations.RoundUpToPowerOf2(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.TrailingZeroCount(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.TrailingZeroCount(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::One() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128..cctor() +System.Private.CoreLib.dll:System.Numerics.Decimal128..ctor(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CompareTo(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.Equals(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeInfinityValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeZeroValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_OneValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_PositiveInfinityValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_QuietNaNValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_ZeroValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsFinite(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNaN(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNegative(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNegativeInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsOddInteger(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsPositiveInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Addition(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Division(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Equality(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Double) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Half) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Int128) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Single) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.UInt128) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_GreaterThan(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_GreaterThanOrEqual(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Byte) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Char) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Decimal) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int16) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.IntPtr) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.SByte) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt16) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UIntPtr) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Inequality(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_LessThan(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_LessThanOrEqual(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Multiply(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Subtraction(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_UnaryNegation(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt128, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal128.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryConvertFrom`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryConvertTo`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::One() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32..ctor(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CompareTo(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.Equals(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_UInt32Powers10() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsFinite(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNaN(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNegative(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNegativeInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsOddInteger(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsPositiveInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Addition(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Division(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Equality(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Decimal) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Double) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Half) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int32) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.IntPtr) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Single) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt32) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UIntPtr) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_GreaterThan(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_GreaterThanOrEqual(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Byte) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Char) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Int16) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Numerics.Decimal32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Numerics.Decimal32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.SByte) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.UInt16) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Inequality(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_LessThan(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_LessThanOrEqual(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Multiply(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Subtraction(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_UnaryNegation(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal32.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryConvertFrom`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryConvertTo`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::One() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64..ctor(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CompareTo(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.Equals(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_UInt64Powers10() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsFinite(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNaN(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNegative(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNegativeInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsOddInteger(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsPositiveInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Addition(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Division(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Equality(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Decimal) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Double) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Half) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Int128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Int64) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.IntPtr) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Single) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UInt128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UInt64) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UIntPtr) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_GreaterThan(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_GreaterThanOrEqual(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Byte) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Char) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Int16) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Int32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Numerics.Decimal64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.SByte) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.UInt16) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.UInt32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Inequality(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_LessThan(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_LessThanOrEqual(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Multiply(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Subtraction(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_UnaryNegation(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt64, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal64.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryConvertFrom`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryConvertTo`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Numerics.IAdditionOperators`3 System.Private.CoreLib.dll:System.Numerics.IAdditionOperators`3.op_Addition(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1 +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.DivRem(TSelf, TSelf) +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.GetByteCount() +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.LeadingZeroCount(TSelf) +System.Private.CoreLib.dll:System.Numerics.IBinaryNumber`1 +System.Private.CoreLib.dll:System.Numerics.IBinaryNumber`1.Log2(TSelf) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3 System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_BitwiseAnd(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_BitwiseOr(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_ExclusiveOr(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_OnesComplement(TSelf) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3 System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_GreaterThan(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_GreaterThanOrEqual(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_LessThan(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_LessThanOrEqual(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IDivisionOperators`3 +System.Private.CoreLib.dll:System.Numerics.IDivisionOperators`3.op_Division(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3 System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3.op_Equality(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3.op_Inequality(TSelf, TOther) @@ -10673,16 +11477,23 @@ System.Private.CoreLib.dll:System.Numerics.IFloatingPointIeee754`1.get_NegativeZ System.Private.CoreLib.dll:System.Numerics.IFloatingPointIeee754`1.get_PositiveInfinity() System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1 System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.IMultiplyOperators`3 +System.Private.CoreLib.dll:System.Numerics.IMultiplyOperators`3.op_Multiply(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.INumber`1 System.Private.CoreLib.dll:System.Numerics.INumberBase`1 +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.get_One() System.Private.CoreLib.dll:System.Numerics.INumberBase`1.get_Zero() System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsFinite(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsInfinity(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsNaN(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsNegative(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsOddInteger(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsZero(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromChecked`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromSaturating`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromTruncating`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToChecked`1(TSelf, out TOther&) @@ -10690,6 +11501,7 @@ System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToSaturating` System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToTruncating`1(TSelf, out TOther&) System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3 System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3.op_LeftShift(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3.op_RightShift(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.ISubtractionOperators`3 System.Private.CoreLib.dll:System.Numerics.ISubtractionOperators`3.op_Subtraction(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IUnaryNegationOperators`2 @@ -10735,12 +11547,15 @@ System.Private.CoreLib.dll:System.Numerics.Vector`1.GetHashCode() System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector`1, System.Numerics.Vector`1) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Division(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector`1) => System.Numerics.Vector`1 System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_LeftShift(System.Numerics.Vector`1, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector`1) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_RightShift(System.Numerics.Vector`1, System.Int32) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Numerics.Vector`1, System.Numerics.Vector`1, System.Numerics.Vector`1) @@ -10791,7 +11606,6 @@ System.Private.CoreLib.dll:System.Object System.Exception/DispatchState::StackTr System.Private.CoreLib.dll:System.Object System.IAsyncResult::AsyncState() System.Private.CoreLib.dll:System.Object System.IO.Enumeration.FileSystemEnumerator`1::_lock System.Private.CoreLib.dll:System.Object System.Memory`1::_object -System.Private.CoreLib.dll:System.Object System.MulticastDelegate::_invocationList System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value @@ -11137,8 +11951,11 @@ System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Decimal/D System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/BigInteger::Pow10BigNumTable() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/BigInteger::Pow10UInt32Table() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/Grisu3::SmallPowersOfTen() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Numerics.Decimal32::UInt32Powers10() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Decimal/DecCalc::UInt64Powers10() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number::Pow5128Table() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/Grisu3::CachedPowersSignificand() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Numerics.Decimal64::UInt64Powers10() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlyMemory`1::Span() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlySpan`1::Empty() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlySpan`1/Enumerator::_span @@ -12611,7 +13428,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.InternalLoad(System System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.InternalLoad(System.Reflection.NativeAssemblyNameParts*, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.StackCrawlMarkHandle, System.Boolean, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo..ctor(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, System.Reflection.MethodAttributes, System.Reflection.BindingFlags) -System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.g__LazyCreateSignature|21_0() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.g__LazyCreateSignature|19_0() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.CheckCanCreateInstance(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ComputeAndUpdateInvocationFlags() @@ -12644,7 +13461,6 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(Syste System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.InvokeClassConstructor() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.IsDefined(System.Type, System.Boolean) -System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ThrowNoInvokeException() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeCustomAttributeData @@ -12730,8 +13546,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimePropertyInfo::m_getterMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimePropertyInfo::m_setterMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo..ctor(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, System.Reflection.MethodAttributes, System.Reflection.BindingFlags, System.Object) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__IsDisallowedByRefType|98_0(System.Type) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|27_0() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__IsDisallowedByRefType|96_0(System.Type) +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) @@ -12775,7 +13591,6 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDe System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.IsDefined(System.Type, System.Boolean) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeException() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule @@ -13182,11 +13997,16 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await(System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await`1(System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await`1(System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaitAwaiterInContinuation`1(System.Int32) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaiterOnCompletedFromContinuation`1(System.Runtime.CompilerServices.Continuation, System.Int32, System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaitTaskWithRareOptions(System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContexts(out System.Threading.Thread&, out System.Threading.ExecutionContext&, out System.Threading.SynchronizationContext&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContinuationContext(System.Object&, System.Runtime.CompilerServices.ContinuationFlags&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContinuationContextFlags(System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureExecutionContext() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionContinueOnThreadPool(System.Boolean, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionNoContinuationContext(System.Boolean, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionWithContinuationContext(System.Boolean, System.Object&, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncTask(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncTask`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncValueTask(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) @@ -13197,12 +14017,14 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSu System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContexts(System.Boolean, System.Threading.Thread, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContextsOnSuspension(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreExecutionContext(System.Threading.Thread, System.Threading.ExecutionContext) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreInlinedFrameContexts(System.Threading.ExecutionContext, System.Object, System.Runtime.CompilerServices.ContinuationFlags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ResumeInterpreterContinuation(System.Runtime.CompilerServices.Continuation, System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ReturnTaskContinuation(System.Runtime.CompilerServices.RuntimeAsyncTaskContinuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend(System.Threading.Tasks.Sources.IValueTaskSource, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend(System.Threading.Tasks.Task, System.Threading.Tasks.ConfigureAwaitOptions) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend`1(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend`1(System.Threading.Tasks.Task`1, System.Threading.Tasks.ConfigureAwaitOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.SwitchToContinuationContext(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&, System.Object, System.Runtime.CompilerServices.ContinuationFlags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TailAwait() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TaskFromException(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TaskFromException`1(System.Exception) @@ -13215,6 +14037,8 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Transpar System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TransparentSuspend`1(System.Threading.Tasks.Task`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TransparentSuspend`1(System.Threading.Tasks.ValueTask`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaitAwaiter`1(TAwaiter) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaitAwaiterInContinuation`1(System.Int32) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaiterOnCompletedFromContinuation`1(System.Runtime.CompilerServices.Continuation, System.Int32, System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTaskFromException(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTaskFromException`1(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/AsyncContexts @@ -13285,9 +14109,10 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::Synchronize System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::Tpl System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::UnwindAsyncException +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/IsEnabled +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/IsEnabled.Tpl(System.Runtime.CompilerServices.AsyncInstrumentation/Flags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.get_TrackAsyncMethodCompletion() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine, System.Threading.Tasks.Task) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start`1(TStateMachine&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncProfiler @@ -13310,6 +14135,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilde System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.get_Context() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.get_MoveNextAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext(System.Threading.Thread, System.Runtime.CompilerServices.AsyncInstrumentation/Flags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext(System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder..cctor() @@ -13512,6 +14338,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags Sys System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ExecutionContextIndexNumBits System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ResultIndexFirstBit System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ResultIndexNumBits +System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ValueTaskAdaptedToTask System.Private.CoreLib.dll:System.Runtime.CompilerServices.CustomConstantAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.CustomConstantAttribute.get_Value() System.Private.CoreLib.dll:System.Runtime.CompilerServices.DateTimeConstantAttribute @@ -13583,6 +14410,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.GenericsStaticsInfo S System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox +System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox System.Runtime.CompilerServices.AsyncProfiler/Info::LastContinuation System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.get_MoveNextAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IConfiguredTaskAwaiter @@ -13596,9 +14424,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitClass System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitClassSlow(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitInstantiatedClass(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodDesc*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 System.GCMemoryInfoData::_pauseDurations System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.DateTimeRawInfo::num System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray4`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 System.GCMemoryInfoData::_generationInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Buffers.BitVector256::_values System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArrayAttribute @@ -13622,6 +14453,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.IteratorStateMachineA System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.get_MethodTable() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodDescChunk() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable @@ -14278,6 +15110,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.FieldOffsetAttribute.. System.Private.CoreLib.dll:System.Runtime.InteropServices.FieldOffsetAttribute.get_Value() System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Buffers.MemoryHandle::_handle +System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Delegate/BindToMethodDetails::loaderAllocatorGCHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/NativeObjectWrapper::_proxyHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/NativeObjectWrapper::_proxyHandleTrackingResurrection System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/ReferenceTrackerNativeObjectWrapper::_nativeObjectWrapperWeakHandle @@ -14543,6 +15376,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NativeMemory.Clear(Sys System.Private.CoreLib.dll:System.Runtime.InteropServices.NativeMemory.Free(System.Void*) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::MaxValue() +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::MinValue() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NaN() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NegativeInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NegativeZero() @@ -14552,19 +15386,24 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime. System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat..ctor(System.Double) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CompareTo(System.Object) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CompareTo(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Equals(System.Object) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Equals(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_MaxValue() +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_MinValue() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NaN() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NegativeInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NegativeZero() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_PositiveInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.GetHashCode() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsFinite(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsInfinity(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsNaN(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsNegative(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsOddInteger(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Log2(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Addition(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) @@ -14579,6 +15418,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExpli System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Division(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Equality(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Explicit(System.Decimal) => System.Runtime.InteropServices.NFloat System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Explicit(System.Double) => System.Runtime.InteropServices.NFloat @@ -14619,14 +15459,17 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Implicit(Sys System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Inequality(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_LessThan(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_LessThanOrEqual(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Multiply(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Subtraction(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_UnaryNegation(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.IsZero(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertToChecked`1(System.Runtime.InteropServices.NFloat, out TOther&) @@ -14884,6 +15727,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.ISimdVector`2.StoreUnsafe(T System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Add(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.AddSaturate(T, T) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Divide(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Equals(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ExtractMostSignificantBit(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.get_AllBitsSet() @@ -14895,6 +15739,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.LessThan(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.LessThanOrEqual(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Max(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Min(T, T) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Multiply(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ObjectEquals(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ShiftLeft(T, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ShiftRightArithmetic(T, System.Int32) @@ -15011,10 +15856,12 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Addition(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Division(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Equality(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Inequality(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_LeftShift(System.Runtime.Intrinsics.Vector128`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Multiply(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_OnesComplement(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_RightShift(System.Runtime.Intrinsics.Vector128`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Subtraction(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) @@ -15091,11 +15938,14 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Addition(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Division(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Equality(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Inequality(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_LeftShift(System.Runtime.Intrinsics.Vector256`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Multiply(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_OnesComplement(System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_RightShift(System.Runtime.Intrinsics.Vector256`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Subtraction(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_UnaryNegation(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) @@ -15169,11 +16019,14 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Addition(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Division(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Equality(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Inequality(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_LeftShift(System.Runtime.Intrinsics.Vector512`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Multiply(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_OnesComplement(System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_RightShift(System.Runtime.Intrinsics.Vector512`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Subtraction(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_UnaryNegation(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) @@ -15262,10 +16115,12 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Addition(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Division(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Equality(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Inequality(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_LeftShift(System.Runtime.Intrinsics.Vector64`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Multiply(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_OnesComplement(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_RightShift(System.Runtime.Intrinsics.Vector64`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Subtraction(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) @@ -15568,11 +16423,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.IRuntimeMethodInfo::Value() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.RuntimeConstructorInfo::System.IRuntimeMethodInfo.Value() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.RuntimeMethodInfo::System.IRuntimeMethodInfo.Value() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodInfoStub::System.IRuntimeMethodInfo.Value() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Signature::_pMethod @@ -15583,7 +16434,6 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) -System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType @@ -16036,17 +16886,23 @@ System.Private.CoreLib.dll:System.SByte System.Runtime.InteropServices.Marshalli System.Private.CoreLib.dll:System.SByte System.SByte::m_value System.Private.CoreLib.dll:System.SByte System.SByte::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.SByte.CompareTo(System.Object) System.Private.CoreLib.dll:System.SByte.CompareTo(System.SByte) +System.Private.CoreLib.dll:System.SByte.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.SByte.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.SByte.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.SByte.DivRem(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Equals(System.Object) System.Private.CoreLib.dll:System.SByte.Equals(System.SByte) System.Private.CoreLib.dll:System.SByte.GetHashCode() System.Private.CoreLib.dll:System.SByte.GetTypeCode() System.Private.CoreLib.dll:System.SByte.IsNegative(System.SByte) +System.Private.CoreLib.dll:System.SByte.IsOddInteger(System.SByte) +System.Private.CoreLib.dll:System.SByte.LeadingZeroCount(System.SByte) +System.Private.CoreLib.dll:System.SByte.Log2(System.SByte) System.Private.CoreLib.dll:System.SByte.Max(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Min(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -16076,31 +16932,41 @@ System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.System.Numerics.IAdditionOperators.op_Addition(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_OnesComplement(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_GreaterThan(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_LessThan(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IDivisionOperators.op_Division(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IEqualityOperators.op_Equality(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IEqualityOperators.op_Inequality(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.SByte.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.SByte.System.Numerics.IMultiplyOperators.op_Multiply(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsFinite(System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsInfinity(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsNaN(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsZero(System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToChecked`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToSaturating`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToTruncating`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.IShiftOperators.op_LeftShift(System.SByte, System.Int32) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IShiftOperators.op_RightShift(System.SByte, System.Int32) System.Private.CoreLib.dll:System.SByte.System.Numerics.ISubtractionOperators.op_Subtraction(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.SByte) System.Private.CoreLib.dll:System.SByte.ToString() System.Private.CoreLib.dll:System.SByte.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.SByte.TryConvertFromChecked`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryConvertFromSaturating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryConvertFromTruncating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -16168,6 +17034,8 @@ System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single System.Private.CoreLib.dll:System.Single System.Collections.Hashtable::_loadFactor +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::A +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::B System.Private.CoreLib.dll:System.Single System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_r4 System.Private.CoreLib.dll:System.Single System.Single::m_value System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NaN() @@ -16175,12 +17043,14 @@ System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.PositiveInfinity() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Single System.Threading.PortableThreadPool/HillClimbing/LogEntry::lastHistoryMean System.Private.CoreLib.dll:System.Single.Abs(System.Single) System.Private.CoreLib.dll:System.Single.CompareTo(System.Object) System.Private.CoreLib.dll:System.Single.CompareTo(System.Single) +System.Private.CoreLib.dll:System.Single.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Single.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Single.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Single.Equals(System.Object) @@ -16188,14 +17058,19 @@ System.Private.CoreLib.dll:System.Single.Equals(System.Single) System.Private.CoreLib.dll:System.Single.GetHashCode() System.Private.CoreLib.dll:System.Single.GetTypeCode() System.Private.CoreLib.dll:System.Single.IsFinite(System.Single) +System.Private.CoreLib.dll:System.Single.IsInfinity(System.Single) +System.Private.CoreLib.dll:System.Single.IsInteger(System.Single) System.Private.CoreLib.dll:System.Single.IsNaN(System.Single) System.Private.CoreLib.dll:System.Single.IsNaNOrZero(System.Single) System.Private.CoreLib.dll:System.Single.IsNegative(System.Single) +System.Private.CoreLib.dll:System.Single.IsOddInteger(System.Single) System.Private.CoreLib.dll:System.Single.IsZero(System.Single) +System.Private.CoreLib.dll:System.Single.Log2(System.Single) System.Private.CoreLib.dll:System.Single.Max(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.Min(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_Equality(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_GreaterThan(System.Single, System.Single) +System.Private.CoreLib.dll:System.Single.op_GreaterThanOrEqual(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_Inequality(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_LessThan(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_LessThanOrEqual(System.Single, System.Single) @@ -16245,15 +17120,20 @@ System.Private.CoreLib.dll:System.Single.System.IConvertible.ToUInt64(System.IFo System.Private.CoreLib.dll:System.Single.System.Numerics.IAdditionOperators.op_Addition(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Single, System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.IDivisionOperators.op_Division(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NaN() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NegativeInfinity() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NegativeZero() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_PositiveInfinity() System.Private.CoreLib.dll:System.Single.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Single.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Single.System.Numerics.IMultiplyOperators.op_Multiply(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.IsZero(System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertToChecked`1(System.Single, out TOther&) @@ -16264,6 +17144,7 @@ System.Private.CoreLib.dll:System.Single.System.Numerics.IUnaryNegationOperators System.Private.CoreLib.dll:System.Single.ToString() System.Private.CoreLib.dll:System.Single.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Single.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Single.Truncate(System.Single) System.Private.CoreLib.dll:System.Single.TryConvertFrom`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.TryConvertTo`1(System.Single, out TOther&) System.Private.CoreLib.dll:System.Single.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -16344,6 +17225,9 @@ System.Private.CoreLib.dll:System.SpanHelpers.IndexOfNullByte(System.Byte*) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfNullCharacter(System.Char*) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfValueType`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf(System.Byte&, System.Int32, System.Byte&, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf(System.Char&, System.Int32, System.Char&, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf`1(T&, System.Int32, T&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOfValueType`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOfValueType`2(TValue&, TValue, System.Int32) @@ -17199,7 +18083,7 @@ System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.System.StubHe System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1/SizeHolder System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1/SizeHolder..cctor() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers -System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|18_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) +System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|17_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.AddToCleanupList(System.StubHelpers.CleanupWorkListElement&, System.Runtime.InteropServices.SafeHandle) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CalcVaListSize(System.IntPtr) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CheckStringLength(System.Int32) @@ -17215,7 +18099,6 @@ System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CreateCustomMarshaler( System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CreateLayoutClassMarshalStubs(System.Runtime.CompilerServices.QCallTypeHandle, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.DestroyCleanupList(System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.FreeArrayContents`2(System.Byte*, System.Int32) -System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetDelegateTarget(System.Delegate) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetHRExceptionObject(System.Int32) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetPendingExceptionObject() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetStubContext() @@ -18089,8 +18972,6 @@ System.Private.CoreLib.dll:System.Threading.Lock.ExitAll() System.Private.CoreLib.dll:System.Threading.Lock.ExitImpl() System.Private.CoreLib.dll:System.Threading.Lock.get_IsHeldByCurrentThread() System.Private.CoreLib.dll:System.Threading.Lock.get_IsSingleProcessor() -System.Private.CoreLib.dll:System.Threading.Lock.get_LockIdForEvents() -System.Private.CoreLib.dll:System.Threading.Lock.get_OwningThreadId() System.Private.CoreLib.dll:System.Threading.Lock.get_ShouldStopPreemptingWaiters() System.Private.CoreLib.dll:System.Threading.Lock.get_WaitEvent() System.Private.CoreLib.dll:System.Threading.Lock.GetOrCreateCondition() @@ -19234,6 +20115,7 @@ System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue System.Threading System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue System.Threading.ThreadPoolWorkQueueThreadLocals::workQueue System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue..cctor() System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue..ctor() +System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.AssignWorkItemQueue(System.Threading.ThreadPoolWorkQueueThreadLocals) System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.CreateThreadLocals() System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.Dequeue(System.Threading.ThreadPoolWorkQueueThreadLocals, System.Boolean&) System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.Dispatch() @@ -19630,8 +20512,6 @@ System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeResult::timeZoneOffset -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration0 -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration1 System.Private.CoreLib.dll:System.TimeSpan System.Globalization.TimeSpanParse/TimeSpanResult::parsedTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.Threading.Timeout::InfiniteTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MaxValue @@ -20195,6 +21075,25 @@ System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.Runtime.Ser System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.String) System.Private.CoreLib.dll:System.UInt128 +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::NegativeInfinityValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::NegativeZeroValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::OneValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::PositiveInfinityValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::QuietNaNValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.Zero() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::ZeroValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::MaxValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::MinValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() @@ -20207,6 +21106,7 @@ System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(S System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt128.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt128.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.UInt128.DivRem(System.UInt128, System.UInt128) @@ -20219,6 +21119,7 @@ System.Private.CoreLib.dll:System.UInt128.get_One() System.Private.CoreLib.dll:System.UInt128.get_Upper() System.Private.CoreLib.dll:System.UInt128.get_Zero() System.Private.CoreLib.dll:System.UInt128.GetHashCode() +System.Private.CoreLib.dll:System.UInt128.IsOddInteger(System.UInt128) System.Private.CoreLib.dll:System.UInt128.LeadingZeroCount(System.UInt128) System.Private.CoreLib.dll:System.UInt128.LeadingZeroCountAsInt32(System.UInt128) System.Private.CoreLib.dll:System.UInt128.Log2(System.UInt128) @@ -20239,8 +21140,14 @@ System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Division(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Equality(System.UInt128, System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_ExclusiveOr(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Decimal) => System.UInt128 System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Double) => System.UInt128 System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Int16) => System.UInt128 @@ -20278,6 +21185,7 @@ System.Private.CoreLib.dll:System.UInt128.op_Inequality(System.UInt128, System.U System.Private.CoreLib.dll:System.UInt128.op_LeftShift(System.UInt128, System.Int32) System.Private.CoreLib.dll:System.UInt128.op_LessThan(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_LessThanOrEqual(System.UInt128, System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_Modulus(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Multiply(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_OnesComplement(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_RightShift(System.UInt128, System.Int32) @@ -20292,10 +21200,13 @@ System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInf System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.IsGreaterThanAsUnsigned(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy10(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy16(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsFinite(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsInfinity(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsNaN(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsNegative(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsZero(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt128, out TOther&) @@ -20304,9 +21215,11 @@ System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt128[] System.Numerics.Decimal128::UInt128Powers10 System.Private.CoreLib.dll:System.UInt16 System.Private.CoreLib.dll:System.UInt16 System.Double::System.IBinaryFloatParseAndFormatInfo.DenormalMantissaBits() System.Private.CoreLib.dll:System.UInt16 System.Double::System.IBinaryFloatParseAndFormatInfo.ExponentBits() @@ -20345,16 +21258,22 @@ System.Private.CoreLib.dll:System.UInt16 System.Threading.LowLevelLifoSemaphore/ System.Private.CoreLib.dll:System.UInt16 System.UInt16::m_value System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt16.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt16.CompareTo(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt16.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt16.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt16.DivRem(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Equals(System.Object) System.Private.CoreLib.dll:System.UInt16.Equals(System.UInt16) System.Private.CoreLib.dll:System.UInt16.GetHashCode() System.Private.CoreLib.dll:System.UInt16.GetTypeCode() +System.Private.CoreLib.dll:System.UInt16.IsOddInteger(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.LeadingZeroCount(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.Log2(System.UInt16) System.Private.CoreLib.dll:System.UInt16.Max(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Min(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -20384,32 +21303,42 @@ System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IAdditionOperators.op_Addition(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_LessThan(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IDivisionOperators.op_Division(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IEqualityOperators.op_Equality(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IEqualityOperators.op_Inequality(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsFinite(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsInfinity(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsNaN(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsNegative(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsZero(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IShiftOperators.op_LeftShift(System.UInt16, System.Int32) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IShiftOperators.op_RightShift(System.UInt16, System.Int32) System.Private.CoreLib.dll:System.UInt16.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt16) System.Private.CoreLib.dll:System.UInt16.ToString() System.Private.CoreLib.dll:System.UInt16.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt16.TryConvertFromChecked`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryConvertFromSaturating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryConvertFromTruncating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20446,16 +21375,26 @@ System.Private.CoreLib.dll:System.UInt32 System.Decimal::High() System.Private.CoreLib.dll:System.UInt32 System.Decimal::Low() System.Private.CoreLib.dll:System.UInt32 System.Decimal::Mid() System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::High() +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::Low() +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::Mid() System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::uflags System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::uhi System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::ulo System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::umid +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U0 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U1 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U2 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U0 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U1 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U2 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U3 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U0 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U1 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U2 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U3 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U4 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U5 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/PowerOvfl::Hi System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleGroupingData::value__ System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleNumberData::value__ System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleStringData::value__ @@ -20471,8 +21410,23 @@ System.Private.CoreLib.dll:System.UInt32 System.HashCode::s_seed System.Private.CoreLib.dll:System.UInt32 System.HexConverter/Casing::value__ System.Private.CoreLib.dll:System.UInt32 System.Number/BigInteger/BlocksBuffer::e0 System.Private.CoreLib.dll:System.UInt32 System.Number/BinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Number/DiyFp128::_sign System.Private.CoreLib.dll:System.UInt32 System.Number/HexParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Number/IHexOrBinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::_value +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.Zero() System.Private.CoreLib.dll:System.UInt32 System.Reflection.InvocationFlags::value__ System.Private.CoreLib.dll:System.UInt32 System.Runtime.CompilerServices.AsyncInstrumentation/Flags::value__ System.Private.CoreLib.dll:System.UInt32 System.Runtime.CompilerServices.AsyncProfiler/Info::ContinuationIndex @@ -20519,6 +21473,7 @@ System.Private.CoreLib.dll:System.UInt32 System.TimeZoneInfo/TZifHead::TypeCount System.Private.CoreLib.dll:System.UInt32 System.UInt32::m_value System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt32.CompareTo(System.Object) @@ -20526,10 +21481,12 @@ System.Private.CoreLib.dll:System.UInt32.CompareTo(System.UInt32) System.Private.CoreLib.dll:System.UInt32.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt32.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt32.DivRem(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.Equals(System.Object) System.Private.CoreLib.dll:System.UInt32.Equals(System.UInt32) System.Private.CoreLib.dll:System.UInt32.GetHashCode() System.Private.CoreLib.dll:System.UInt32.GetTypeCode() +System.Private.CoreLib.dll:System.UInt32.IsOddInteger(System.UInt32) System.Private.CoreLib.dll:System.UInt32.LeadingZeroCount(System.UInt32) System.Private.CoreLib.dll:System.UInt32.Log2(System.UInt32) System.Private.CoreLib.dll:System.UInt32.Max(System.UInt32, System.UInt32) @@ -20561,27 +21518,36 @@ System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IAdditionOperators.op_Addition(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_LessThan(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IDivisionOperators.op_Division(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IEqualityOperators.op_Equality(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IEqualityOperators.op_Inequality(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsFinite(System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsInfinity(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsNaN(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsNegative(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsZero(System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IShiftOperators.op_LeftShift(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IShiftOperators.op_RightShift(System.UInt32, System.Int32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt32) System.Private.CoreLib.dll:System.UInt32.ToString() @@ -20613,11 +21579,19 @@ System.Private.CoreLib.dll:System.UInt64 System.Decimal::_lo64 System.Private.CoreLib.dll:System.UInt64 System.Decimal::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc::ulomid +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::High64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::Low64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::uhigh64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::ulo64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf16::High64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf16::Low64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::High64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::Mid64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::uhigh64LE System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::ulo64LE System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::umid64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/PowerOvfl::MidLo System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.DenormalMantissaMask() System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.InfinityBits() System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.MaxMantissaFastPath() @@ -20646,12 +21620,33 @@ System.Private.CoreLib.dll:System.UInt64 System.Int128::_upper System.Private.CoreLib.dll:System.UInt64 System.Marvin::k__BackingField System.Private.CoreLib.dll:System.UInt64 System.Marvin::DefaultSeed() System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp::f +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_hi +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_lo +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::High +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::Low +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal128::_lower +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal128::_upper +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::_value +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.Zero() System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_00 System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_01 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s0 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s1 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s2 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s3 +System.Private.CoreLib.dll:System.UInt64 System.Runtime.CompilerServices.AsyncProfiler/Info::DispatcherId System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.ComWrappers/ManagedObjectWrapper::RefCount System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_ui8 System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.SafeBuffer::ByteLength() @@ -20671,10 +21666,12 @@ System.Private.CoreLib.dll:System.UInt64 System.UInt128::Upper() System.Private.CoreLib.dll:System.UInt64 System.UInt64::m_value System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) @@ -20682,6 +21679,7 @@ System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() System.Private.CoreLib.dll:System.UInt64.GetTypeCode() +System.Private.CoreLib.dll:System.UInt64.IsOddInteger(System.UInt64) System.Private.CoreLib.dll:System.UInt64.LeadingZeroCount(System.UInt64) System.Private.CoreLib.dll:System.UInt64.Log2(System.UInt64) System.Private.CoreLib.dll:System.UInt64.Max(System.UInt64, System.UInt64) @@ -20713,32 +21711,42 @@ System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IAdditionOperators.op_Addition(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_LessThan(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IDivisionOperators.op_Division(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IEqualityOperators.op_Equality(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IEqualityOperators.op_Inequality(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsFinite(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsInfinity(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsNaN(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsNegative(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsZero(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IShiftOperators.op_LeftShift(System.UInt64, System.Int32) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IShiftOperators.op_RightShift(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.UInt64.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt64) System.Private.CoreLib.dll:System.UInt64.ToString() System.Private.CoreLib.dll:System.UInt64.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt64.TryConvertFromChecked`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryConvertFromSaturating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryConvertFromTruncating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20783,46 +21791,62 @@ System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::_value System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::MaxValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::MinValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::Zero System.Private.CoreLib.dll:System.UIntPtr.CompareTo(System.Object) System.Private.CoreLib.dll:System.UIntPtr.CompareTo(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UIntPtr.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UIntPtr.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UIntPtr.DivRem(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Equals(System.Object) System.Private.CoreLib.dll:System.UIntPtr.Equals(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.get_MaxValue() System.Private.CoreLib.dll:System.UIntPtr.get_MinValue() System.Private.CoreLib.dll:System.UIntPtr.GetHashCode() +System.Private.CoreLib.dll:System.UIntPtr.IsOddInteger(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.LeadingZeroCount(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.Log2(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Max(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Min(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.op_Equality(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.op_Inequality(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IAdditionOperators.op_Addition(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_GreaterThan(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_LessThan(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IDivisionOperators.op_Division(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMultiplyOperators.op_Multiply(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsFinite(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsInfinity(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsNaN(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsNegative(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsZero(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToChecked`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IShiftOperators.op_LeftShift(System.UIntPtr, System.Int32) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IShiftOperators.op_RightShift(System.UIntPtr, System.Int32) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.ISubtractionOperators.op_Subtraction(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.ToString() System.Private.CoreLib.dll:System.UIntPtr.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromChecked`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromSaturating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromTruncating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20960,6 +21984,7 @@ System.Private.CoreLib.dll:T System.Reflection.MethodBase/ArgumentData`1::_arg0 System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray2`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray3`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray4`1::t +System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray5`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray8`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.StrongBox`1::Value System.Private.CoreLib.dll:T System.Runtime.InteropServices.GCHandle`1::Target() @@ -21043,9 +22068,12 @@ System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::Negati System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::NegativeZero() System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::PositiveInfinity() System.Private.CoreLib.dll:TSelf System.Numerics.IMinMaxValue`1::MaxValue() +System.Private.CoreLib.dll:TSelf System.Numerics.IMinMaxValue`1::MinValue() System.Private.CoreLib.dll:TSelf System.Numerics.INumberBase`1::One() System.Private.CoreLib.dll:TSelf System.Numerics.INumberBase`1::Zero() System.Private.CoreLib.dll:TSelf System.Runtime.Intrinsics.ISimdVector`2::Zero() +System.Private.CoreLib.dll:TSignificand System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:TSignificand System.Number/DecodedDecimalIeee754`1::Significand() System.Private.CoreLib.dll:TState System.Threading.QueueUserWorkItemCallback`1::_state System.Private.CoreLib.dll:TState System.Threading.QueueUserWorkItemCallbackDefaultContext`1::_state System.Private.CoreLib.dll:TStateMachine System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1::StateMachine @@ -21060,6 +22088,19 @@ System.Private.CoreLib.dll:TValue System.Collections.Generic.Dictionary`2::Item( System.Private.CoreLib.dll:TValue System.Collections.Generic.Dictionary`2/Entry::value System.Private.CoreLib.dll:TValue System.Collections.Generic.KeyValuePair`2::value System.Private.CoreLib.dll:TValue System.Collections.Generic.KeyValuePair`2::Value() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G0G1Mask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::GwPlus4SignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::MaxSignificand() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NaN() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NaNMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NegativeInfinity() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::PositiveInfinity() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::SignMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::Zero() System.Private.CoreLib.dll:TValue System.Runtime.CompilerServices.GenericCache`2/Entry::_value System.Private.CoreLib.dll:V System.Reflection.CerHashtable`2::Item(K) System.Private.CoreLib.dll:V[] System.Reflection.CerHashtable`2/Table::m_values diff --git a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-size.txt b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-size.txt index 00358719a3ca..695d501efdb5 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-size.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-CoreCLR-R2R-size.txt @@ -1,33 +1,33 @@ -AppBundleSize: 10,931,153 bytes (10,675.0 KB = 10.4 MB) +AppBundleSize: 11,575,430 bytes (11,304.1 KB = 11.0 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Frameworks/libcoreclr.framework/Info.plist: - 798 bytes (0.8 KB = 0.0 MB) + 777 bytes (0.8 KB = 0.0 MB) Frameworks/libcoreclr.framework/libcoreclr: - 4,200,608 bytes (4,102.2 KB = 4.0 MB) + 4,324,144 bytes (4,222.8 KB = 4.1 MB) Frameworks/libSystem.Globalization.Native.framework/Info.plist: - 840 bytes (0.8 KB = 0.0 MB) + 819 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Globalization.Native.framework/libSystem.Globalization.Native: - 90,576 bytes (88.5 KB = 0.1 MB) + 124,608 bytes (121.7 KB = 0.1 MB) Frameworks/libSystem.IO.Compression.Native.framework/Info.plist: - 842 bytes (0.8 KB = 0.0 MB) + 821 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.IO.Compression.Native.framework/libSystem.IO.Compression.Native: - 1,393,600 bytes (1,360.9 KB = 1.3 MB) + 1,438,032 bytes (1,404.3 KB = 1.4 MB) Frameworks/libSystem.Native.framework/Info.plist: - 812 bytes (0.8 KB = 0.0 MB) + 791 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Native.framework/libSystem.Native: - 143,216 bytes (139.9 KB = 0.1 MB) + 177,552 bytes (173.4 KB = 0.2 MB) Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/Info.plist: - 868 bytes (0.8 KB = 0.0 MB) + 847 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/libSystem.Security.Cryptography.Native.Apple: - 195,056 bytes (190.5 KB = 0.2 MB) + 248,672 bytes (242.8 KB = 0.2 MB) Frameworks/SizeTestApp.r2r.framework/Info.plist: - 810 bytes (0.8 KB = 0.0 MB) + 789 bytes (0.8 KB = 0.0 MB) Frameworks/SizeTestApp.r2r.framework/SizeTestApp.r2r: - 3,413,064 bytes (3,333.1 KB = 3.3 MB) + 3,660,528 bytes (3,574.7 KB = 3.5 MB) Info.plist: - 1,126 bytes (1.1 KB = 0.0 MB) + 1,105 bytes (1.1 KB = 0.0 MB) Microsoft.tvOS.dll: - 65,024 bytes (63.5 KB = 0.1 MB) + 64,000 bytes (62.5 KB = 0.1 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: @@ -35,7 +35,7 @@ runtimeconfig.bin: SizeTestApp: 128,600 bytes (125.6 KB = 0.1 MB) SizeTestApp.dll: - 7,168 bytes (7.0 KB = 0.0 MB) + 6,656 bytes (6.5 KB = 0.0 MB) System.Collections.Immutable.dll: 13,824 bytes (13.5 KB = 0.0 MB) System.Diagnostics.StackTrace.dll: @@ -45,7 +45,7 @@ System.IO.Compression.dll: System.IO.MemoryMappedFiles.dll: 16,896 bytes (16.5 KB = 0.0 MB) System.Private.CoreLib.dll: - 1,168,896 bytes (1,141.5 KB = 1.1 MB) + 1,277,440 bytes (1,247.5 KB = 1.2 MB) System.Reflection.Metadata.dll: 56,832 bytes (55.5 KB = 0.1 MB) System.Runtime.dll: diff --git a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-preservedapis.txt index aac5614fe45b..9d6442684ddb 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-preservedapis.txt @@ -2111,7 +2111,7 @@ System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_IsAsyn System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_IsInvalid() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Path() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_SupportsRandomAccess() -System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeek() +System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeekCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileLength() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.Init(System.String, System.IO.FileMode, System.IO.FileAccess, System.IO.FileShare, System.IO.FileOptions, System.Int64, out System.Int64&, out System.IO.UnixFileMode&) System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.MapUnixFileTypeToFileType(Interop/Sys/FileStatus) @@ -3976,6 +3976,7 @@ System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPoint`1(Syste System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPointExact(System.UInt64, System.UInt32, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96ByConst(System.UInt64&, System.UInt32&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DivByConst(System.UInt32*, System.UInt32, out System.UInt32&, out System.UInt32&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Equals(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.get_High() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_IsNegative() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low64() @@ -4185,6 +4186,7 @@ System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MaxValue() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Double System.Number/SqrtCoefficients::C System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.NFloat::_value System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalDays() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalHours() @@ -4602,11 +4604,6 @@ System.Private.CoreLib.dll:System.GC.register_ephemeron_array(System.Runtime.Eph System.Private.CoreLib.dll:System.GC.ReRegisterForFinalize(System.Object) System.Private.CoreLib.dll:System.GC.SuppressFinalize(System.Object) System.Private.CoreLib.dll:System.GCGenerationInfo -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo0 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo1 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo2 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo3 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo4 System.Private.CoreLib.dll:System.GCMemoryInfo System.Private.CoreLib.dll:System.GCMemoryInfo..ctor(System.GCMemoryInfoData) System.Private.CoreLib.dll:System.GCMemoryInfo.get_HighMemoryLoadThresholdBytes() @@ -5362,9 +5359,10 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globaliz System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::InvariantInfo() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..cctor() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData) -System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|58_0(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|60_0(System.IFormatProvider) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|165_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.AllowHyphenDuringParsing() +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CreateUtf8Cache(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyGroupSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencySymbolTChar`1() @@ -5387,6 +5385,7 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PercentPosi System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetFormat(System.Type) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetUtf8Span(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.InitializeInvariantAndNegativeSignFlags() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NaNSymbolTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NegativeInfinitySymbolTChar`1() @@ -5410,7 +5409,6 @@ System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalizatio System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowLeadingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowParentheses System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowThousands -System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingInvalidCharacters System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingSign System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::Any @@ -5758,6 +5756,7 @@ System.Private.CoreLib.dll:System.Half.get_One() System.Private.CoreLib.dll:System.Half.get_PositiveInfinity() System.Private.CoreLib.dll:System.Half.get_TrailingSignificand() System.Private.CoreLib.dll:System.Half.get_Zero() +System.Private.CoreLib.dll:System.Half.GetCompareKey(System.UInt16) System.Private.CoreLib.dll:System.Half.GetHashCode() System.Private.CoreLib.dll:System.Half.IsFinite(System.Half) System.Private.CoreLib.dll:System.Half.IsNaN(System.Half) @@ -6414,6 +6413,7 @@ System.Private.CoreLib.dll:System.Int32 System.MidpointRounding::value__ System.Private.CoreLib.dll:System.Int32 System.Number/BigInteger::_length System.Private.CoreLib.dll:System.Int32 System.Number/BinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp::e +System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp128::_exponent System.Private.CoreLib.dll:System.Int32 System.Number/HexParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/IHexOrBinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::DigitsCount @@ -7399,8 +7399,8 @@ System.Private.CoreLib.dll:System.Marvin.ComputeHash32OrdinalIgnoreCaseSlow(Syst System.Private.CoreLib.dll:System.Marvin.GenerateSeed() System.Private.CoreLib.dll:System.Marvin.get_DefaultSeed() System.Private.CoreLib.dll:System.Math -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|46_0(System.UInt64, System.UInt64, out System.UInt64&) -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|52_0(System.Double, System.Double) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|44_0(System.UInt64, System.UInt64, out System.UInt64&) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|50_0(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Single) System.Private.CoreLib.dll:System.Math.BigMul(System.UInt32, System.UInt32) @@ -7586,22 +7586,22 @@ System.Private.CoreLib.dll:System.NullReferenceException..ctor() System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String) System.Private.CoreLib.dll:System.Number System.Private.CoreLib.dll:System.Number..cctor() -System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|190_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) -System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|58_0(System.Int128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|50_0(System.Int32, System.Int32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|54_0(System.Int64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|60_0(System.UInt128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|52_0(System.UInt32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|56_0(System.UInt64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__Slow|43_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) -System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|196_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|59_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|51_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|55_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|61_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|53_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|57_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|79_0(System.UInt32) +System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|558_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) +System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|414_0(System.Int128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|406_0(System.Int32, System.Int32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|410_0(System.Int64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|416_0(System.UInt128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|408_0(System.UInt32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|412_0(System.UInt64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__Slow|399_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|564_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|415_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|407_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|411_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|417_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|409_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|413_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|435_0(System.UInt32) System.Private.CoreLib.dll:System.Number.AppendUnknownChar`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) System.Private.CoreLib.dll:System.Number.CalculatePower(System.Int32) System.Private.CoreLib.dll:System.Number.ComputeFloat`1(System.Int64, System.UInt64) @@ -7609,7 +7609,8 @@ System.Private.CoreLib.dll:System.Number.ComputeProductApproximation(System.Int3 System.Private.CoreLib.dll:System.Number.ConsumeTrailingNulls`1(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.CurrencyGroupSizes(System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.DecimalToNumber(System.Decimal&, System.Number/NumberBuffer&) -System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&, out System.Boolean&) System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.ExtractFractionAndBiasedExponent`1(TNumber, out System.Int32&) System.Private.CoreLib.dll:System.Number.FindSection(System.ReadOnlySpan`1, System.Int32) @@ -7664,7 +7665,7 @@ System.Private.CoreLib.dll:System.Number.NumberToStringFormat`1(System.Collectio System.Private.CoreLib.dll:System.Number.ParseFormatSpecifier(System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.PercentGroupSizes(System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.RoundNumber(System.Number/NumberBuffer&, System.Int32, System.Boolean) -System.Private.CoreLib.dll:System.Number.ThrowOverflowException(System.String) +System.Private.CoreLib.dll:System.Number.ThrowDecimalOverflowException() System.Private.CoreLib.dll:System.Number.ThrowOverflowException`1() System.Private.CoreLib.dll:System.Number.TryCopyTo`1(System.String, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatDecimal`1(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) @@ -7764,6 +7765,31 @@ System.Private.CoreLib.dll:System.Number/DiyFp.GetBoundaries(System.Int32, out S System.Private.CoreLib.dll:System.Number/DiyFp.Multiply(System.Number/DiyFp&) System.Private.CoreLib.dll:System.Number/DiyFp.Normalize() System.Private.CoreLib.dll:System.Number/DiyFp.Subtract(System.Number/DiyFp&) +System.Private.CoreLib.dll:System.Number/DiyFp128 +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxHalf +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxOne +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxThreeQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128..ctor(System.UInt32, System.Int32, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::InvTrigConstants +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::PiFractionConstants +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Exp10Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::ExpCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperCoshCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperSinhCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Log2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Pow2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::PowLog2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigCosCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigSinCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanNumeratorCoefficients System.Private.CoreLib.dll:System.Number/Grisu3 System.Private.CoreLib.dll:System.Number/Grisu3.BiggestPowerTen(System.UInt32, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Number/Grisu3.get_CachedPowersBinaryExponent() @@ -7798,6 +7824,7 @@ System.Private.CoreLib.dll:System.Number/NumberBuffer.ToString() System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBuffer::Kind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Decimal +System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::DecimalIeee754 System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::FloatingPoint System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Integer System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Unknown @@ -7805,6 +7832,9 @@ System.Private.CoreLib.dll:System.Number/ParsingStatus System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Failed System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::OK System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Overflow +System.Private.CoreLib.dll:System.Number/SqrtCoefficients +System.Private.CoreLib.dll:System.Number/SqrtCoefficients..ctor(System.Single, System.Single, System.Double) +System.Private.CoreLib.dll:System.Number/SqrtCoefficients[] System.Number::s_sqrtTable System.Private.CoreLib.dll:System.Numerics.BitOperations System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|22_0(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|23_0(System.UInt64) @@ -10753,8 +10783,11 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.FixedBufferAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.FixedBufferAttribute..ctor(System.Type, System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 System.GCMemoryInfoData::_pauseDurations System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray4`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 System.GCMemoryInfoData::_generationInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray6`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Buffers.BitVector256::_values @@ -12200,6 +12233,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.HashData(System.ReadO System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Single System.Private.CoreLib.dll:System.Single System.Collections.Hashtable::_loadFactor +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::A +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::B System.Private.CoreLib.dll:System.Single System.Single::m_value System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MaxValue() @@ -12391,8 +12426,6 @@ System.Private.CoreLib.dll:System.SR.Format(System.String, System.Object) System.Private.CoreLib.dll:System.StackOverflowException System.Private.CoreLib.dll:System.StackOverflowException..ctor() System.Private.CoreLib.dll:System.StackOverflowException..ctor(System.String) -System.Private.CoreLib.dll:System.STAThreadAttribute -System.Private.CoreLib.dll:System.STAThreadAttribute..ctor() System.Private.CoreLib.dll:System.String System.Private.CoreLib.dll:System.String Microsoft.Win32.SafeHandles.SafeFileHandle::_path System.Private.CoreLib.dll:System.String Microsoft.Win32.SafeHandles.SafeFileHandle::Path() @@ -13731,8 +13764,6 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedN System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration0 -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration1 System.Private.CoreLib.dll:System.TimeSpan System.Globalization.TimeSpanParse/TimeSpanResult::parsedTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MaxValue System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MinValue @@ -14533,6 +14564,7 @@ System.Private.CoreLib.dll:System.UInt32 System.HashCode::s_seed System.Private.CoreLib.dll:System.UInt32 System.HexConverter/Casing::value__ System.Private.CoreLib.dll:System.UInt32 System.Number/BigInteger/BlocksBuffer::e0 System.Private.CoreLib.dll:System.UInt32 System.Number/BinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Number/DiyFp128::_sign System.Private.CoreLib.dll:System.UInt32 System.Number/HexParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Number/IHexOrBinaryParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Reflection.Emit.RuntimeAssemblyBuilder::access @@ -14644,6 +14676,10 @@ System.Private.CoreLib.dll:System.UInt64 System.Int128::_upper System.Private.CoreLib.dll:System.UInt64 System.Marvin::k__BackingField System.Private.CoreLib.dll:System.UInt64 System.Marvin::DefaultSeed() System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp::f +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_hi +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_lo +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::High +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::Low System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_00 System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_01 System.Private.CoreLib.dll:System.UInt64 System.Runtime.Intrinsics.Vector64`1::_00 @@ -14843,6 +14879,7 @@ System.Private.CoreLib.dll:T System.Reflection.MethodBase/ArgumentData`1::_arg0 System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray2`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray3`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray4`1::t +System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray5`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray6`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray8`1::t System.Private.CoreLib.dll:T System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1/ManagedToUnmanagedIn::_handle diff --git a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-size.txt b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-size.txt index 9e4c9308c9c7..306dbac1145e 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-interpreter-size.txt @@ -1,7 +1,7 @@ -AppBundleSize: 3,636,731 bytes (3,551.5 KB = 3.5 MB) +AppBundleSize: 3,658,045 bytes (3,572.3 KB = 3.5 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Info.plist: - 1,126 bytes (1.1 KB = 0.0 MB) + 1,144 bytes (1.1 KB = 0.0 MB) Microsoft.tvOS.dll: 152,576 bytes (149.0 KB = 0.1 MB) PkgInfo: @@ -9,13 +9,13 @@ PkgInfo: runtimeconfig.bin: 1,405 bytes (1.4 KB = 0.0 MB) SizeTestApp: - 2,368,896 bytes (2,313.4 KB = 2.3 MB) + 2,368,992 bytes (2,313.5 KB = 2.3 MB) SizeTestApp.dll: 7,680 bytes (7.5 KB = 0.0 MB) System.Private.CoreLib.aotdata.arm64: - 41,616 bytes (40.6 KB = 0.0 MB) + 41,824 bytes (40.8 KB = 0.0 MB) System.Private.CoreLib.dll: - 1,053,696 bytes (1,029.0 KB = 1.0 MB) + 1,074,688 bytes (1,049.5 KB = 1.0 MB) System.Runtime.dll: 5,120 bytes (5.0 KB = 0.0 MB) System.Runtime.InteropServices.dll: diff --git a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-preservedapis.txt b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-preservedapis.txt index 8769496b9851..cd75486ac6cc 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-preservedapis.txt @@ -1416,7 +1416,7 @@ System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_IsAsyn System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_IsInvalid() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Path() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_SupportsRandomAccess() -System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeek() +System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeekCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileLength() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.Init(System.String, System.IO.FileMode, System.IO.FileAccess, System.IO.FileShare, System.IO.FileOptions, System.Int64, out System.Int64&, out System.IO.UnixFileMode&) System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.MapUnixFileTypeToFileType(Interop/Sys/FileStatus) @@ -3153,6 +3153,7 @@ System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPoint`1(Syste System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPointExact(System.UInt64, System.UInt32, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96ByConst(System.UInt64&, System.UInt32&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DivByConst(System.UInt32*, System.UInt32, out System.UInt32&, out System.UInt32&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Equals(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.get_High() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_IsNegative() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low64() @@ -3351,6 +3352,7 @@ System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MaxValue() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Double System.Number/SqrtCoefficients::C System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.NFloat::_value System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalDays() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalHours() @@ -3762,11 +3764,6 @@ System.Private.CoreLib.dll:System.GC.register_ephemeron_array(System.Runtime.Eph System.Private.CoreLib.dll:System.GC.ReRegisterForFinalize(System.Object) System.Private.CoreLib.dll:System.GC.SuppressFinalize(System.Object) System.Private.CoreLib.dll:System.GCGenerationInfo -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo0 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo1 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo2 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo3 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo4 System.Private.CoreLib.dll:System.GCMemoryInfo System.Private.CoreLib.dll:System.GCMemoryInfo..ctor(System.GCMemoryInfoData) System.Private.CoreLib.dll:System.GCMemoryInfo.get_HighMemoryLoadThresholdBytes() @@ -4521,9 +4518,10 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globaliz System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::InvariantInfo() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..cctor() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData) -System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|58_0(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|60_0(System.IFormatProvider) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|165_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.AllowHyphenDuringParsing() +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CreateUtf8Cache(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyGroupSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencySymbolTChar`1() @@ -4546,6 +4544,7 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PercentPosi System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetFormat(System.Type) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetUtf8Span(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.InitializeInvariantAndNegativeSignFlags() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NaNSymbolTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NegativeInfinitySymbolTChar`1() @@ -4569,7 +4568,6 @@ System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalizatio System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowLeadingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowParentheses System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowThousands -System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingInvalidCharacters System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingSign System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::Any @@ -4915,6 +4913,7 @@ System.Private.CoreLib.dll:System.Half.get_One() System.Private.CoreLib.dll:System.Half.get_PositiveInfinity() System.Private.CoreLib.dll:System.Half.get_TrailingSignificand() System.Private.CoreLib.dll:System.Half.get_Zero() +System.Private.CoreLib.dll:System.Half.GetCompareKey(System.UInt16) System.Private.CoreLib.dll:System.Half.GetHashCode() System.Private.CoreLib.dll:System.Half.IsFinite(System.Half) System.Private.CoreLib.dll:System.Half.IsNaN(System.Half) @@ -5565,6 +5564,7 @@ System.Private.CoreLib.dll:System.Int32 System.MidpointRounding::value__ System.Private.CoreLib.dll:System.Int32 System.Number/BigInteger::_length System.Private.CoreLib.dll:System.Int32 System.Number/BinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp::e +System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp128::_exponent System.Private.CoreLib.dll:System.Int32 System.Number/HexParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/IHexOrBinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::DigitsCount @@ -6477,8 +6477,8 @@ System.Private.CoreLib.dll:System.Marvin.ComputeHash32OrdinalIgnoreCaseSlow(Syst System.Private.CoreLib.dll:System.Marvin.GenerateSeed() System.Private.CoreLib.dll:System.Marvin.get_DefaultSeed() System.Private.CoreLib.dll:System.Math -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|46_0(System.UInt64, System.UInt64, out System.UInt64&) -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|52_0(System.Double, System.Double) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|44_0(System.UInt64, System.UInt64, out System.UInt64&) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|50_0(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Single) System.Private.CoreLib.dll:System.Math.BigMul(System.UInt32, System.UInt32) @@ -6664,22 +6664,22 @@ System.Private.CoreLib.dll:System.NullReferenceException..ctor() System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String) System.Private.CoreLib.dll:System.Number System.Private.CoreLib.dll:System.Number..cctor() -System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|190_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) -System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|58_0(System.Int128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|50_0(System.Int32, System.Int32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|54_0(System.Int64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|60_0(System.UInt128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|52_0(System.UInt32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|56_0(System.UInt64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__Slow|43_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) -System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|196_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|59_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|51_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|55_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|61_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|53_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|57_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|79_0(System.UInt32) +System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|558_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) +System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|414_0(System.Int128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|406_0(System.Int32, System.Int32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|410_0(System.Int64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|416_0(System.UInt128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|408_0(System.UInt32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|412_0(System.UInt64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__Slow|399_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|564_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|415_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|407_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|411_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|417_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|409_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|413_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|435_0(System.UInt32) System.Private.CoreLib.dll:System.Number.AppendUnknownChar`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) System.Private.CoreLib.dll:System.Number.CalculatePower(System.Int32) System.Private.CoreLib.dll:System.Number.ComputeFloat`1(System.Int64, System.UInt64) @@ -6687,7 +6687,8 @@ System.Private.CoreLib.dll:System.Number.ComputeProductApproximation(System.Int3 System.Private.CoreLib.dll:System.Number.ConsumeTrailingNulls`1(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.CurrencyGroupSizes(System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.DecimalToNumber(System.Decimal&, System.Number/NumberBuffer&) -System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&, out System.Boolean&) System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.ExtractFractionAndBiasedExponent`1(TNumber, out System.Int32&) System.Private.CoreLib.dll:System.Number.FindSection(System.ReadOnlySpan`1, System.Int32) @@ -6742,7 +6743,7 @@ System.Private.CoreLib.dll:System.Number.NumberToStringFormat`1(System.Collectio System.Private.CoreLib.dll:System.Number.ParseFormatSpecifier(System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.PercentGroupSizes(System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.RoundNumber(System.Number/NumberBuffer&, System.Int32, System.Boolean) -System.Private.CoreLib.dll:System.Number.ThrowOverflowException(System.String) +System.Private.CoreLib.dll:System.Number.ThrowDecimalOverflowException() System.Private.CoreLib.dll:System.Number.ThrowOverflowException`1() System.Private.CoreLib.dll:System.Number.TryCopyTo`1(System.String, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatDecimal`1(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) @@ -6842,6 +6843,31 @@ System.Private.CoreLib.dll:System.Number/DiyFp.GetBoundaries(System.Int32, out S System.Private.CoreLib.dll:System.Number/DiyFp.Multiply(System.Number/DiyFp&) System.Private.CoreLib.dll:System.Number/DiyFp.Normalize() System.Private.CoreLib.dll:System.Number/DiyFp.Subtract(System.Number/DiyFp&) +System.Private.CoreLib.dll:System.Number/DiyFp128 +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxHalf +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxOne +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxThreeQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128..ctor(System.UInt32, System.Int32, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::InvTrigConstants +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::PiFractionConstants +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Exp10Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::ExpCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperCoshCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperSinhCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Log2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Pow2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::PowLog2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigCosCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigSinCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanNumeratorCoefficients System.Private.CoreLib.dll:System.Number/Grisu3 System.Private.CoreLib.dll:System.Number/Grisu3.BiggestPowerTen(System.UInt32, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Number/Grisu3.get_CachedPowersBinaryExponent() @@ -6876,6 +6902,7 @@ System.Private.CoreLib.dll:System.Number/NumberBuffer.ToString() System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBuffer::Kind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Decimal +System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::DecimalIeee754 System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::FloatingPoint System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Integer System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Unknown @@ -6883,6 +6910,9 @@ System.Private.CoreLib.dll:System.Number/ParsingStatus System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Failed System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::OK System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Overflow +System.Private.CoreLib.dll:System.Number/SqrtCoefficients +System.Private.CoreLib.dll:System.Number/SqrtCoefficients..ctor(System.Single, System.Single, System.Double) +System.Private.CoreLib.dll:System.Number/SqrtCoefficients[] System.Number::s_sqrtTable System.Private.CoreLib.dll:System.Numerics.BitOperations System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|22_0(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|23_0(System.UInt64) @@ -8464,8 +8494,11 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.FixedBufferAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.FixedBufferAttribute..ctor(System.Type, System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 System.GCMemoryInfoData::_pauseDurations System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray4`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 System.GCMemoryInfoData::_generationInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Buffers.BitVector256::_values System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArrayAttribute @@ -9838,6 +9871,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Single +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::A +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::B System.Private.CoreLib.dll:System.Single System.Single::m_value System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MaxValue() @@ -10028,8 +10063,6 @@ System.Private.CoreLib.dll:System.SR.Format(System.String, System.Object) System.Private.CoreLib.dll:System.StackOverflowException System.Private.CoreLib.dll:System.StackOverflowException..ctor() System.Private.CoreLib.dll:System.StackOverflowException..ctor(System.String) -System.Private.CoreLib.dll:System.STAThreadAttribute -System.Private.CoreLib.dll:System.STAThreadAttribute..ctor() System.Private.CoreLib.dll:System.String System.Private.CoreLib.dll:System.String Microsoft.Win32.SafeHandles.SafeFileHandle::_path System.Private.CoreLib.dll:System.String Microsoft.Win32.SafeHandles.SafeFileHandle::Path() @@ -11286,8 +11319,6 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedN System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration0 -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration1 System.Private.CoreLib.dll:System.TimeSpan System.Globalization.TimeSpanParse/TimeSpanResult::parsedTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MaxValue System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MinValue @@ -11994,6 +12025,7 @@ System.Private.CoreLib.dll:System.UInt32 System.HashCode::s_seed System.Private.CoreLib.dll:System.UInt32 System.HexConverter/Casing::value__ System.Private.CoreLib.dll:System.UInt32 System.Number/BigInteger/BlocksBuffer::e0 System.Private.CoreLib.dll:System.UInt32 System.Number/BinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Number/DiyFp128::_sign System.Private.CoreLib.dll:System.UInt32 System.Number/HexParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Number/IHexOrBinaryParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Reflection.InvocationFlags::value__ @@ -12104,6 +12136,10 @@ System.Private.CoreLib.dll:System.UInt64 System.Int128::_upper System.Private.CoreLib.dll:System.UInt64 System.Marvin::k__BackingField System.Private.CoreLib.dll:System.UInt64 System.Marvin::DefaultSeed() System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp::f +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_hi +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_lo +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::High +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::Low System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_00 System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_01 System.Private.CoreLib.dll:System.UInt64 System.Runtime.Intrinsics.Vector64`1::_00 @@ -12300,6 +12336,7 @@ System.Private.CoreLib.dll:T System.Reflection.MethodBase/ArgumentData`1::_arg0 System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray2`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray3`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray4`1::t +System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray5`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray8`1::t System.Private.CoreLib.dll:T System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1/ManagedToUnmanagedIn::_handle System.Private.CoreLib.dll:T System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1/ManagedToUnmanagedOut::_newHandle diff --git a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-size.txt b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-size.txt index 8a5638c983db..bea3ed2c8e30 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-MonoVM-size.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-MonoVM-size.txt @@ -1,11 +1,11 @@ -AppBundleSize: 9,865,919 bytes (9,634.7 KB = 9.4 MB) +AppBundleSize: 9,883,953 bytes (9,652.3 KB = 9.4 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: aot-instances.aotdata.arm64: - 888,296 bytes (867.5 KB = 0.8 MB) + 888,672 bytes (867.8 KB = 0.8 MB) Info.plist: - 1,126 bytes (1.1 KB = 0.0 MB) + 1,144 bytes (1.1 KB = 0.0 MB) Microsoft.tvOS.aotdata.arm64: - 23,680 bytes (23.1 KB = 0.0 MB) + 23,640 bytes (23.1 KB = 0.0 MB) Microsoft.tvOS.dll: 49,152 bytes (48.0 KB = 0.0 MB) PkgInfo: @@ -13,15 +13,15 @@ PkgInfo: runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) SizeTestApp: - 7,598,760 bytes (7,420.7 KB = 7.2 MB) + 7,615,264 bytes (7,436.8 KB = 7.3 MB) SizeTestApp.aotdata.arm64: 1,464 bytes (1.4 KB = 0.0 MB) SizeTestApp.dll: 7,680 bytes (7.5 KB = 0.0 MB) System.Private.CoreLib.aotdata.arm64: - 719,760 bytes (702.9 KB = 0.7 MB) + 719,912 bytes (703.0 KB = 0.7 MB) System.Private.CoreLib.dll: - 563,200 bytes (550.0 KB = 0.5 MB) + 564,224 bytes (551.0 KB = 0.5 MB) System.Runtime.aotdata.arm64: 784 bytes (0.8 KB = 0.0 MB) System.Runtime.dll: diff --git a/tests/dotnet/UnitTests/expected/TVOS-NativeAOT-TrimmableStatic-size.txt b/tests/dotnet/UnitTests/expected/TVOS-NativeAOT-TrimmableStatic-size.txt index 0e910a3e56c7..1364a8b16f00 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-NativeAOT-TrimmableStatic-size.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-NativeAOT-TrimmableStatic-size.txt @@ -1,10 +1,10 @@ -AppBundleSize: 2,217,416 bytes (2,165.4 KB = 2.1 MB) +AppBundleSize: 2,233,908 bytes (2,181.6 KB = 2.1 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Info.plist: - 1,135 bytes (1.1 KB = 0.0 MB) + 1,147 bytes (1.1 KB = 0.0 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,889 bytes (1.8 KB = 0.0 MB) SizeTestApp: - 2,214,384 bytes (2,162.5 KB = 2.1 MB) + 2,230,864 bytes (2,178.6 KB = 2.1 MB) diff --git a/tests/dotnet/UnitTests/expected/TVOS-NativeAOT-size.txt b/tests/dotnet/UnitTests/expected/TVOS-NativeAOT-size.txt index 0e910a3e56c7..1364a8b16f00 100644 --- a/tests/dotnet/UnitTests/expected/TVOS-NativeAOT-size.txt +++ b/tests/dotnet/UnitTests/expected/TVOS-NativeAOT-size.txt @@ -1,10 +1,10 @@ -AppBundleSize: 2,217,416 bytes (2,165.4 KB = 2.1 MB) +AppBundleSize: 2,233,908 bytes (2,181.6 KB = 2.1 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Info.plist: - 1,135 bytes (1.1 KB = 0.0 MB) + 1,147 bytes (1.1 KB = 0.0 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,889 bytes (1.8 KB = 0.0 MB) SizeTestApp: - 2,214,384 bytes (2,162.5 KB = 2.1 MB) + 2,230,864 bytes (2,178.6 KB = 2.1 MB) diff --git a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt index ffe5c3348e5d..fb4486152b04 100644 --- a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-preservedapis.txt @@ -1935,10 +1935,14 @@ System.Private.CoreLib.dll:/__StaticArrayInitTypeS System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::2F3EFC9595514E83DED03093C4F3E3C781A650E1AAB8CA350537CD1A47E1EE8E System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::F8919BA0F50317229A66884F9CE4E004B755100D8A4000A28D468B0627472F4D +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128_Align=8 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128_Align=8 ::4EFE2D3A64964C812874074A7FEE8B5A2B4425064A81A9D44C0E7A3025C716388 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316 ::A72EB4166B1B422391E0F6E483BEF87AE75881E655BCB152E37F3D9688B2AA71 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2 ::7BEC6AD454781FDCD8D475B3418629CBABB3BF9CA66FA80009D608A1A60D06962 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8 ::DD471F12FFA94CC557A02A91C2CBB95F551AB28C8BBF297B2F953B8886BCCF6D8 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552 ::3A2A62DD9288C777284B5B71FB3EFB59CFDF6BF81068A16795E6155DB8BFA701 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=16 @@ -1977,6 +1981,8 @@ System.Private.CoreLib.dll:/__StaticArrayInitTypeS System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=256_Align=8 ::40BC6C50487BFA78776C051EF7555931E4F15E5CEE9481EB280B1C2630B906B48 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=2 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=2 ::374EE580A55269D9E298B7EFD9DB0DFE1798E301679B89E48D722345EB74B59B2 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=4 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=4 ::2106C9B520169CFE919ED2D7BAE85C716D866D8DC2716F286D9C95511F1B9B014 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4 ::74BCD6ED20AF2231F2BB1CDE814C5F4FF48E54BAC46029EEF90DDF4A208E2B204 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32 @@ -2394,6 +2400,7 @@ System.Private.CoreLib.dll:method System.Void *(System.Byte&) System.RuntimeType System.Private.CoreLib.dll:method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::OnCompletedValueTaskSource System.Private.CoreLib.dll:method System.Void *(System.Object,System.Int16,System.Byte&) System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::_getResult System.Private.CoreLib.dll:method System.Void *(System.Object) System.RuntimeType/ActivatorCache::_pfnRefCtor +System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.Continuation,System.Int32,System.Action) System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterContinuation System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*) System.Runtime.CompilerServices.PortableTailCallFrame::NextCall System.Private.CoreLib.dll:method System.Void *(System.Threading.Tasks.Task,System.Byte&) System.Runtime.CompilerServices.RuntimeAsyncTaskContinuation::_getResult System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle @@ -2419,7 +2426,7 @@ System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Path() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_SupportsRandomAccess() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_ThreadPoolBinding() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Type() -System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeek() +System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeekCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileLength() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileTypeCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetThreadPoolValueTaskSource() @@ -2868,6 +2875,9 @@ System.Private.CoreLib.dll:System.Boolean System.Collections.ObjectModel.ReadOnl System.Private.CoreLib.dll:System.Boolean System.DateTimeRawInfo::hasSameDateAndTimeSeparators System.Private.CoreLib.dll:System.Boolean System.Decimal/DecCalc::IsNegative() System.Private.CoreLib.dll:System.Boolean System.DefaultBinder/BinderState::_isParamArray +System.Private.CoreLib.dll:System.Boolean System.Delegate::HasSingleTarget() +System.Private.CoreLib.dll:System.Boolean System.Delegate::IsClosed() +System.Private.CoreLib.dll:System.Boolean System.Delegate::IsUnmanagedFunctionPtr() System.Private.CoreLib.dll:System.Boolean System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Diagnostics.Debugger::IsAttached() System.Private.CoreLib.dll:System.Boolean System.Diagnostics.StackFrame::_isLastFrameFromForeignExceptionStackTrace @@ -2992,9 +3002,10 @@ System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::ForceI System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::FormatJapaneseFirstYearAsANumber() System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::ShowILOffsets() System.Private.CoreLib.dll:System.Boolean System.Memory`1::IsEmpty() -System.Private.CoreLib.dll:System.Boolean System.MulticastDelegate::HasSingleTarget() System.Private.CoreLib.dll:System.Boolean System.Nullable`1::hasValue System.Private.CoreLib.dll:System.Boolean System.Nullable`1::HasValue() +System.Private.CoreLib.dll:System.Boolean System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Number/DecodedDecimalIeee754`1::Signed() System.Private.CoreLib.dll:System.Boolean System.Number/NumberBuffer::HasNonZeroTail System.Private.CoreLib.dll:System.Boolean System.Number/NumberBuffer::IsNegative System.Private.CoreLib.dll:System.Boolean System.Numerics.Vector::IsHardwareAccelerated() @@ -3106,8 +3117,9 @@ System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_r System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_suppressContextualReflectionContext System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_throwOnError System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::SupportsUnboundGenerics() -System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncMethodBuilderCore::TrackAsyncMethodCompletion() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::CurrentContinuationCompleted +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::CurrentContinuationResumes +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::ReachedLastContinuation System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::_finalized System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::_invalid System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::HasCapacity() @@ -3708,12 +3720,12 @@ System.Private.CoreLib.dll:System.Byte modreq(System.Runtime.CompilerServices.Is System.Private.CoreLib.dll:System.Byte System.Byte::m_value System.Private.CoreLib.dll:System.Byte System.Byte::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Byte System.Collections.Generic.InsertionBehavior::value__ System.Private.CoreLib.dll:System.Byte System.DateTimeParse/DS::value__ System.Private.CoreLib.dll:System.Byte System.Decimal::Scale() -System.Private.CoreLib.dll:System.Byte System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::value__ System.Private.CoreLib.dll:System.Byte System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::value__ System.Private.CoreLib.dll:System.Byte System.DTSubStringType::value__ System.Private.CoreLib.dll:System.Byte System.GCMemoryInfoData::_compacted @@ -3756,12 +3768,17 @@ System.Private.CoreLib.dll:System.Byte System.TimeZoneInfo/TZifType::Abbreviatio System.Private.CoreLib.dll:System.Byte System.TimeZoneInfo/TZVersion::value__ System.Private.CoreLib.dll:System.Byte.CompareTo(System.Byte) System.Private.CoreLib.dll:System.Byte.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Byte.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Byte.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Byte.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Byte.DivRem(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Equals(System.Byte) System.Private.CoreLib.dll:System.Byte.Equals(System.Object) System.Private.CoreLib.dll:System.Byte.GetHashCode() System.Private.CoreLib.dll:System.Byte.GetTypeCode() +System.Private.CoreLib.dll:System.Byte.IsOddInteger(System.Byte) +System.Private.CoreLib.dll:System.Byte.LeadingZeroCount(System.Byte) +System.Private.CoreLib.dll:System.Byte.Log2(System.Byte) System.Private.CoreLib.dll:System.Byte.Max(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Min(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -3797,32 +3814,42 @@ System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastFrom(Sys System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastFrom(System.UInt64) System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastToUInt32(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IAdditionOperators.op_Addition(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_GreaterThan(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_LessThan(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IDivisionOperators.op_Division(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IEqualityOperators.op_Equality(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IEqualityOperators.op_Inequality(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Byte.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Byte.System.Numerics.IMultiplyOperators.op_Multiply(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsFinite(System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsInfinity(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsNaN(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsNegative(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsZero(System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToChecked`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.IShiftOperators.op_LeftShift(System.Byte, System.Int32) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IShiftOperators.op_RightShift(System.Byte, System.Int32) System.Private.CoreLib.dll:System.Byte.System.Numerics.ISubtractionOperators.op_Subtraction(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Byte) System.Private.CoreLib.dll:System.Byte.ToString() System.Private.CoreLib.dll:System.Byte.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Byte.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Byte.TryConvertFromChecked`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryConvertFromSaturating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryConvertFromTruncating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -3891,6 +3918,7 @@ System.Private.CoreLib.dll:System.Char System.Buffers.RangeCharSearchValues`1::_ System.Private.CoreLib.dll:System.Char System.Char::m_value System.Private.CoreLib.dll:System.Char System.Char::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Char System.CharEnumerator::Current() @@ -3971,27 +3999,39 @@ System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastFrom(Sys System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastFrom(System.UInt64) System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastToUInt32(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IAdditionOperators.op_Addition(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryInteger.GetByteCount() +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryInteger.LeadingZeroCount(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryNumber.Log2(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_GreaterThan(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_LessThan(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IDivisionOperators.op_Division(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IEqualityOperators.op_Equality(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IEqualityOperators.op_Inequality(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Char.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Char.System.Numerics.IMultiplyOperators.op_Multiply(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsFinite(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsInfinity(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsNaN(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsNegative(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsOddInteger(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsZero(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToChecked`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.IShiftOperators.op_LeftShift(System.Char, System.Int32) +System.Private.CoreLib.dll:System.Char.System.Numerics.IShiftOperators.op_RightShift(System.Char, System.Int32) System.Private.CoreLib.dll:System.Char.System.Numerics.ISubtractionOperators.op_Subtraction(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Char) System.Private.CoreLib.dll:System.Char.ToString() @@ -5180,6 +5220,7 @@ System.Private.CoreLib.dll:System.Decimal System.Decimal::MultiplicativeIdentity System.Private.CoreLib.dll:System.Decimal System.Decimal::NegativeOne System.Private.CoreLib.dll:System.Decimal System.Decimal::One System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Decimal System.Decimal::Zero @@ -5203,6 +5244,7 @@ System.Private.CoreLib.dll:System.Decimal..ctor(System.UInt64) System.Private.CoreLib.dll:System.Decimal.AsMutable(System.Decimal&) System.Private.CoreLib.dll:System.Decimal.CompareTo(System.Decimal) System.Private.CoreLib.dll:System.Decimal.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Decimal.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Decimal.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Decimal.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Decimal.DecDivMod1E9(System.Decimal&) @@ -5217,8 +5259,10 @@ System.Private.CoreLib.dll:System.Decimal.get_Scale() System.Private.CoreLib.dll:System.Decimal.GetHashCode() System.Private.CoreLib.dll:System.Decimal.GetTypeCode() System.Private.CoreLib.dll:System.Decimal.IsNegative(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.IsOddInteger(System.Decimal) System.Private.CoreLib.dll:System.Decimal.IsValid(System.Int32) System.Private.CoreLib.dll:System.Decimal.op_Addition(System.Decimal, System.Decimal) +System.Private.CoreLib.dll:System.Decimal.op_Division(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Equality(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Explicit(System.Decimal) => System.Byte System.Private.CoreLib.dll:System.Decimal.op_Explicit(System.Decimal) => System.Char @@ -5247,6 +5291,7 @@ System.Private.CoreLib.dll:System.Decimal.op_Implicit(System.UInt64) => System.D System.Private.CoreLib.dll:System.Decimal.op_Inequality(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_LessThan(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_LessThanOrEqual(System.Decimal, System.Decimal) +System.Private.CoreLib.dll:System.Decimal.op_Multiply(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Subtraction(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_UnaryNegation(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -5270,11 +5315,14 @@ System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt16(System.IF System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Decimal.System.Numerics.IMinMaxValue.get_MinValue() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsFinite(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsInfinity(System.Decimal) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsNaN(System.Decimal) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsZero(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertToChecked`1(System.Decimal, out TOther&) @@ -5295,40 +5343,77 @@ System.Private.CoreLib.dll:System.Decimal.ToUInt64(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Truncate(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Truncate(System.Decimal&) System.Private.CoreLib.dll:System.Decimal.TryConvertFrom`1(TOther, out System.Decimal&) +System.Private.CoreLib.dll:System.Decimal.TryConvertFromChecked`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.TryConvertTo`1(System.Decimal, out TOther&) System.Private.CoreLib.dll:System.Decimal.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal/DecCalc +System.Private.CoreLib.dll:System.Decimal/DecCalc..cctor() +System.Private.CoreLib.dll:System.Decimal/DecCalc.Add32To96(System.Decimal/DecCalc/Buf12&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecAddSub(System.Decimal/DecCalc&, System.Decimal/DecCalc&, System.Boolean) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecDivMod1E9(System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPoint`1(System.UInt64, System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPointExact(System.UInt64, System.UInt32, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div128By64(System.Decimal/DecCalc/Buf16&, System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div128By96(System.Decimal/DecCalc/Buf16&, System.Decimal/DecCalc/Buf12&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div64By32(System.UInt64, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96By32(System.Decimal/DecCalc/Buf12&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96By64(System.Decimal/DecCalc/Buf12&, System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96ByConst(System.UInt64&, System.UInt32&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DivByConst(System.UInt32*, System.UInt32, out System.UInt32&, out System.UInt32&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Equals(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.get_High() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_IsNegative() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Mid() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Scale() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_UInt32Powers10() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_UInt64Powers10() System.Private.CoreLib.dll:System.Decimal/DecCalc.GetHashCode(System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale(System.Decimal/DecCalc/Buf12&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale(System.Decimal/DecCalc/Buf16&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale64(System.Decimal/DecCalc/Buf12&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.InternalRound(System.Decimal/DecCalc&, System.UInt32, System.MidpointRounding) +System.Private.CoreLib.dll:System.Decimal/DecCalc.OverflowUnscale(System.Decimal/DecCalc/Buf12&, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Decimal/DecCalc.Pow5(System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.RoundShiftRightEven(System.UInt128, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.ScaleResult(System.Decimal/DecCalc/Buf24*, System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.SearchScale(System.UInt64, System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.set_High(System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Low(System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Low64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Mid(System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.Unscale(System.UInt32&, System.UInt64&, System.Int32&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarCyFromDec(System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecCmp(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecCmpSub(System.Decimal&, System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecDiv(System.Decimal/DecCalc&, System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromFloat`1(TNumber, out System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromR4(System.Single, out System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromR8(System.Double, out System.Decimal/DecCalc&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecMul(System.Decimal/DecCalc&, System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarR4FromDec(System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarR8FromDec(System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 System.Decimal/DecCalc/Buf16::High96 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 System.Decimal/DecCalc/Buf16::Low96 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.get_High64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.set_High64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.set_Low64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.get_High64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.set_High64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.set_Low64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24 System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_High64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_Low64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_Mid64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl..ctor(System.UInt32, System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl[] System.Decimal/DecCalc::PowerOvflValues System.Private.CoreLib.dll:System.DefaultBinder System.Private.CoreLib.dll:System.DefaultBinder System.DefaultBinder::Instance System.Private.CoreLib.dll:System.DefaultBinder..cctor() @@ -5372,47 +5457,74 @@ System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/ System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/Primitives::UInt32 System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/Primitives::UInt64 System.Private.CoreLib.dll:System.Delegate +System.Private.CoreLib.dll:System.Delegate System.Delegate/Wrapper::Value System.Private.CoreLib.dll:System.Delegate System.Threading.CancellationTokenSource/CallbackNode::Callback System.Private.CoreLib.dll:System.Delegate System.Threading.Tasks.Task::m_action System.Private.CoreLib.dll:System.Delegate System.Threading.Thread/StartHelper::_start -System.Private.CoreLib.dll:System.Delegate.g____PInvoke|19_0(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags) -System.Private.CoreLib.dll:System.Delegate.g____PInvoke|32_0(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.g____PInvoke|34_0(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Delegate/BindToMethodDetails*) +System.Private.CoreLib.dll:System.Delegate.g____PInvoke|39_0(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, System.Delegate/BindToMethodDetails*) System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Runtime.CompilerServices.MethodTable*, System.IntPtr) System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Object, System.IRuntimeMethodInfo, System.RuntimeType, System.DelegateBindingFlags) -System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags) +System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags, System.Runtime.CompilerServices.ObjectHandleOnStack, out System.Delegate/BindToMethodDetails&) System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) -System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) +System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) +System.Private.CoreLib.dll:System.Delegate.CtorClosed(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorClosedStatic(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleClosedStatic(System.Object, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleOpen(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleVirtualDispatch(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorOpen(System.Object, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorRTClosed(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorVirtualDispatch(System.Object, System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.Delegate.DelegateConstruct(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.DeleteFromInvocationList(System.ReadOnlySpan`1, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Delegate.EnumerateInvocationList`1(TDelegate) System.Private.CoreLib.dll:System.Delegate.Equals(System.Object) -System.Private.CoreLib.dll:System.Delegate.FindMethodHandle() -System.Private.CoreLib.dll:System.Delegate.FindMethodHandle(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.get_HasSingleTarget() +System.Private.CoreLib.dll:System.Delegate.get_IsClosed() +System.Private.CoreLib.dll:System.Delegate.get_IsUnmanagedFunctionPtr() System.Private.CoreLib.dll:System.Delegate.get_Method() +System.Private.CoreLib.dll:System.Delegate.get_MethodDesc() System.Private.CoreLib.dll:System.Delegate.GetHashCode() System.Private.CoreLib.dll:System.Delegate.GetInvokeMethod() System.Private.CoreLib.dll:System.Delegate.GetInvokeMethod(System.Runtime.CompilerServices.MethodTable*) +System.Private.CoreLib.dll:System.Delegate.GetMethodDesc() +System.Private.CoreLib.dll:System.Delegate.GetMethodDesc(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.GetMethodImpl() +System.Private.CoreLib.dll:System.Delegate.GetMethodImplUncached() System.Private.CoreLib.dll:System.Delegate.GetMulticastInvoke() System.Private.CoreLib.dll:System.Delegate.GetMulticastInvoke(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.GetMulticastInvokeSlow(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.GetTargetForSingleCastInstanceDelegate() System.Private.CoreLib.dll:System.Delegate.InitializeVirtualCallStub(System.IntPtr) System.Private.CoreLib.dll:System.Delegate.InitializeVirtualCallStub(System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.InternalAlloc(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.InternalAlloc(System.RuntimeType) -System.Private.CoreLib.dll:System.Delegate.InternalEqualMethodHandles(System.Delegate, System.Delegate) -System.Private.CoreLib.dll:System.Delegate.InternalEqualMethodHandles(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.InternalEqualTypes(System.Object, System.Object) +System.Private.CoreLib.dll:System.Delegate.NewMulticastDelegate(System.Delegate/Wrapper[], System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Delegate.op_Equality(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.Remove(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.RemoveImpl(System.Delegate) +System.Private.CoreLib.dll:System.Delegate.ThrowNullThisInDelegateToInstance() +System.Private.CoreLib.dll:System.Delegate.TryGetAt(System.Int32) +System.Private.CoreLib.dll:System.Delegate.TryGetInvocations(out System.ReadOnlySpan`1&) +System.Private.CoreLib.dll:System.Delegate.TrySetSlot(System.Delegate&, System.Delegate) +System.Private.CoreLib.dll:System.Delegate/BindToMethodDetails System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1 System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1..ctor(System.MulticastDelegate) System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.get_Current() System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.GetEnumerator() System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.MoveNext() +System.Private.CoreLib.dll:System.Delegate/Wrapper +System.Private.CoreLib.dll:System.Delegate/Wrapper..ctor(System.Delegate) +System.Private.CoreLib.dll:System.Delegate/Wrapper.Equals(System.Delegate/Wrapper) +System.Private.CoreLib.dll:System.Delegate/Wrapper.Equals(System.Object) +System.Private.CoreLib.dll:System.Delegate/Wrapper.GetHashCode() System.Private.CoreLib.dll:System.DelegateBindingFlags System.Private.CoreLib.dll:System.DelegateBindingFlags System.DelegateBindingFlags::CaselessMatching System.Private.CoreLib.dll:System.DelegateBindingFlags System.DelegateBindingFlags::ClosedDelegateOnly @@ -5639,20 +5751,6 @@ System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource System.Diagnostics.Tracing.NativeRuntimeEventSource::Log System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource..cctor() System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource..ctor() -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.IntPtr, System.IntPtr, System.UInt64) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStart(System.Threading.Lock) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStop(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStop(System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogContentionStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.IntPtr, System.IntPtr, System.UInt64) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogContentionStop(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogWaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.IntPtr, System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogWaitHandleWaitStop(System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.IntPtr, System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.Object) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStop(System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::Managed -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::Native System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::MonitorWait System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::Unknown @@ -5678,9 +5776,11 @@ System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatingPointIeee754.PositiveInfinity() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Double System.NotFiniteNumberException::_offendingNumber +System.Private.CoreLib.dll:System.Double System.Number/SqrtCoefficients::C System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_date System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_r8 System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.NFloat::_value @@ -5706,9 +5806,11 @@ System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalDays() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalHours() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalMilliseconds() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalSeconds() +System.Private.CoreLib.dll:System.Double.Abs(System.Double) System.Private.CoreLib.dll:System.Double.CompareTo(System.Double) System.Private.CoreLib.dll:System.Double.CompareTo(System.Object) System.Private.CoreLib.dll:System.Double.ConvertToIntegerNative`1(System.Double) +System.Private.CoreLib.dll:System.Double.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Double.CreateDouble(System.Boolean, System.UInt16, System.UInt64) System.Private.CoreLib.dll:System.Double.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Double.CreateTruncating`1(TOther) @@ -5717,14 +5819,19 @@ System.Private.CoreLib.dll:System.Double.Equals(System.Object) System.Private.CoreLib.dll:System.Double.GetHashCode() System.Private.CoreLib.dll:System.Double.GetTypeCode() System.Private.CoreLib.dll:System.Double.IsFinite(System.Double) +System.Private.CoreLib.dll:System.Double.IsInfinity(System.Double) +System.Private.CoreLib.dll:System.Double.IsInteger(System.Double) System.Private.CoreLib.dll:System.Double.IsNaN(System.Double) System.Private.CoreLib.dll:System.Double.IsNaNOrZero(System.Double) System.Private.CoreLib.dll:System.Double.IsNegative(System.Double) +System.Private.CoreLib.dll:System.Double.IsOddInteger(System.Double) System.Private.CoreLib.dll:System.Double.IsZero(System.Double) +System.Private.CoreLib.dll:System.Double.Log2(System.Double) System.Private.CoreLib.dll:System.Double.Max(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.Min(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_Equality(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_GreaterThan(System.Double, System.Double) +System.Private.CoreLib.dll:System.Double.op_GreaterThanOrEqual(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_Inequality(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_LessThan(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_LessThanOrEqual(System.Double, System.Double) @@ -5774,15 +5881,20 @@ System.Private.CoreLib.dll:System.Double.System.IConvertible.ToUInt64(System.IFo System.Private.CoreLib.dll:System.Double.System.Numerics.IAdditionOperators.op_Addition(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Double, System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.IDivisionOperators.op_Division(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NaN() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NegativeInfinity() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NegativeZero() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_PositiveInfinity() System.Private.CoreLib.dll:System.Double.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Double.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Double.System.Numerics.IMultiplyOperators.op_Multiply(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.IsZero(System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertToChecked`1(System.Double, out TOther&) @@ -5793,6 +5905,7 @@ System.Private.CoreLib.dll:System.Double.System.Numerics.IUnaryNegationOperators System.Private.CoreLib.dll:System.Double.ToString() System.Private.CoreLib.dll:System.Double.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Double.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Double.Truncate(System.Double) System.Private.CoreLib.dll:System.Double.TryConvertFrom`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.TryConvertTo`1(System.Double, out TOther&) System.Private.CoreLib.dll:System.Double.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -6264,11 +6377,6 @@ System.Private.CoreLib.dll:System.GC/GC_ALLOC_FLAGS System.GC/GC_ALLOC_FLAGS::GC System.Private.CoreLib.dll:System.GC/GC_ALLOC_FLAGS System.GC/GC_ALLOC_FLAGS::GC_ALLOC_ZEROING_OPTIONAL System.Private.CoreLib.dll:System.GC/GCHeapHardLimitInfo System.Private.CoreLib.dll:System.GCGenerationInfo -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo0 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo1 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo2 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo3 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo4 System.Private.CoreLib.dll:System.GCKind System.Private.CoreLib.dll:System.GCKind System.GCKind::Any System.Private.CoreLib.dll:System.GCKind System.GCKind::Background @@ -7205,11 +7313,12 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globaliz System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::InvariantInfo() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..cctor() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData) -System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|58_0(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|60_0(System.IFormatProvider) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|167_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|166_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|165_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.AllowHyphenDuringParsing() +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CreateUtf8Cache(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyGroupSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencySymbolTChar`1() @@ -7232,6 +7341,7 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PercentPosi System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetFormat(System.Type) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetUtf8Span(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.InitializeInvariantAndNegativeSignFlags() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NaNSymbolTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NegativeInfinitySymbolTChar`1() @@ -7257,7 +7367,6 @@ System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalizatio System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowLeadingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowParentheses System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowThousands -System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingInvalidCharacters System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingSign System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::Any @@ -7627,6 +7736,7 @@ System.Private.CoreLib.dll:System.Guid.TryFormatCore`1(System.Span`1, out System.Private.CoreLib.dll:System.Guid.TryFormatX`1(System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Half System.Private.CoreLib.dll:System.Half System.Half::MaxValue() +System.Private.CoreLib.dll:System.Half System.Half::MinValue() System.Private.CoreLib.dll:System.Half System.Half::NaN() System.Private.CoreLib.dll:System.Half System.Half::NegativeInfinity() System.Private.CoreLib.dll:System.Half System.Half::NegativeZero() @@ -7638,6 +7748,7 @@ System.Private.CoreLib.dll:System.Half..ctor(System.UInt16) System.Private.CoreLib.dll:System.Half.AreZero(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.CompareTo(System.Half) System.Private.CoreLib.dll:System.Half.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Half.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Half.CreateDoubleNaN(System.Boolean, System.UInt64) System.Private.CoreLib.dll:System.Half.CreateHalfNaN(System.Boolean, System.UInt64) System.Private.CoreLib.dll:System.Half.CreateSaturating`1(TOther) @@ -7648,6 +7759,7 @@ System.Private.CoreLib.dll:System.Half.ExtractBiasedExponentFromBits(System.UInt System.Private.CoreLib.dll:System.Half.ExtractTrailingSignificandFromBits(System.UInt16) System.Private.CoreLib.dll:System.Half.get_BiasedExponent() System.Private.CoreLib.dll:System.Half.get_MaxValue() +System.Private.CoreLib.dll:System.Half.get_MinValue() System.Private.CoreLib.dll:System.Half.get_NaN() System.Private.CoreLib.dll:System.Half.get_NegativeInfinity() System.Private.CoreLib.dll:System.Half.get_NegativeZero() @@ -7655,12 +7767,16 @@ System.Private.CoreLib.dll:System.Half.get_One() System.Private.CoreLib.dll:System.Half.get_PositiveInfinity() System.Private.CoreLib.dll:System.Half.get_TrailingSignificand() System.Private.CoreLib.dll:System.Half.get_Zero() +System.Private.CoreLib.dll:System.Half.GetCompareKey(System.UInt16) System.Private.CoreLib.dll:System.Half.GetHashCode() System.Private.CoreLib.dll:System.Half.IsFinite(System.Half) +System.Private.CoreLib.dll:System.Half.IsInfinity(System.Half) System.Private.CoreLib.dll:System.Half.IsNaN(System.Half) System.Private.CoreLib.dll:System.Half.IsNaNOrZero(System.Half) System.Private.CoreLib.dll:System.Half.IsNegative(System.Half) +System.Private.CoreLib.dll:System.Half.IsOddInteger(System.Half) System.Private.CoreLib.dll:System.Half.IsZero(System.Half) +System.Private.CoreLib.dll:System.Half.Log2(System.Half) System.Private.CoreLib.dll:System.Half.NormSubnormalF16Sig(System.UInt32) System.Private.CoreLib.dll:System.Half.op_Addition(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) @@ -7671,6 +7787,12 @@ System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_Division(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Equality(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Explicit(System.Char) => System.Half System.Private.CoreLib.dll:System.Half.op_Explicit(System.Decimal) => System.Half @@ -7707,6 +7829,7 @@ System.Private.CoreLib.dll:System.Half.op_Implicit(System.SByte) => System.Half System.Private.CoreLib.dll:System.Half.op_Inequality(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_LessThan(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_LessThanOrEqual(System.Half, System.Half) +System.Private.CoreLib.dll:System.Half.op_Multiply(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Subtraction(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_UnaryNegation(System.Half) System.Private.CoreLib.dll:System.Half.RoundPackToHalf(System.Boolean, System.Int16, System.UInt16) @@ -7739,8 +7862,10 @@ System.Private.CoreLib.dll:System.Half.System.IBinaryFloatParseAndFormatInfo.get_ZeroBits() System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Half, System.Half) +System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.IsZero(System.Half) +System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertToChecked`1(System.Half, out TOther&) @@ -7849,6 +7974,42 @@ System.Private.CoreLib.dll:System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.ICustomFormatter System.Private.CoreLib.dll:System.ICustomFormatter.Format(System.String, System.Object, System.IFormatProvider) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2 +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.ConvertToExponent(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.CountDigits(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.DivRemPow10(TValue, System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_BufferLength() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_ExponentBias() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G0G1Mask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxSignificand() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MinExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NaN() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NaNMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NegativeInfinity() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_PositiveInfinity() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_Precision() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_SignMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_Zero() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsFinite(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNaN(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNegative(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNegativeInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsPositiveInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.Power10(System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.ToDecStr(TValue) System.Private.CoreLib.dll:System.IDisposable System.Private.CoreLib.dll:System.IDisposable.Dispose() System.Private.CoreLib.dll:System.IEquatable`1 @@ -7865,6 +8026,7 @@ System.Private.CoreLib.dll:System.Index System.Range::k__BackingField System.Private.CoreLib.dll:System.Index System.Range::k__BackingField System.Private.CoreLib.dll:System.Index System.Range::End() System.Private.CoreLib.dll:System.Index System.Range::Start() +System.Private.CoreLib.dll:System.Index..ctor(System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Index..ctor(System.Int32) System.Private.CoreLib.dll:System.Index.Equals(System.Index) System.Private.CoreLib.dll:System.Index.Equals(System.Object) @@ -7897,8 +8059,10 @@ System.Private.CoreLib.dll:System.Int128 System.Int128::Zero() System.Private.CoreLib.dll:System.Int128..ctor(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.Int128.CompareTo(System.Int128) System.Private.CoreLib.dll:System.Int128.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int128.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int128.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int128.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int128.DivRem(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.Equals(System.Int128) System.Private.CoreLib.dll:System.Int128.Equals(System.Object) System.Private.CoreLib.dll:System.Int128.get_MaxValue() @@ -7907,7 +8071,11 @@ System.Private.CoreLib.dll:System.Int128.get_One() System.Private.CoreLib.dll:System.Int128.get_Zero() System.Private.CoreLib.dll:System.Int128.GetHashCode() System.Private.CoreLib.dll:System.Int128.IsNegative(System.Int128) +System.Private.CoreLib.dll:System.Int128.IsOddInteger(System.Int128) System.Private.CoreLib.dll:System.Int128.IsPositive(System.Int128) +System.Private.CoreLib.dll:System.Int128.LeadingZeroCount(System.Int128) +System.Private.CoreLib.dll:System.Int128.LeadingZeroCountAsInt32(System.Int128) +System.Private.CoreLib.dll:System.Int128.Log2(System.Int128) System.Private.CoreLib.dll:System.Int128.op_Addition(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_BitwiseAnd(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_BitwiseOr(System.Int128, System.Int128) @@ -7920,7 +8088,14 @@ System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Single) +System.Private.CoreLib.dll:System.Int128.op_Division(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Equality(System.Int128, System.Int128) +System.Private.CoreLib.dll:System.Int128.op_ExclusiveOr(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Decimal) => System.Int128 System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Double) => System.Int128 System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Int128) => System.Byte @@ -7959,6 +8134,7 @@ System.Private.CoreLib.dll:System.Int128.op_LessThan(System.Int128, System.Int12 System.Private.CoreLib.dll:System.Int128.op_LessThanOrEqual(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Multiply(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_OnesComplement(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_RightShift(System.Int128, System.Int32) System.Private.CoreLib.dll:System.Int128.op_Subtraction(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_UnaryNegation(System.Int128) System.Private.CoreLib.dll:System.Int128.op_UnsignedRightShift(System.Int128, System.Int32) @@ -7970,9 +8146,12 @@ System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.IsGreaterThanAsUnsigned(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy10(System.Int128) System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy16(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsFinite(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsInfinity(System.Int128) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsNaN(System.Int128) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsZero(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int128, out TOther&) @@ -7981,6 +8160,7 @@ System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -7993,6 +8173,7 @@ System.Private.CoreLib.dll:System.Int16 System.Guid::_c System.Private.CoreLib.dll:System.Int16 System.Int16::m_value System.Private.CoreLib.dll:System.Int16 System.Int16::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token @@ -8031,13 +8212,18 @@ System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1::_tok System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_token System.Private.CoreLib.dll:System.Int16.CompareTo(System.Int16) System.Private.CoreLib.dll:System.Int16.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int16.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int16.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int16.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int16.DivRem(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Equals(System.Int16) System.Private.CoreLib.dll:System.Int16.Equals(System.Object) System.Private.CoreLib.dll:System.Int16.GetHashCode() System.Private.CoreLib.dll:System.Int16.GetTypeCode() System.Private.CoreLib.dll:System.Int16.IsNegative(System.Int16) +System.Private.CoreLib.dll:System.Int16.IsOddInteger(System.Int16) +System.Private.CoreLib.dll:System.Int16.LeadingZeroCount(System.Int16) +System.Private.CoreLib.dll:System.Int16.Log2(System.Int16) System.Private.CoreLib.dll:System.Int16.Max(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Min(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -8067,31 +8253,41 @@ System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.System.Numerics.IAdditionOperators.op_Addition(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_LessThan(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IDivisionOperators.op_Division(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IEqualityOperators.op_Equality(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IEqualityOperators.op_Inequality(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int16.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int16.System.Numerics.IMultiplyOperators.op_Multiply(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsFinite(System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsInfinity(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsNaN(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsZero(System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.IShiftOperators.op_LeftShift(System.Int16, System.Int32) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IShiftOperators.op_RightShift(System.Int16, System.Int32) System.Private.CoreLib.dll:System.Int16.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int16) System.Private.CoreLib.dll:System.Int16.ToString() System.Private.CoreLib.dll:System.Int16.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Int16.TryConvertFromChecked`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryConvertFromSaturating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryConvertFromTruncating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -8243,6 +8439,7 @@ System.Private.CoreLib.dll:System.Int32 System.Decimal::_flags System.Private.CoreLib.dll:System.Int32 System.Decimal/DecCalc::Scale() System.Private.CoreLib.dll:System.Int32 System.DefaultBinder/BinderState::_originalSize System.Private.CoreLib.dll:System.Int32 System.DefaultBinder/Primitives::value__ +System.Private.CoreLib.dll:System.Int32 System.Delegate/BindToMethodDetails::selfReferentialTarget System.Private.CoreLib.dll:System.Int32 System.Delegate/InvocationListEnumerator`1::_index System.Private.CoreLib.dll:System.Int32 System.DelegateBindingFlags::value__ System.Private.CoreLib.dll:System.Int32 System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes::value__ @@ -8437,6 +8634,14 @@ System.Private.CoreLib.dll:System.Int32 System.IBinaryFloatParseAndFormatInfo`1: System.Private.CoreLib.dll:System.Int32 System.IBinaryFloatParseAndFormatInfo`1::OverflowDecimalExponent() System.Private.CoreLib.dll:System.Int32 System.IBinaryIntegerParseAndFormatInfo`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.IBinaryIntegerParseAndFormatInfo`1::MaxHexDigitCount() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::BufferLength() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MinExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::Precision() System.Private.CoreLib.dll:System.Int32 System.Index::_value System.Private.CoreLib.dll:System.Int32 System.Index::Value() System.Private.CoreLib.dll:System.Int32 System.Int128::System.IBinaryIntegerParseAndFormatInfo.MaxDigitCount() @@ -8448,6 +8653,7 @@ System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParse System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParseAndFormatInfo.MaxHexDigitCount() System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int32 System.Int64::System.IBinaryIntegerParseAndFormatInfo.MaxDigitCount() @@ -8498,12 +8704,40 @@ System.Private.CoreLib.dll:System.Int32 System.Memory`1::Length() System.Private.CoreLib.dll:System.Int32 System.MidpointRounding::value__ System.Private.CoreLib.dll:System.Int32 System.Number/BigInteger::_length System.Private.CoreLib.dll:System.Int32 System.Number/BinaryParser`1::MaxDigitCount() +System.Private.CoreLib.dll:System.Int32 System.Number/DecimalIeee754ToIntegerStatus::value__ +System.Private.CoreLib.dll:System.Int32 System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Number/DecodedDecimalIeee754`1::UnbiasedExponent() System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp::e +System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp128::_exponent System.Private.CoreLib.dll:System.Int32 System.Number/HexParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/IHexOrBinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::DigitsCount System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::Scale System.Private.CoreLib.dll:System.Int32 System.Number/ParsingStatus::value__ +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.Precision() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.Precision() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.Precision() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector::Alignment() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector`1::Count() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector`1::System.Runtime.Intrinsics.ISimdVector,T>.Alignment() @@ -8613,6 +8847,7 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::Generic System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_maxCacheSize @@ -8780,7 +9015,6 @@ System.Private.CoreLib.dll:System.Int32 System.Threading.AbandonedMutexException System.Private.CoreLib.dll:System.Int32 System.Threading.CancellationTokenSource/States::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.EventResetMode::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::_owningThreadId -System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::OwningThreadId() System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::s_staticsInitializationStage System.Private.CoreLib.dll:System.Int32 System.Threading.Lock/Scope::_currentThreadId System.Private.CoreLib.dll:System.Int32 System.Threading.Lock/StaticsInitializationStage::value__ @@ -8900,11 +9134,14 @@ System.Private.CoreLib.dll:System.Int32.CompareTo(System.Object) System.Private.CoreLib.dll:System.Int32.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int32.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int32.DivRem(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Equals(System.Int32) System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.IsOddInteger(System.Int32) +System.Private.CoreLib.dll:System.Int32.LeadingZeroCount(System.Int32) System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) @@ -8935,26 +9172,35 @@ System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int32.System.Numerics.IAdditionOperators.op_Addition(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_LessThan(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IDivisionOperators.op_Division(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IEqualityOperators.op_Equality(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IEqualityOperators.op_Inequality(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int32.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int32.System.Numerics.IMultiplyOperators.op_Multiply(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsFinite(System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsInfinity(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsNaN(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsZero(System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.IShiftOperators.op_LeftShift(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IShiftOperators.op_RightShift(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int32) System.Private.CoreLib.dll:System.Int32.ToString() @@ -9055,6 +9301,7 @@ System.Private.CoreLib.dll:System.Int64 System.Globalization.PersianCalendar::s_ System.Private.CoreLib.dll:System.Int64 System.Int64::m_value System.Private.CoreLib.dll:System.Int64 System.Int64::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int64 System.IO.FileStream::Length() @@ -9112,13 +9359,18 @@ System.Private.CoreLib.dll:System.Int64 System.TimeZoneInfo/DateTimeNowCache::_n System.Private.CoreLib.dll:System.Int64 System.TimeZoneInfo/DateTimeNowCache::_nowUtcOffsetTicks System.Private.CoreLib.dll:System.Int64.CompareTo(System.Int64) System.Private.CoreLib.dll:System.Int64.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int64.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int64.DivRem(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Equals(System.Int64) System.Private.CoreLib.dll:System.Int64.Equals(System.Object) System.Private.CoreLib.dll:System.Int64.GetHashCode() System.Private.CoreLib.dll:System.Int64.GetTypeCode() System.Private.CoreLib.dll:System.Int64.IsNegative(System.Int64) +System.Private.CoreLib.dll:System.Int64.IsOddInteger(System.Int64) +System.Private.CoreLib.dll:System.Int64.LeadingZeroCount(System.Int64) +System.Private.CoreLib.dll:System.Int64.Log2(System.Int64) System.Private.CoreLib.dll:System.Int64.Max(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Min(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -9148,32 +9400,42 @@ System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.System.Numerics.IAdditionOperators.op_Addition(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_LessThan(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IDivisionOperators.op_Division(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IEqualityOperators.op_Equality(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IEqualityOperators.op_Inequality(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int64.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int64.System.Numerics.IMultiplyOperators.op_Multiply(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsFinite(System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsInfinity(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsNaN(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsZero(System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.IShiftOperators.op_LeftShift(System.Int64, System.Int32) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IShiftOperators.op_RightShift(System.Int64, System.Int32) System.Private.CoreLib.dll:System.Int64.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int64) System.Private.CoreLib.dll:System.Int64.ToString() System.Private.CoreLib.dll:System.Int64.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.ToString(System.String) +System.Private.CoreLib.dll:System.Int64.TryConvertFromChecked`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryConvertFromSaturating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryConvertFromTruncating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -9189,19 +9451,24 @@ System.Private.CoreLib.dll:System.IntPtr System.ArgIterator::_argPtr System.Private.CoreLib.dll:System.IntPtr System.ArgIterator/SigPointer::_ptr System.Private.CoreLib.dll:System.IntPtr System.ComAwareWeakReference::_weakHandle System.Private.CoreLib.dll:System.IntPtr System.ComAwareWeakReference/ComInfo::_pComWeakRef +System.Private.CoreLib.dll:System.IntPtr System.Delegate::_extraData System.Private.CoreLib.dll:System.IntPtr System.Delegate::_methodPtr System.Private.CoreLib.dll:System.IntPtr System.Delegate::_methodPtrAux +System.Private.CoreLib.dll:System.IntPtr System.Delegate::UnmanagedMarker +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::extraData +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::methodPtr +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::methodPtrAux System.Private.CoreLib.dll:System.IntPtr System.Diagnostics.Tracing.EventSource::m_writeEventStringEventHandle System.Private.CoreLib.dll:System.IntPtr System.Exception::_xptrs System.Private.CoreLib.dll:System.IntPtr System.IntPtr::_value System.Private.CoreLib.dll:System.IntPtr System.IntPtr::MaxValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::MinValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::Zero System.Private.CoreLib.dll:System.IntPtr System.IO.Enumeration.FileSystemEnumerator`1::_directoryHandle -System.Private.CoreLib.dll:System.IntPtr System.MulticastDelegate::_invocationCount System.Private.CoreLib.dll:System.IntPtr System.Reflection.ConstArray::m_constArray System.Private.CoreLib.dll:System.IntPtr System.Reflection.ConstArray::Signature() System.Private.CoreLib.dll:System.IntPtr System.Reflection.FieldAccessor::_addressOrOffset @@ -9282,7 +9549,6 @@ System.Private.CoreLib.dll:System.IntPtr System.RuntimeType::m_cache System.Private.CoreLib.dll:System.IntPtr System.RuntimeType::m_handle System.Private.CoreLib.dll:System.IntPtr System.RuntimeTypeHandle::Value() System.Private.CoreLib.dll:System.IntPtr System.Threading.AutoreleasePool::s_AutoreleasePoolInstance -System.Private.CoreLib.dll:System.IntPtr System.Threading.Lock::LockIdForEvents() System.Private.CoreLib.dll:System.IntPtr System.Threading.LowLevelMonitor::_nativeMonitor System.Private.CoreLib.dll:System.IntPtr System.Threading.Thread::_DONT_USE_InternalThread System.Private.CoreLib.dll:System.IntPtr System.Threading.Thread/DirectOnThreadLocalData::pNativeThread @@ -9296,8 +9562,10 @@ System.Private.CoreLib.dll:System.IntPtr..ctor(System.Int64) System.Private.CoreLib.dll:System.IntPtr..ctor(System.Void*) System.Private.CoreLib.dll:System.IntPtr.CompareTo(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.CompareTo(System.Object) +System.Private.CoreLib.dll:System.IntPtr.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.IntPtr.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.IntPtr.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.IntPtr.DivRem(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Equals(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Equals(System.Object) System.Private.CoreLib.dll:System.IntPtr.get_MaxValue() @@ -9305,29 +9573,41 @@ System.Private.CoreLib.dll:System.IntPtr.get_MinValue() System.Private.CoreLib.dll:System.IntPtr.get_Size() System.Private.CoreLib.dll:System.IntPtr.GetHashCode() System.Private.CoreLib.dll:System.IntPtr.IsNegative(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.IsOddInteger(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.LeadingZeroCount(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.Log2(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Max(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Min(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.op_Equality(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.op_Inequality(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IAdditionOperators.op_Addition(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_OnesComplement(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_GreaterThan(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_LessThan(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IDivisionOperators.op_Division(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMultiplyOperators.op_Multiply(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsFinite(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsInfinity(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsNaN(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsZero(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToChecked`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToSaturating`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToTruncating`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IShiftOperators.op_LeftShift(System.IntPtr, System.Int32) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IShiftOperators.op_RightShift(System.IntPtr, System.Int32) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.ISubtractionOperators.op_Subtraction(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.ToInt64() @@ -9335,6 +9615,7 @@ System.Private.CoreLib.dll:System.IntPtr.ToPointer() System.Private.CoreLib.dll:System.IntPtr.ToString() System.Private.CoreLib.dll:System.IntPtr.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.IntPtr.ToString(System.String) +System.Private.CoreLib.dll:System.IntPtr.TryConvertFromChecked`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryConvertFromSaturating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryConvertFromTruncating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -9780,6 +10061,7 @@ System.Private.CoreLib.dll:System.IO.RandomAccess.ReadScatterAtOffset(Microsoft. System.Private.CoreLib.dll:System.IO.RandomAccess.ShouldFallBackToNonOffsetSyscall(Interop/ErrorInfo) System.Private.CoreLib.dll:System.IO.RandomAccess.ValidateInput(Microsoft.Win32.SafeHandles.SafeFileHandle, System.Int64, System.Boolean) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlySpan`1, System.Int64) +System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlySpan`1, System.Int64&) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffsetAsync(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlyMemory`1, System.Int64, System.Threading.CancellationToken, System.IO.Strategies.OSFileStreamStrategy) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteGatherAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.Collections.Generic.IReadOnlyList`1>, System.Int64) System.Private.CoreLib.dll:System.IO.SearchOption @@ -10046,7 +10328,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value -System.Private.CoreLib.dll:System.IRuntimeMethodInfo.get_Value() +System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable System.Private.CoreLib.dll:System.ISpanFormattable.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.IUtf8SpanFormattable @@ -10079,8 +10361,8 @@ System.Private.CoreLib.dll:System.Marvin.ComputeHash32OrdinalIgnoreCaseSlow(Syst System.Private.CoreLib.dll:System.Marvin.GenerateSeed() System.Private.CoreLib.dll:System.Marvin.get_DefaultSeed() System.Private.CoreLib.dll:System.Math -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|47_0(System.UInt64, System.UInt64, out System.UInt64&) -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|53_0(System.Double, System.Double) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|45_0(System.UInt64, System.UInt64, out System.UInt64&) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|51_0(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Int32) System.Private.CoreLib.dll:System.Math.Abs(System.Single) @@ -10095,10 +10377,18 @@ System.Private.CoreLib.dll:System.Math.ConvertToUInt32Checked(System.Double) System.Private.CoreLib.dll:System.Math.ConvertToUInt64Checked(System.Double) System.Private.CoreLib.dll:System.Math.CopySign(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Cos(System.Double) +System.Private.CoreLib.dll:System.Math.DivRem(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Math.DivRem(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Math.DivRem(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Math.DivRem(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Math.DivRem(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Math.DivRem(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.Math.DivRem(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.Math.DivRem(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.Math.DivRem(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Math.DivRem(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.Math.Floor(System.Double) +System.Private.CoreLib.dll:System.Math.Log2(System.Double) System.Private.CoreLib.dll:System.Math.Max(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Math.Max(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Max(System.Int16, System.Int16) @@ -10135,8 +10425,11 @@ System.Private.CoreLib.dll:System.Math.ThrowNegateTwosCompOverflow() System.Private.CoreLib.dll:System.Math.Truncate(System.Double) System.Private.CoreLib.dll:System.MathF System.Private.CoreLib.dll:System.MathF.Abs(System.Single) +System.Private.CoreLib.dll:System.MathF.Log2(System.Single) System.Private.CoreLib.dll:System.MathF.Max(System.Single, System.Single) System.Private.CoreLib.dll:System.MathF.Min(System.Single, System.Single) +System.Private.CoreLib.dll:System.MathF.ModF(System.Single, System.Single*) +System.Private.CoreLib.dll:System.MathF.Truncate(System.Single) System.Private.CoreLib.dll:System.MdUtf8String System.Private.CoreLib.dll:System.MdUtf8String System.RuntimeType/RuntimeTypeCache/Filter::m_name System.Private.CoreLib.dll:System.MdUtf8String..ctor(System.Byte*, System.Int32) @@ -10197,6 +10490,7 @@ System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAny`1(System.ReadOnlyS System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExcept`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExceptInRange`1(System.ReadOnlySpan`1, T, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyInRange`1(System.ReadOnlySpan`1, T, T) +System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.Max`1(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.Min`1(System.ReadOnlySpan`1) @@ -10295,29 +10589,6 @@ System.Private.CoreLib.dll:System.ModuleHandle.ResolveTypeHandle(System.Int32) System.Private.CoreLib.dll:System.ModuleHandle.ValidateModulePointer(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.MulticastDelegate System.Private.CoreLib.dll:System.MulticastDelegate System.Delegate/InvocationListEnumerator`1::_delegate -System.Private.CoreLib.dll:System.MulticastDelegate.CombineImpl(System.Delegate) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorClosed(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorClosedStatic(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleClosedStatic(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleOpened(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleVirtualDispatch(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorOpened(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorRTClosed(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorVirtualDispatch(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.DeleteFromInvocationList(System.Object[], System.Int32, System.Int32, System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.EqualInvocationLists(System.Object[], System.Object[], System.Int32, System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.Equals(System.Object) -System.Private.CoreLib.dll:System.MulticastDelegate.get_HasSingleTarget() -System.Private.CoreLib.dll:System.MulticastDelegate.GetHashCode() -System.Private.CoreLib.dll:System.MulticastDelegate.GetMethodImpl() -System.Private.CoreLib.dll:System.MulticastDelegate.InvocationListEquals(System.MulticastDelegate) -System.Private.CoreLib.dll:System.MulticastDelegate.IsUnmanagedFunctionPtr() -System.Private.CoreLib.dll:System.MulticastDelegate.NewMulticastDelegate(System.Object[], System.Int32, System.Boolean) -System.Private.CoreLib.dll:System.MulticastDelegate.NewMulticastDelegate(System.Object[], System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.RemoveImpl(System.Delegate) -System.Private.CoreLib.dll:System.MulticastDelegate.ThrowNullThisInDelegateToInstance() -System.Private.CoreLib.dll:System.MulticastDelegate.TryGetAt(System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.TrySetSlot(System.Object[], System.Int32, System.Object) System.Private.CoreLib.dll:System.MulticastNotSupportedException System.Private.CoreLib.dll:System.MulticastNotSupportedException..ctor() System.Private.CoreLib.dll:System.MulticastNotSupportedException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -10373,46 +10644,73 @@ System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String, Sy System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String) System.Private.CoreLib.dll:System.Number System.Private.CoreLib.dll:System.Number..cctor() -System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|192_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) -System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|60_0(System.Int128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|52_0(System.Int32, System.Int32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|56_0(System.Int64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|62_0(System.UInt128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|54_0(System.UInt32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|58_0(System.UInt64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__Slow|45_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) -System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|198_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|61_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|53_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|57_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|63_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|55_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|59_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|81_0(System.UInt32) +System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|560_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) +System.Private.CoreLib.dll:System.Number.g__InternalInfinityCompare|3_1`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.g__InternalUnsignedCompare|3_0`2(System.Number/DecodedDecimalIeee754`1, System.Number/DecodedDecimalIeee754`1) +System.Private.CoreLib.dll:System.Number.g__MaterializePreferredZeros|85_0`3(System.Number/NumberBuffer&, System.Span`1) +System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|416_0(System.Int128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|408_0(System.Int32, System.Int32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|412_0(System.Int64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|418_0(System.UInt128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|410_0(System.UInt32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|414_0(System.UInt64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__Slow|401_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.g__ClampExponentOverflow|9_0`2(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|566_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|417_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|409_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|413_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|419_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|411_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|415_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|437_0(System.UInt32) System.Private.CoreLib.dll:System.Number.AccumulateDecimalDigitsIntoBigInteger(System.Number/NumberBuffer&, System.UInt32, System.UInt32, out System.Number/BigInteger&) +System.Private.CoreLib.dll:System.Number.AddDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.AlignmentScaleFactor`2(System.Int32) System.Private.CoreLib.dll:System.Number.AppendUnknownChar`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) System.Private.CoreLib.dll:System.Number.AssembleFloatingPointBits`1(System.UInt64, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.CalculatePower(System.Int32) +System.Private.CoreLib.dll:System.Number.ClassifyIntegerParityDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.CompareDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.ComputeFloat`1(System.Int64, System.UInt64) System.Private.CoreLib.dll:System.Number.ComputeProductApproximation(System.Int32, System.Int64, System.UInt64) System.Private.CoreLib.dll:System.Number.ConsumeTrailingNulls`1(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.ConvertBigIntegerToFloatingPointBits`1(System.Number/BigInteger&, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754`4(TSourceValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToDecimal`2(TValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToFloat`3(TValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToInteger`3(TValue, System.Boolean) +System.Private.CoreLib.dll:System.Number.ConvertDecimalToDecimalIeee754`2(System.Decimal) +System.Private.CoreLib.dll:System.Number.ConvertFloatToDecimalIeee754`3(TFloat) +System.Private.CoreLib.dll:System.Number.ConvertIntegerToDecimalIeee754`3(TInteger) System.Private.CoreLib.dll:System.Number.CurrencyGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.DecimalIeee754FiniteNumberBinaryEncoding`2(System.Boolean, TValue, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754FromMagnitude`2(System.Boolean, System.UInt128, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754Rounding`2(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754ToIntegerMagnitude`2(TValue, out System.Boolean&, out System.UInt128&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.DecimalIeee754ToNumber`2(TValue, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.DecimalToNumber(System.Decimal&, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.DigitsToUInt32(System.Byte*, System.Int32) System.Private.CoreLib.dll:System.Number.DigitsToUInt64(System.Byte*, System.Int32) -System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.DivideDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&, out System.Boolean&) System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.DropDigits`2(TValue&, TValue&, System.Int32, System.Boolean&, out System.Int32&) +System.Private.CoreLib.dll:System.Number.EqualsDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.ExtractFractionAndBiasedExponent`1(TNumber, out System.Int32&) System.Private.CoreLib.dll:System.Number.FindSection(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.FormatCurrency`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatDecimal(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.FormatDecimalIeee754`2(TValue, System.String, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.FormatDecimalIeee754`3(System.Collections.Generic.ValueListBuilder`1&, TValue, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatExponent`1(System.Collections.Generic.ValueListBuilder`1&, System.Globalization.NumberFormatInfo, System.Int32, System.Char, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.FormatFixed`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Int32[], System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.FormatFloat`1(TNumber, System.String, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatFloat`2(System.Collections.Generic.ValueListBuilder`1&, TNumber, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatFloatingPointAsHex`2(System.Collections.Generic.ValueListBuilder`1&, TNumber, System.Char, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatGeneral`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Globalization.NumberFormatInfo, System.Char, System.Boolean) +System.Private.CoreLib.dll:System.Number.FormatGeneralAndRoundTripDecimalIeee754`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Char, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatInt128(System.Int128, System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Number.FormatInt32(System.Int32, System.Int32, System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Number.FormatInt64(System.Int64, System.String, System.IFormatProvider) @@ -10426,9 +10724,12 @@ System.Private.CoreLib.dll:System.Number.get_Pow10DoubleTable() System.Private.CoreLib.dll:System.Number.get_Pow5128Table() System.Private.CoreLib.dll:System.Number.get_TwoDigitsBytes() System.Private.CoreLib.dll:System.Number.get_TwoDigitsCharsAsBytes() +System.Private.CoreLib.dll:System.Number.GetDecimalIeee754HashCode`2(TValue) System.Private.CoreLib.dll:System.Number.GetFloatingPointMaxDigitsAndPrecision(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) System.Private.CoreLib.dll:System.Number.GetHexBase(System.Char) System.Private.CoreLib.dll:System.Number.GetTwoDigitsBytesRef(System.Boolean) +System.Private.CoreLib.dll:System.Number.GreaterThanDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.GreaterThanOrEqualDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.HasNegativeSection(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.Int128DivMod1E19(System.UInt128&) System.Private.CoreLib.dll:System.Number.Int128ToDecStr(System.Int128) @@ -10444,15 +10745,22 @@ System.Private.CoreLib.dll:System.Number.Int64ToHexChars`1(TChar*, System.UInt64 System.Private.CoreLib.dll:System.Number.Int64ToHexStr(System.Int64, System.Char, System.Int32) System.Private.CoreLib.dll:System.Number.Int64ToNumber(System.Int64, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.IsDigit(System.UInt32) +System.Private.CoreLib.dll:System.Number.IsOddIntegerDecimalIeee754`2(TValue) System.Private.CoreLib.dll:System.Number.IsSpaceReplacingChar(System.UInt32) System.Private.CoreLib.dll:System.Number.IsWhite(System.UInt32) +System.Private.CoreLib.dll:System.Number.IsZeroDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.LessThanDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.LessThanOrEqualDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.MatchChars`1(TChar*, TChar*, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.MatchNegativeSignChars`1(TChar*, TChar*, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.MultiplyDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.NegativeInt128ToDecStr(System.Int128, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NegativeInt32ToDecStr(System.Int32, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NegativeInt64ToDecStr(System.Int64, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NormalizeSpaceReplacingChar(System.UInt32) System.Private.CoreLib.dll:System.Number.NumberGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.NumberToDecimalIeee754Bits`2(System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.NumberToDecimalIeee754BitsFromWide`2(System.Boolean, TValue, TValue, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.NumberToFloat`1(System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.NumberToFloatingPointBits`1(System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.NumberToFloatingPointBitsSlow`1(System.Number/NumberBuffer&, System.UInt32, System.UInt32, System.UInt32) @@ -10464,19 +10772,27 @@ System.Private.CoreLib.dll:System.Number.ParseEightDigitsUnrolled(System.Byte*) System.Private.CoreLib.dll:System.Number.ParseFloat`2(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.ParseFormatSpecifier(System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.PercentGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.PropagateNaN`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.RightShiftWithRounding(System.UInt64, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.RoundNumber(System.Number/NumberBuffer&, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.RoundToZeroOrEpsilon`2(System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.RoundWideToSignificand`2(System.Boolean, TValue, TValue, System.Int32, System.Int32, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.RoundWideToZeroOrEpsilon`2(System.Boolean, TValue, TValue, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.ShouldRoundUp(System.Boolean, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Number.SinglePassPow10`1(out TValue&) System.Private.CoreLib.dll:System.Number.SpanEqualsOrdinalIgnoreCase`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.SpanStartsWith`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.StringComparison) System.Private.CoreLib.dll:System.Number.SpanStartsWith`1(System.ReadOnlySpan`1, TChar) System.Private.CoreLib.dll:System.Number.SpanTrimStart`1(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Number.SubtractDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.ThrowDecimalOverflowException() System.Private.CoreLib.dll:System.Number.ThrowFormatException`1(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.Number.ThrowOverflowException(System.String) System.Private.CoreLib.dll:System.Number.ThrowOverflowException`1() System.Private.CoreLib.dll:System.Number.ThrowOverflowOrFormatException`2(System.Number/ParsingStatus, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.TryCopyTo`1(System.String, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.TryFloatingPointBitsFromMantissa`1(System.UInt64, System.Int32, out System.UInt64&) System.Private.CoreLib.dll:System.Number.TryFormatDecimal`1(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.TryFormatDecimalIeee754`3(TValue, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatFloat`2(TNumber, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatInt128`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatInt32`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) @@ -10533,6 +10849,12 @@ System.Private.CoreLib.dll:System.Number.UInt64ToDecChars`1(TChar*, System.UInt6 System.Private.CoreLib.dll:System.Number.UInt64ToDecStr(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Number.UInt64ToDecStr(System.UInt64) System.Private.CoreLib.dll:System.Number.UInt64ToNumber(System.UInt64, System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.UnpackDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.WideDigitCount`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.WideDivideByPow10`1(TValue&, TValue&, TValue) +System.Private.CoreLib.dll:System.Number.WideMultiply`1(TValue, TValue, out TValue&, out TValue&) +System.Private.CoreLib.dll:System.Number.WidePow10`1(System.Int32) +System.Private.CoreLib.dll:System.Number.WriteDecimalDigits(System.UInt128, System.Span`1) System.Private.CoreLib.dll:System.Number.WriteDigits`1(System.UInt32, TChar*, System.Int32) System.Private.CoreLib.dll:System.Number.WriteFourDigits`1(System.UInt32, TChar*) System.Private.CoreLib.dll:System.Number.WriteTwoDigits`1(System.UInt32, TChar*) @@ -10569,6 +10891,7 @@ System.Private.CoreLib.dll:System.Number/BigInteger.SetValue(out System.Number/B System.Private.CoreLib.dll:System.Number/BigInteger.SetZero(out System.Number/BigInteger&) System.Private.CoreLib.dll:System.Number/BigInteger.ShiftLeft(System.Int32) System.Private.CoreLib.dll:System.Number/BigInteger.SubtractDivisor(System.Number/BigInteger&, System.Int32, System.Number/BigInteger&, System.UInt64) +System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt128() System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt32() System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt64() System.Private.CoreLib.dll:System.Number/BigInteger/BlocksBuffer @@ -10579,6 +10902,16 @@ System.Private.CoreLib.dll:System.Number/BinaryParser`1.get_MaxDigitCount() System.Private.CoreLib.dll:System.Number/BinaryParser`1.get_MaxDigitValue() System.Private.CoreLib.dll:System.Number/BinaryParser`1.IsValidChar(System.UInt32) System.Private.CoreLib.dll:System.Number/BinaryParser`1.ShiftLeftForNextDigit(TInteger) +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::Finite +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::NaN +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::NegativeInfinity +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::PositiveInfinity +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1 +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1..ctor(System.Boolean, System.Int32, TSignificand) +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_Signed() +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_Significand() +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_UnbiasedExponent() System.Private.CoreLib.dll:System.Number/DiyFp System.Private.CoreLib.dll:System.Number/DiyFp..ctor(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Number/DiyFp.Create`1(TNumber) @@ -10587,6 +10920,31 @@ System.Private.CoreLib.dll:System.Number/DiyFp.GetBoundaries(System.Int32, out S System.Private.CoreLib.dll:System.Number/DiyFp.Multiply(System.Number/DiyFp&) System.Private.CoreLib.dll:System.Number/DiyFp.Normalize() System.Private.CoreLib.dll:System.Number/DiyFp.Subtract(System.Number/DiyFp&) +System.Private.CoreLib.dll:System.Number/DiyFp128 +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxHalf +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxOne +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxThreeQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128..ctor(System.UInt32, System.Int32, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::InvTrigConstants +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::PiFractionConstants +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Exp10Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::ExpCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperCoshCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperSinhCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Log2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Pow2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::PowLog2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigCosCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigSinCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanNumeratorCoefficients System.Private.CoreLib.dll:System.Number/Grisu3 System.Private.CoreLib.dll:System.Number/Grisu3.BiggestPowerTen(System.UInt32, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Number/Grisu3.get_CachedPowersBinaryExponent() @@ -10621,6 +10979,7 @@ System.Private.CoreLib.dll:System.Number/NumberBuffer.ToString() System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBuffer::Kind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Decimal +System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::DecimalIeee754 System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::FloatingPoint System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Integer System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Unknown @@ -10628,9 +10987,13 @@ System.Private.CoreLib.dll:System.Number/ParsingStatus System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Failed System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::OK System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Overflow +System.Private.CoreLib.dll:System.Number/SqrtCoefficients +System.Private.CoreLib.dll:System.Number/SqrtCoefficients..ctor(System.Single, System.Single, System.Double) +System.Private.CoreLib.dll:System.Number/SqrtCoefficients[] System.Number::s_sqrtTable System.Private.CoreLib.dll:System.Numerics.BitOperations System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|22_0(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|23_0(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.BitOperations.FlipBit(System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.get_Log2DeBruijn() System.Private.CoreLib.dll:System.Numerics.BitOperations.get_TrailingZeroCountDeBruijn() System.Private.CoreLib.dll:System.Numerics.BitOperations.IsPow2(System.Int32) @@ -10640,6 +11003,7 @@ System.Private.CoreLib.dll:System.Numerics.BitOperations.LeadingZeroCount(System System.Private.CoreLib.dll:System.Numerics.BitOperations.LeadingZeroCount(System.UIntPtr) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UIntPtr) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2SoftwareFallback(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.PopCount(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.PopCount(System.UInt64) @@ -10649,19 +11013,459 @@ System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UInt3 System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UIntPtr, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateRight(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Numerics.BitOperations.RoundUpToPowerOf2(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.TrailingZeroCount(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.TrailingZeroCount(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::One() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128..cctor() +System.Private.CoreLib.dll:System.Numerics.Decimal128..ctor(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CompareTo(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.Equals(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeInfinityValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeZeroValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_OneValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_PositiveInfinityValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_QuietNaNValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_ZeroValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsFinite(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNaN(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNegative(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNegativeInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsOddInteger(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsPositiveInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Addition(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Division(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Equality(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Double) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Half) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Int128) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Single) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.UInt128) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_GreaterThan(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_GreaterThanOrEqual(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Byte) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Char) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Decimal) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int16) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.IntPtr) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.SByte) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt16) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UIntPtr) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Inequality(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_LessThan(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_LessThanOrEqual(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Multiply(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Subtraction(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_UnaryNegation(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt128, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal128.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryConvertFrom`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryConvertTo`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::One() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32..ctor(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CompareTo(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.Equals(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_UInt32Powers10() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsFinite(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNaN(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNegative(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNegativeInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsOddInteger(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsPositiveInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Addition(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Division(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Equality(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Decimal) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Double) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Half) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int32) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.IntPtr) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Single) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt32) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UIntPtr) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_GreaterThan(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_GreaterThanOrEqual(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Byte) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Char) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Int16) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Numerics.Decimal32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Numerics.Decimal32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.SByte) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.UInt16) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Inequality(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_LessThan(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_LessThanOrEqual(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Multiply(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Subtraction(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_UnaryNegation(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal32.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryConvertFrom`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryConvertTo`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::One() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64..ctor(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CompareTo(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.Equals(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_UInt64Powers10() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsFinite(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNaN(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNegative(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNegativeInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsOddInteger(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsPositiveInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Addition(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Division(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Equality(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Decimal) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Double) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Half) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Int128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Int64) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.IntPtr) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Single) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UInt128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UInt64) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UIntPtr) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_GreaterThan(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_GreaterThanOrEqual(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Byte) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Char) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Int16) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Int32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Numerics.Decimal64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.SByte) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.UInt16) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.UInt32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Inequality(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_LessThan(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_LessThanOrEqual(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Multiply(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Subtraction(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_UnaryNegation(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt64, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal64.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryConvertFrom`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryConvertTo`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Numerics.IAdditionOperators`3 System.Private.CoreLib.dll:System.Numerics.IAdditionOperators`3.op_Addition(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1 +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.DivRem(TSelf, TSelf) +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.GetByteCount() +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.LeadingZeroCount(TSelf) +System.Private.CoreLib.dll:System.Numerics.IBinaryNumber`1 +System.Private.CoreLib.dll:System.Numerics.IBinaryNumber`1.Log2(TSelf) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3 System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_BitwiseAnd(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_BitwiseOr(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_ExclusiveOr(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_OnesComplement(TSelf) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3 System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_GreaterThan(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_GreaterThanOrEqual(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_LessThan(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_LessThanOrEqual(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IDivisionOperators`3 +System.Private.CoreLib.dll:System.Numerics.IDivisionOperators`3.op_Division(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3 System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3.op_Equality(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3.op_Inequality(TSelf, TOther) @@ -10673,16 +11477,23 @@ System.Private.CoreLib.dll:System.Numerics.IFloatingPointIeee754`1.get_NegativeZ System.Private.CoreLib.dll:System.Numerics.IFloatingPointIeee754`1.get_PositiveInfinity() System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1 System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.IMultiplyOperators`3 +System.Private.CoreLib.dll:System.Numerics.IMultiplyOperators`3.op_Multiply(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.INumber`1 System.Private.CoreLib.dll:System.Numerics.INumberBase`1 +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.get_One() System.Private.CoreLib.dll:System.Numerics.INumberBase`1.get_Zero() System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsFinite(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsInfinity(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsNaN(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsNegative(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsOddInteger(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsZero(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromChecked`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromSaturating`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromTruncating`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToChecked`1(TSelf, out TOther&) @@ -10690,6 +11501,7 @@ System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToSaturating` System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToTruncating`1(TSelf, out TOther&) System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3 System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3.op_LeftShift(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3.op_RightShift(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.ISubtractionOperators`3 System.Private.CoreLib.dll:System.Numerics.ISubtractionOperators`3.op_Subtraction(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IUnaryNegationOperators`2 @@ -10735,12 +11547,15 @@ System.Private.CoreLib.dll:System.Numerics.Vector`1.GetHashCode() System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector`1, System.Numerics.Vector`1) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Division(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector`1) => System.Numerics.Vector`1 System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_LeftShift(System.Numerics.Vector`1, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector`1) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_RightShift(System.Numerics.Vector`1, System.Int32) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Numerics.Vector`1, System.Numerics.Vector`1, System.Numerics.Vector`1) @@ -10791,7 +11606,6 @@ System.Private.CoreLib.dll:System.Object System.Exception/DispatchState::StackTr System.Private.CoreLib.dll:System.Object System.IAsyncResult::AsyncState() System.Private.CoreLib.dll:System.Object System.IO.Enumeration.FileSystemEnumerator`1::_lock System.Private.CoreLib.dll:System.Object System.Memory`1::_object -System.Private.CoreLib.dll:System.Object System.MulticastDelegate::_invocationList System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value @@ -11137,8 +11951,11 @@ System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Decimal/D System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/BigInteger::Pow10BigNumTable() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/BigInteger::Pow10UInt32Table() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/Grisu3::SmallPowersOfTen() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Numerics.Decimal32::UInt32Powers10() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Decimal/DecCalc::UInt64Powers10() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number::Pow5128Table() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/Grisu3::CachedPowersSignificand() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Numerics.Decimal64::UInt64Powers10() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlyMemory`1::Span() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlySpan`1::Empty() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlySpan`1/Enumerator::_span @@ -12611,7 +13428,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.InternalLoad(System System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.InternalLoad(System.Reflection.NativeAssemblyNameParts*, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.StackCrawlMarkHandle, System.Boolean, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo..ctor(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, System.Reflection.MethodAttributes, System.Reflection.BindingFlags) -System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.g__LazyCreateSignature|21_0() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.g__LazyCreateSignature|19_0() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.CheckCanCreateInstance(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ComputeAndUpdateInvocationFlags() @@ -12644,7 +13461,6 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(Syste System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.InvokeClassConstructor() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.IsDefined(System.Type, System.Boolean) -System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ThrowNoInvokeException() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeCustomAttributeData @@ -12730,8 +13546,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimePropertyInfo::m_getterMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimePropertyInfo::m_setterMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo..ctor(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, System.Reflection.MethodAttributes, System.Reflection.BindingFlags, System.Object) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__IsDisallowedByRefType|98_0(System.Type) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|27_0() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__IsDisallowedByRefType|96_0(System.Type) +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) @@ -12775,7 +13591,6 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDe System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.IsDefined(System.Type, System.Boolean) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeException() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule @@ -13182,11 +13997,16 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await(System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await`1(System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await`1(System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaitAwaiterInContinuation`1(System.Int32) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaiterOnCompletedFromContinuation`1(System.Runtime.CompilerServices.Continuation, System.Int32, System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaitTaskWithRareOptions(System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContexts(out System.Threading.Thread&, out System.Threading.ExecutionContext&, out System.Threading.SynchronizationContext&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContinuationContext(System.Object&, System.Runtime.CompilerServices.ContinuationFlags&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContinuationContextFlags(System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureExecutionContext() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionContinueOnThreadPool(System.Boolean, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionNoContinuationContext(System.Boolean, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionWithContinuationContext(System.Boolean, System.Object&, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncTask(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncTask`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncValueTask(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) @@ -13197,12 +14017,14 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSu System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContexts(System.Boolean, System.Threading.Thread, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContextsOnSuspension(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreExecutionContext(System.Threading.Thread, System.Threading.ExecutionContext) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreInlinedFrameContexts(System.Threading.ExecutionContext, System.Object, System.Runtime.CompilerServices.ContinuationFlags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ResumeInterpreterContinuation(System.Runtime.CompilerServices.Continuation, System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ReturnTaskContinuation(System.Runtime.CompilerServices.RuntimeAsyncTaskContinuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend(System.Threading.Tasks.Sources.IValueTaskSource, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend(System.Threading.Tasks.Task, System.Threading.Tasks.ConfigureAwaitOptions) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend`1(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend`1(System.Threading.Tasks.Task`1, System.Threading.Tasks.ConfigureAwaitOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.SwitchToContinuationContext(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&, System.Object, System.Runtime.CompilerServices.ContinuationFlags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TailAwait() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TaskFromException(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TaskFromException`1(System.Exception) @@ -13215,6 +14037,8 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Transpar System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TransparentSuspend`1(System.Threading.Tasks.Task`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TransparentSuspend`1(System.Threading.Tasks.ValueTask`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaitAwaiter`1(TAwaiter) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaitAwaiterInContinuation`1(System.Int32) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaiterOnCompletedFromContinuation`1(System.Runtime.CompilerServices.Continuation, System.Int32, System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTaskFromException(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTaskFromException`1(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/AsyncContexts @@ -13285,9 +14109,10 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::Synchronize System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::Tpl System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::UnwindAsyncException +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/IsEnabled +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/IsEnabled.Tpl(System.Runtime.CompilerServices.AsyncInstrumentation/Flags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.get_TrackAsyncMethodCompletion() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine, System.Threading.Tasks.Task) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start`1(TStateMachine&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncProfiler @@ -13310,6 +14135,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilde System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.get_Context() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.get_MoveNextAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext(System.Threading.Thread, System.Runtime.CompilerServices.AsyncInstrumentation/Flags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext(System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder..cctor() @@ -13512,6 +14338,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags Sys System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ExecutionContextIndexNumBits System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ResultIndexFirstBit System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ResultIndexNumBits +System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ValueTaskAdaptedToTask System.Private.CoreLib.dll:System.Runtime.CompilerServices.CustomConstantAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.CustomConstantAttribute.get_Value() System.Private.CoreLib.dll:System.Runtime.CompilerServices.DateTimeConstantAttribute @@ -13583,6 +14410,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.GenericsStaticsInfo S System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox +System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox System.Runtime.CompilerServices.AsyncProfiler/Info::LastContinuation System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.get_MoveNextAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IConfiguredTaskAwaiter @@ -13596,9 +14424,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitClass System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitClassSlow(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitInstantiatedClass(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodDesc*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 System.GCMemoryInfoData::_pauseDurations System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.DateTimeRawInfo::num System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray4`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 System.GCMemoryInfoData::_generationInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Buffers.BitVector256::_values System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArrayAttribute @@ -13622,6 +14453,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.IteratorStateMachineA System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.get_MethodTable() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodDescChunk() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable @@ -14278,6 +15110,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.FieldOffsetAttribute.. System.Private.CoreLib.dll:System.Runtime.InteropServices.FieldOffsetAttribute.get_Value() System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Buffers.MemoryHandle::_handle +System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Delegate/BindToMethodDetails::loaderAllocatorGCHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/NativeObjectWrapper::_proxyHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/NativeObjectWrapper::_proxyHandleTrackingResurrection System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/ReferenceTrackerNativeObjectWrapper::_nativeObjectWrapperWeakHandle @@ -14543,6 +15376,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NativeMemory.Clear(Sys System.Private.CoreLib.dll:System.Runtime.InteropServices.NativeMemory.Free(System.Void*) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::MaxValue() +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::MinValue() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NaN() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NegativeInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NegativeZero() @@ -14552,19 +15386,24 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime. System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat..ctor(System.Double) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CompareTo(System.Object) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CompareTo(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Equals(System.Object) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Equals(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_MaxValue() +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_MinValue() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NaN() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NegativeInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NegativeZero() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_PositiveInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.GetHashCode() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsFinite(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsInfinity(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsNaN(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsNegative(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsOddInteger(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Log2(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Addition(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) @@ -14579,6 +15418,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExpli System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Division(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Equality(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Explicit(System.Decimal) => System.Runtime.InteropServices.NFloat System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Explicit(System.Double) => System.Runtime.InteropServices.NFloat @@ -14619,14 +15459,17 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Implicit(Sys System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Inequality(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_LessThan(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_LessThanOrEqual(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Multiply(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Subtraction(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_UnaryNegation(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.IsZero(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertToChecked`1(System.Runtime.InteropServices.NFloat, out TOther&) @@ -14884,6 +15727,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.ISimdVector`2.StoreUnsafe(T System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Add(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.AddSaturate(T, T) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Divide(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Equals(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ExtractMostSignificantBit(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.get_AllBitsSet() @@ -14895,6 +15739,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.LessThan(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.LessThanOrEqual(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Max(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Min(T, T) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Multiply(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ObjectEquals(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ShiftLeft(T, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ShiftRightArithmetic(T, System.Int32) @@ -15011,10 +15856,12 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Addition(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Division(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Equality(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Inequality(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_LeftShift(System.Runtime.Intrinsics.Vector128`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Multiply(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_OnesComplement(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_RightShift(System.Runtime.Intrinsics.Vector128`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Subtraction(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) @@ -15091,11 +15938,14 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Addition(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Division(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Equality(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Inequality(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_LeftShift(System.Runtime.Intrinsics.Vector256`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Multiply(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_OnesComplement(System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_RightShift(System.Runtime.Intrinsics.Vector256`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Subtraction(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_UnaryNegation(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) @@ -15169,11 +16019,14 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Addition(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Division(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Equality(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Inequality(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_LeftShift(System.Runtime.Intrinsics.Vector512`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Multiply(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_OnesComplement(System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_RightShift(System.Runtime.Intrinsics.Vector512`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Subtraction(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_UnaryNegation(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) @@ -15262,10 +16115,12 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Addition(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Division(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Equality(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Inequality(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_LeftShift(System.Runtime.Intrinsics.Vector64`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Multiply(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_OnesComplement(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_RightShift(System.Runtime.Intrinsics.Vector64`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Subtraction(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) @@ -15568,11 +16423,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.IRuntimeMethodInfo::Value() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.RuntimeConstructorInfo::System.IRuntimeMethodInfo.Value() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.RuntimeMethodInfo::System.IRuntimeMethodInfo.Value() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodInfoStub::System.IRuntimeMethodInfo.Value() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Signature::_pMethod @@ -15583,7 +16434,6 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) -System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType @@ -16036,17 +16886,23 @@ System.Private.CoreLib.dll:System.SByte System.Runtime.InteropServices.Marshalli System.Private.CoreLib.dll:System.SByte System.SByte::m_value System.Private.CoreLib.dll:System.SByte System.SByte::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.SByte.CompareTo(System.Object) System.Private.CoreLib.dll:System.SByte.CompareTo(System.SByte) +System.Private.CoreLib.dll:System.SByte.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.SByte.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.SByte.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.SByte.DivRem(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Equals(System.Object) System.Private.CoreLib.dll:System.SByte.Equals(System.SByte) System.Private.CoreLib.dll:System.SByte.GetHashCode() System.Private.CoreLib.dll:System.SByte.GetTypeCode() System.Private.CoreLib.dll:System.SByte.IsNegative(System.SByte) +System.Private.CoreLib.dll:System.SByte.IsOddInteger(System.SByte) +System.Private.CoreLib.dll:System.SByte.LeadingZeroCount(System.SByte) +System.Private.CoreLib.dll:System.SByte.Log2(System.SByte) System.Private.CoreLib.dll:System.SByte.Max(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Min(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -16076,31 +16932,41 @@ System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.System.Numerics.IAdditionOperators.op_Addition(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_OnesComplement(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_GreaterThan(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_LessThan(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IDivisionOperators.op_Division(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IEqualityOperators.op_Equality(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IEqualityOperators.op_Inequality(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.SByte.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.SByte.System.Numerics.IMultiplyOperators.op_Multiply(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsFinite(System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsInfinity(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsNaN(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsZero(System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToChecked`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToSaturating`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToTruncating`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.IShiftOperators.op_LeftShift(System.SByte, System.Int32) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IShiftOperators.op_RightShift(System.SByte, System.Int32) System.Private.CoreLib.dll:System.SByte.System.Numerics.ISubtractionOperators.op_Subtraction(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.SByte) System.Private.CoreLib.dll:System.SByte.ToString() System.Private.CoreLib.dll:System.SByte.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.SByte.TryConvertFromChecked`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryConvertFromSaturating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryConvertFromTruncating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -16168,6 +17034,8 @@ System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single System.Private.CoreLib.dll:System.Single System.Collections.Hashtable::_loadFactor +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::A +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::B System.Private.CoreLib.dll:System.Single System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_r4 System.Private.CoreLib.dll:System.Single System.Single::m_value System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NaN() @@ -16175,12 +17043,14 @@ System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.PositiveInfinity() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Single System.Threading.PortableThreadPool/HillClimbing/LogEntry::lastHistoryMean System.Private.CoreLib.dll:System.Single.Abs(System.Single) System.Private.CoreLib.dll:System.Single.CompareTo(System.Object) System.Private.CoreLib.dll:System.Single.CompareTo(System.Single) +System.Private.CoreLib.dll:System.Single.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Single.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Single.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Single.Equals(System.Object) @@ -16188,14 +17058,19 @@ System.Private.CoreLib.dll:System.Single.Equals(System.Single) System.Private.CoreLib.dll:System.Single.GetHashCode() System.Private.CoreLib.dll:System.Single.GetTypeCode() System.Private.CoreLib.dll:System.Single.IsFinite(System.Single) +System.Private.CoreLib.dll:System.Single.IsInfinity(System.Single) +System.Private.CoreLib.dll:System.Single.IsInteger(System.Single) System.Private.CoreLib.dll:System.Single.IsNaN(System.Single) System.Private.CoreLib.dll:System.Single.IsNaNOrZero(System.Single) System.Private.CoreLib.dll:System.Single.IsNegative(System.Single) +System.Private.CoreLib.dll:System.Single.IsOddInteger(System.Single) System.Private.CoreLib.dll:System.Single.IsZero(System.Single) +System.Private.CoreLib.dll:System.Single.Log2(System.Single) System.Private.CoreLib.dll:System.Single.Max(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.Min(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_Equality(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_GreaterThan(System.Single, System.Single) +System.Private.CoreLib.dll:System.Single.op_GreaterThanOrEqual(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_Inequality(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_LessThan(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_LessThanOrEqual(System.Single, System.Single) @@ -16245,15 +17120,20 @@ System.Private.CoreLib.dll:System.Single.System.IConvertible.ToUInt64(System.IFo System.Private.CoreLib.dll:System.Single.System.Numerics.IAdditionOperators.op_Addition(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Single, System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.IDivisionOperators.op_Division(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NaN() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NegativeInfinity() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NegativeZero() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_PositiveInfinity() System.Private.CoreLib.dll:System.Single.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Single.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Single.System.Numerics.IMultiplyOperators.op_Multiply(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.IsZero(System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertToChecked`1(System.Single, out TOther&) @@ -16264,6 +17144,7 @@ System.Private.CoreLib.dll:System.Single.System.Numerics.IUnaryNegationOperators System.Private.CoreLib.dll:System.Single.ToString() System.Private.CoreLib.dll:System.Single.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Single.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Single.Truncate(System.Single) System.Private.CoreLib.dll:System.Single.TryConvertFrom`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.TryConvertTo`1(System.Single, out TOther&) System.Private.CoreLib.dll:System.Single.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -16344,6 +17225,9 @@ System.Private.CoreLib.dll:System.SpanHelpers.IndexOfNullByte(System.Byte*) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfNullCharacter(System.Char*) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfValueType`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf(System.Byte&, System.Int32, System.Byte&, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf(System.Char&, System.Int32, System.Char&, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf`1(T&, System.Int32, T&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOfValueType`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOfValueType`2(TValue&, TValue, System.Int32) @@ -17199,7 +18083,7 @@ System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.System.StubHe System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1/SizeHolder System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1/SizeHolder..cctor() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers -System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|18_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) +System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|17_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.AddToCleanupList(System.StubHelpers.CleanupWorkListElement&, System.Runtime.InteropServices.SafeHandle) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CalcVaListSize(System.IntPtr) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CheckStringLength(System.Int32) @@ -17215,7 +18099,6 @@ System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CreateCustomMarshaler( System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CreateLayoutClassMarshalStubs(System.Runtime.CompilerServices.QCallTypeHandle, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.DestroyCleanupList(System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.FreeArrayContents`2(System.Byte*, System.Int32) -System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetDelegateTarget(System.Delegate) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetHRExceptionObject(System.Int32) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetPendingExceptionObject() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetStubContext() @@ -18089,8 +18972,6 @@ System.Private.CoreLib.dll:System.Threading.Lock.ExitAll() System.Private.CoreLib.dll:System.Threading.Lock.ExitImpl() System.Private.CoreLib.dll:System.Threading.Lock.get_IsHeldByCurrentThread() System.Private.CoreLib.dll:System.Threading.Lock.get_IsSingleProcessor() -System.Private.CoreLib.dll:System.Threading.Lock.get_LockIdForEvents() -System.Private.CoreLib.dll:System.Threading.Lock.get_OwningThreadId() System.Private.CoreLib.dll:System.Threading.Lock.get_ShouldStopPreemptingWaiters() System.Private.CoreLib.dll:System.Threading.Lock.get_WaitEvent() System.Private.CoreLib.dll:System.Threading.Lock.GetOrCreateCondition() @@ -19234,6 +20115,7 @@ System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue System.Threading System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue System.Threading.ThreadPoolWorkQueueThreadLocals::workQueue System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue..cctor() System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue..ctor() +System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.AssignWorkItemQueue(System.Threading.ThreadPoolWorkQueueThreadLocals) System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.CreateThreadLocals() System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.Dequeue(System.Threading.ThreadPoolWorkQueueThreadLocals, System.Boolean&) System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.Dispatch() @@ -19630,8 +20512,6 @@ System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeResult::timeZoneOffset -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration0 -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration1 System.Private.CoreLib.dll:System.TimeSpan System.Globalization.TimeSpanParse/TimeSpanResult::parsedTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.Threading.Timeout::InfiniteTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MaxValue @@ -20195,6 +21075,25 @@ System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.Runtime.Ser System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.String) System.Private.CoreLib.dll:System.UInt128 +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::NegativeInfinityValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::NegativeZeroValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::OneValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::PositiveInfinityValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::QuietNaNValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.Zero() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::ZeroValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::MaxValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::MinValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() @@ -20207,6 +21106,7 @@ System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(S System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt128.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt128.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.UInt128.DivRem(System.UInt128, System.UInt128) @@ -20219,6 +21119,7 @@ System.Private.CoreLib.dll:System.UInt128.get_One() System.Private.CoreLib.dll:System.UInt128.get_Upper() System.Private.CoreLib.dll:System.UInt128.get_Zero() System.Private.CoreLib.dll:System.UInt128.GetHashCode() +System.Private.CoreLib.dll:System.UInt128.IsOddInteger(System.UInt128) System.Private.CoreLib.dll:System.UInt128.LeadingZeroCount(System.UInt128) System.Private.CoreLib.dll:System.UInt128.LeadingZeroCountAsInt32(System.UInt128) System.Private.CoreLib.dll:System.UInt128.Log2(System.UInt128) @@ -20239,8 +21140,14 @@ System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Division(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Equality(System.UInt128, System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_ExclusiveOr(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Decimal) => System.UInt128 System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Double) => System.UInt128 System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Int16) => System.UInt128 @@ -20278,6 +21185,7 @@ System.Private.CoreLib.dll:System.UInt128.op_Inequality(System.UInt128, System.U System.Private.CoreLib.dll:System.UInt128.op_LeftShift(System.UInt128, System.Int32) System.Private.CoreLib.dll:System.UInt128.op_LessThan(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_LessThanOrEqual(System.UInt128, System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_Modulus(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Multiply(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_OnesComplement(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_RightShift(System.UInt128, System.Int32) @@ -20292,10 +21200,13 @@ System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInf System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.IsGreaterThanAsUnsigned(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy10(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy16(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsFinite(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsInfinity(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsNaN(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsNegative(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsZero(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt128, out TOther&) @@ -20304,9 +21215,11 @@ System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt128[] System.Numerics.Decimal128::UInt128Powers10 System.Private.CoreLib.dll:System.UInt16 System.Private.CoreLib.dll:System.UInt16 System.Double::System.IBinaryFloatParseAndFormatInfo.DenormalMantissaBits() System.Private.CoreLib.dll:System.UInt16 System.Double::System.IBinaryFloatParseAndFormatInfo.ExponentBits() @@ -20345,16 +21258,22 @@ System.Private.CoreLib.dll:System.UInt16 System.Threading.LowLevelLifoSemaphore/ System.Private.CoreLib.dll:System.UInt16 System.UInt16::m_value System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt16.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt16.CompareTo(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt16.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt16.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt16.DivRem(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Equals(System.Object) System.Private.CoreLib.dll:System.UInt16.Equals(System.UInt16) System.Private.CoreLib.dll:System.UInt16.GetHashCode() System.Private.CoreLib.dll:System.UInt16.GetTypeCode() +System.Private.CoreLib.dll:System.UInt16.IsOddInteger(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.LeadingZeroCount(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.Log2(System.UInt16) System.Private.CoreLib.dll:System.UInt16.Max(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Min(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -20384,32 +21303,42 @@ System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IAdditionOperators.op_Addition(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_LessThan(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IDivisionOperators.op_Division(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IEqualityOperators.op_Equality(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IEqualityOperators.op_Inequality(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsFinite(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsInfinity(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsNaN(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsNegative(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsZero(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IShiftOperators.op_LeftShift(System.UInt16, System.Int32) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IShiftOperators.op_RightShift(System.UInt16, System.Int32) System.Private.CoreLib.dll:System.UInt16.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt16) System.Private.CoreLib.dll:System.UInt16.ToString() System.Private.CoreLib.dll:System.UInt16.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt16.TryConvertFromChecked`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryConvertFromSaturating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryConvertFromTruncating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20446,16 +21375,26 @@ System.Private.CoreLib.dll:System.UInt32 System.Decimal::High() System.Private.CoreLib.dll:System.UInt32 System.Decimal::Low() System.Private.CoreLib.dll:System.UInt32 System.Decimal::Mid() System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::High() +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::Low() +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::Mid() System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::uflags System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::uhi System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::ulo System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::umid +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U0 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U1 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U2 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U0 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U1 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U2 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U3 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U0 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U1 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U2 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U3 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U4 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U5 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/PowerOvfl::Hi System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleGroupingData::value__ System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleNumberData::value__ System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleStringData::value__ @@ -20471,8 +21410,23 @@ System.Private.CoreLib.dll:System.UInt32 System.HashCode::s_seed System.Private.CoreLib.dll:System.UInt32 System.HexConverter/Casing::value__ System.Private.CoreLib.dll:System.UInt32 System.Number/BigInteger/BlocksBuffer::e0 System.Private.CoreLib.dll:System.UInt32 System.Number/BinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Number/DiyFp128::_sign System.Private.CoreLib.dll:System.UInt32 System.Number/HexParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Number/IHexOrBinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::_value +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.Zero() System.Private.CoreLib.dll:System.UInt32 System.Reflection.InvocationFlags::value__ System.Private.CoreLib.dll:System.UInt32 System.Runtime.CompilerServices.AsyncInstrumentation/Flags::value__ System.Private.CoreLib.dll:System.UInt32 System.Runtime.CompilerServices.AsyncProfiler/Info::ContinuationIndex @@ -20519,6 +21473,7 @@ System.Private.CoreLib.dll:System.UInt32 System.TimeZoneInfo/TZifHead::TypeCount System.Private.CoreLib.dll:System.UInt32 System.UInt32::m_value System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt32.CompareTo(System.Object) @@ -20526,10 +21481,12 @@ System.Private.CoreLib.dll:System.UInt32.CompareTo(System.UInt32) System.Private.CoreLib.dll:System.UInt32.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt32.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt32.DivRem(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.Equals(System.Object) System.Private.CoreLib.dll:System.UInt32.Equals(System.UInt32) System.Private.CoreLib.dll:System.UInt32.GetHashCode() System.Private.CoreLib.dll:System.UInt32.GetTypeCode() +System.Private.CoreLib.dll:System.UInt32.IsOddInteger(System.UInt32) System.Private.CoreLib.dll:System.UInt32.LeadingZeroCount(System.UInt32) System.Private.CoreLib.dll:System.UInt32.Log2(System.UInt32) System.Private.CoreLib.dll:System.UInt32.Max(System.UInt32, System.UInt32) @@ -20561,27 +21518,36 @@ System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IAdditionOperators.op_Addition(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_LessThan(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IDivisionOperators.op_Division(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IEqualityOperators.op_Equality(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IEqualityOperators.op_Inequality(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsFinite(System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsInfinity(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsNaN(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsNegative(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsZero(System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IShiftOperators.op_LeftShift(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IShiftOperators.op_RightShift(System.UInt32, System.Int32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt32) System.Private.CoreLib.dll:System.UInt32.ToString() @@ -20613,11 +21579,19 @@ System.Private.CoreLib.dll:System.UInt64 System.Decimal::_lo64 System.Private.CoreLib.dll:System.UInt64 System.Decimal::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc::ulomid +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::High64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::Low64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::uhigh64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::ulo64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf16::High64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf16::Low64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::High64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::Mid64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::uhigh64LE System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::ulo64LE System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::umid64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/PowerOvfl::MidLo System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.DenormalMantissaMask() System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.InfinityBits() System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.MaxMantissaFastPath() @@ -20646,12 +21620,33 @@ System.Private.CoreLib.dll:System.UInt64 System.Int128::_upper System.Private.CoreLib.dll:System.UInt64 System.Marvin::k__BackingField System.Private.CoreLib.dll:System.UInt64 System.Marvin::DefaultSeed() System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp::f +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_hi +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_lo +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::High +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::Low +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal128::_lower +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal128::_upper +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::_value +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.Zero() System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_00 System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_01 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s0 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s1 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s2 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s3 +System.Private.CoreLib.dll:System.UInt64 System.Runtime.CompilerServices.AsyncProfiler/Info::DispatcherId System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.ComWrappers/ManagedObjectWrapper::RefCount System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_ui8 System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.SafeBuffer::ByteLength() @@ -20671,10 +21666,12 @@ System.Private.CoreLib.dll:System.UInt64 System.UInt128::Upper() System.Private.CoreLib.dll:System.UInt64 System.UInt64::m_value System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) @@ -20682,6 +21679,7 @@ System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() System.Private.CoreLib.dll:System.UInt64.GetTypeCode() +System.Private.CoreLib.dll:System.UInt64.IsOddInteger(System.UInt64) System.Private.CoreLib.dll:System.UInt64.LeadingZeroCount(System.UInt64) System.Private.CoreLib.dll:System.UInt64.Log2(System.UInt64) System.Private.CoreLib.dll:System.UInt64.Max(System.UInt64, System.UInt64) @@ -20713,32 +21711,42 @@ System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IAdditionOperators.op_Addition(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_LessThan(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IDivisionOperators.op_Division(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IEqualityOperators.op_Equality(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IEqualityOperators.op_Inequality(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsFinite(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsInfinity(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsNaN(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsNegative(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsZero(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IShiftOperators.op_LeftShift(System.UInt64, System.Int32) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IShiftOperators.op_RightShift(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.UInt64.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt64) System.Private.CoreLib.dll:System.UInt64.ToString() System.Private.CoreLib.dll:System.UInt64.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt64.TryConvertFromChecked`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryConvertFromSaturating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryConvertFromTruncating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20783,46 +21791,62 @@ System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::_value System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::MaxValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::MinValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::Zero System.Private.CoreLib.dll:System.UIntPtr.CompareTo(System.Object) System.Private.CoreLib.dll:System.UIntPtr.CompareTo(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UIntPtr.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UIntPtr.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UIntPtr.DivRem(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Equals(System.Object) System.Private.CoreLib.dll:System.UIntPtr.Equals(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.get_MaxValue() System.Private.CoreLib.dll:System.UIntPtr.get_MinValue() System.Private.CoreLib.dll:System.UIntPtr.GetHashCode() +System.Private.CoreLib.dll:System.UIntPtr.IsOddInteger(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.LeadingZeroCount(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.Log2(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Max(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Min(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.op_Equality(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.op_Inequality(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IAdditionOperators.op_Addition(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_GreaterThan(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_LessThan(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IDivisionOperators.op_Division(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMultiplyOperators.op_Multiply(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsFinite(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsInfinity(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsNaN(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsNegative(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsZero(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToChecked`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IShiftOperators.op_LeftShift(System.UIntPtr, System.Int32) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IShiftOperators.op_RightShift(System.UIntPtr, System.Int32) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.ISubtractionOperators.op_Subtraction(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.ToString() System.Private.CoreLib.dll:System.UIntPtr.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromChecked`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromSaturating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromTruncating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20960,6 +21984,7 @@ System.Private.CoreLib.dll:T System.Reflection.MethodBase/ArgumentData`1::_arg0 System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray2`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray3`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray4`1::t +System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray5`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray8`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.StrongBox`1::Value System.Private.CoreLib.dll:T System.Runtime.InteropServices.GCHandle`1::Target() @@ -21043,9 +22068,12 @@ System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::Negati System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::NegativeZero() System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::PositiveInfinity() System.Private.CoreLib.dll:TSelf System.Numerics.IMinMaxValue`1::MaxValue() +System.Private.CoreLib.dll:TSelf System.Numerics.IMinMaxValue`1::MinValue() System.Private.CoreLib.dll:TSelf System.Numerics.INumberBase`1::One() System.Private.CoreLib.dll:TSelf System.Numerics.INumberBase`1::Zero() System.Private.CoreLib.dll:TSelf System.Runtime.Intrinsics.ISimdVector`2::Zero() +System.Private.CoreLib.dll:TSignificand System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:TSignificand System.Number/DecodedDecimalIeee754`1::Significand() System.Private.CoreLib.dll:TState System.Threading.QueueUserWorkItemCallback`1::_state System.Private.CoreLib.dll:TState System.Threading.QueueUserWorkItemCallbackDefaultContext`1::_state System.Private.CoreLib.dll:TStateMachine System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1::StateMachine @@ -21060,6 +22088,19 @@ System.Private.CoreLib.dll:TValue System.Collections.Generic.Dictionary`2::Item( System.Private.CoreLib.dll:TValue System.Collections.Generic.Dictionary`2/Entry::value System.Private.CoreLib.dll:TValue System.Collections.Generic.KeyValuePair`2::value System.Private.CoreLib.dll:TValue System.Collections.Generic.KeyValuePair`2::Value() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G0G1Mask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::GwPlus4SignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::MaxSignificand() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NaN() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NaNMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NegativeInfinity() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::PositiveInfinity() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::SignMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::Zero() System.Private.CoreLib.dll:TValue System.Runtime.CompilerServices.GenericCache`2/Entry::_value System.Private.CoreLib.dll:V System.Reflection.CerHashtable`2::Item(K) System.Private.CoreLib.dll:V[] System.Reflection.CerHashtable`2/Table::m_values diff --git a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-size.txt b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-size.txt index 7aff30814810..1468d093bb6a 100644 --- a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-Interpreter-size.txt @@ -1,43 +1,43 @@ -AppBundleSize: 8,126,405 bytes (7,935.9 KB = 7.7 MB) +AppBundleSize: 8,570,282 bytes (8,369.4 KB = 8.2 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Frameworks/libcoreclr.framework/Info.plist: - 822 bytes (0.8 KB = 0.0 MB) + 801 bytes (0.8 KB = 0.0 MB) Frameworks/libcoreclr.framework/libcoreclr: - 4,218,112 bytes (4,119.2 KB = 4.0 MB) + 4,325,328 bytes (4,224.0 KB = 4.1 MB) Frameworks/libSystem.Globalization.Native.framework/Info.plist: - 864 bytes (0.8 KB = 0.0 MB) + 843 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Globalization.Native.framework/libSystem.Globalization.Native: - 90,576 bytes (88.5 KB = 0.1 MB) + 124,608 bytes (121.7 KB = 0.1 MB) Frameworks/libSystem.IO.Compression.Native.framework/Info.plist: - 866 bytes (0.8 KB = 0.0 MB) + 845 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.IO.Compression.Native.framework/libSystem.IO.Compression.Native: - 1,393,600 bytes (1,360.9 KB = 1.3 MB) + 1,438,032 bytes (1,404.3 KB = 1.4 MB) Frameworks/libSystem.Native.framework/Info.plist: - 836 bytes (0.8 KB = 0.0 MB) + 815 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Native.framework/libSystem.Native: - 143,840 bytes (140.5 KB = 0.1 MB) + 178,176 bytes (174.0 KB = 0.2 MB) Frameworks/libSystem.Net.Security.Native.framework/Info.plist: - 862 bytes (0.8 KB = 0.0 MB) + 841 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Net.Security.Native.framework/libSystem.Net.Security.Native: - 69,328 bytes (67.7 KB = 0.1 MB) + 103,072 bytes (100.7 KB = 0.1 MB) Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/Info.plist: - 892 bytes (0.9 KB = 0.0 MB) + 871 bytes (0.9 KB = 0.0 MB) Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/libSystem.Security.Cryptography.Native.Apple: - 195,104 bytes (190.5 KB = 0.2 MB) + 249,184 bytes (243.3 KB = 0.2 MB) Info.plist: - 1,150 bytes (1.1 KB = 0.0 MB) + 1,129 bytes (1.1 KB = 0.0 MB) Microsoft.iOS.dll: - 98,816 bytes (96.5 KB = 0.1 MB) + 97,792 bytes (95.5 KB = 0.1 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) SizeTestApp: - 128,512 bytes (125.5 KB = 0.1 MB) + 128,504 bytes (125.5 KB = 0.1 MB) SizeTestApp.dll: - 7,680 bytes (7.5 KB = 0.0 MB) + 7,168 bytes (7.0 KB = 0.0 MB) System.Collections.Immutable.dll: - 14,848 bytes (14.5 KB = 0.0 MB) + 14,336 bytes (14.0 KB = 0.0 MB) System.Diagnostics.StackTrace.dll: 8,192 bytes (8.0 KB = 0.0 MB) System.IO.Compression.dll: @@ -45,7 +45,7 @@ System.IO.Compression.dll: System.IO.MemoryMappedFiles.dll: 22,016 bytes (21.5 KB = 0.0 MB) System.Private.CoreLib.dll: - 1,610,752 bytes (1,573.0 KB = 1.5 MB) + 1,748,992 bytes (1,708.0 KB = 1.7 MB) System.Reflection.Metadata.dll: 84,480 bytes (82.5 KB = 0.1 MB) System.Runtime.dll: diff --git a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt index ffe5c3348e5d..fb4486152b04 100644 --- a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-preservedapis.txt @@ -1935,10 +1935,14 @@ System.Private.CoreLib.dll:/__StaticArrayInitTypeS System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::2F3EFC9595514E83DED03093C4F3E3C781A650E1AAB8CA350537CD1A47E1EE8E System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::F8919BA0F50317229A66884F9CE4E004B755100D8A4000A28D468B0627472F4D +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128_Align=8 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128_Align=8 ::4EFE2D3A64964C812874074A7FEE8B5A2B4425064A81A9D44C0E7A3025C716388 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316 ::A72EB4166B1B422391E0F6E483BEF87AE75881E655BCB152E37F3D9688B2AA71 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2 ::7BEC6AD454781FDCD8D475B3418629CBABB3BF9CA66FA80009D608A1A60D06962 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8 ::DD471F12FFA94CC557A02A91C2CBB95F551AB28C8BBF297B2F953B8886BCCF6D8 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552 ::3A2A62DD9288C777284B5B71FB3EFB59CFDF6BF81068A16795E6155DB8BFA701 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=16 @@ -1977,6 +1981,8 @@ System.Private.CoreLib.dll:/__StaticArrayInitTypeS System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=256_Align=8 ::40BC6C50487BFA78776C051EF7555931E4F15E5CEE9481EB280B1C2630B906B48 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=2 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=2 ::374EE580A55269D9E298B7EFD9DB0DFE1798E301679B89E48D722345EB74B59B2 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=4 +System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=28_Align=4 ::2106C9B520169CFE919ED2D7BAE85C716D866D8DC2716F286D9C95511F1B9B014 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4 ::74BCD6ED20AF2231F2BB1CDE814C5F4FF48E54BAC46029EEF90DDF4A208E2B204 System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32 @@ -2394,6 +2400,7 @@ System.Private.CoreLib.dll:method System.Void *(System.Byte&) System.RuntimeType System.Private.CoreLib.dll:method System.Void *(System.Object,System.Action`1,System.Object,System.Int16,System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags) System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::OnCompletedValueTaskSource System.Private.CoreLib.dll:method System.Void *(System.Object,System.Int16,System.Byte&) System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::_getResult System.Private.CoreLib.dll:method System.Void *(System.Object) System.RuntimeType/ActivatorCache::_pfnRefCtor +System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.Continuation,System.Int32,System.Action) System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterContinuation System.Private.CoreLib.dll:method System.Void *(System.Runtime.CompilerServices.TailCallArgBuffer*,System.Byte&,System.Runtime.CompilerServices.PortableTailCallFrame*) System.Runtime.CompilerServices.PortableTailCallFrame::NextCall System.Private.CoreLib.dll:method System.Void *(System.Threading.Tasks.Task,System.Byte&) System.Runtime.CompilerServices.RuntimeAsyncTaskContinuation::_getResult System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle @@ -2419,7 +2426,7 @@ System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Path() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_SupportsRandomAccess() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_ThreadPoolBinding() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Type() -System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeek() +System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeekCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileLength() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileTypeCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetThreadPoolValueTaskSource() @@ -2868,6 +2875,9 @@ System.Private.CoreLib.dll:System.Boolean System.Collections.ObjectModel.ReadOnl System.Private.CoreLib.dll:System.Boolean System.DateTimeRawInfo::hasSameDateAndTimeSeparators System.Private.CoreLib.dll:System.Boolean System.Decimal/DecCalc::IsNegative() System.Private.CoreLib.dll:System.Boolean System.DefaultBinder/BinderState::_isParamArray +System.Private.CoreLib.dll:System.Boolean System.Delegate::HasSingleTarget() +System.Private.CoreLib.dll:System.Boolean System.Delegate::IsClosed() +System.Private.CoreLib.dll:System.Boolean System.Delegate::IsUnmanagedFunctionPtr() System.Private.CoreLib.dll:System.Boolean System.Diagnostics.CodeAnalysis.MaybeNullWhenAttribute::k__BackingField System.Private.CoreLib.dll:System.Boolean System.Diagnostics.Debugger::IsAttached() System.Private.CoreLib.dll:System.Boolean System.Diagnostics.StackFrame::_isLastFrameFromForeignExceptionStackTrace @@ -2992,9 +3002,10 @@ System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::ForceI System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::FormatJapaneseFirstYearAsANumber() System.Private.CoreLib.dll:System.Boolean System.LocalAppContextSwitches::ShowILOffsets() System.Private.CoreLib.dll:System.Boolean System.Memory`1::IsEmpty() -System.Private.CoreLib.dll:System.Boolean System.MulticastDelegate::HasSingleTarget() System.Private.CoreLib.dll:System.Boolean System.Nullable`1::hasValue System.Private.CoreLib.dll:System.Boolean System.Nullable`1::HasValue() +System.Private.CoreLib.dll:System.Boolean System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:System.Boolean System.Number/DecodedDecimalIeee754`1::Signed() System.Private.CoreLib.dll:System.Boolean System.Number/NumberBuffer::HasNonZeroTail System.Private.CoreLib.dll:System.Boolean System.Number/NumberBuffer::IsNegative System.Private.CoreLib.dll:System.Boolean System.Numerics.Vector::IsHardwareAccelerated() @@ -3106,8 +3117,9 @@ System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_r System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_suppressContextualReflectionContext System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::_throwOnError System.Private.CoreLib.dll:System.Boolean System.Reflection.TypeNameResolver::SupportsUnboundGenerics() -System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncMethodBuilderCore::TrackAsyncMethodCompletion() System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::CurrentContinuationCompleted +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::CurrentContinuationResumes +System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.AsyncProfiler/Info::ReachedLastContinuation System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::_finalized System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::_invalid System.Private.CoreLib.dll:System.Boolean System.Runtime.CompilerServices.ConditionalWeakTable`2/Container::HasCapacity() @@ -3708,12 +3720,12 @@ System.Private.CoreLib.dll:System.Byte modreq(System.Runtime.CompilerServices.Is System.Private.CoreLib.dll:System.Byte System.Byte::m_value System.Private.CoreLib.dll:System.Byte System.Byte::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Byte System.Byte::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Byte System.Collections.Generic.InsertionBehavior::value__ System.Private.CoreLib.dll:System.Byte System.DateTimeParse/DS::value__ System.Private.CoreLib.dll:System.Byte System.Decimal::Scale() -System.Private.CoreLib.dll:System.Byte System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::value__ System.Private.CoreLib.dll:System.Byte System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::value__ System.Private.CoreLib.dll:System.Byte System.DTSubStringType::value__ System.Private.CoreLib.dll:System.Byte System.GCMemoryInfoData::_compacted @@ -3756,12 +3768,17 @@ System.Private.CoreLib.dll:System.Byte System.TimeZoneInfo/TZifType::Abbreviatio System.Private.CoreLib.dll:System.Byte System.TimeZoneInfo/TZVersion::value__ System.Private.CoreLib.dll:System.Byte.CompareTo(System.Byte) System.Private.CoreLib.dll:System.Byte.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Byte.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Byte.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Byte.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Byte.DivRem(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Equals(System.Byte) System.Private.CoreLib.dll:System.Byte.Equals(System.Object) System.Private.CoreLib.dll:System.Byte.GetHashCode() System.Private.CoreLib.dll:System.Byte.GetTypeCode() +System.Private.CoreLib.dll:System.Byte.IsOddInteger(System.Byte) +System.Private.CoreLib.dll:System.Byte.LeadingZeroCount(System.Byte) +System.Private.CoreLib.dll:System.Byte.Log2(System.Byte) System.Private.CoreLib.dll:System.Byte.Max(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Min(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -3797,32 +3814,42 @@ System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastFrom(Sys System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastFrom(System.UInt64) System.Private.CoreLib.dll:System.Byte.System.IUtfChar.CastToUInt32(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IAdditionOperators.op_Addition(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_GreaterThan(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_LessThan(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IDivisionOperators.op_Division(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IEqualityOperators.op_Equality(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IEqualityOperators.op_Inequality(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Byte.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Byte.System.Numerics.IMultiplyOperators.op_Multiply(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsFinite(System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsInfinity(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsNaN(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsNegative(System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.IsZero(System.Byte) +System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToChecked`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Byte, out TOther&) System.Private.CoreLib.dll:System.Byte.System.Numerics.IShiftOperators.op_LeftShift(System.Byte, System.Int32) +System.Private.CoreLib.dll:System.Byte.System.Numerics.IShiftOperators.op_RightShift(System.Byte, System.Int32) System.Private.CoreLib.dll:System.Byte.System.Numerics.ISubtractionOperators.op_Subtraction(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Byte.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Byte) System.Private.CoreLib.dll:System.Byte.ToString() System.Private.CoreLib.dll:System.Byte.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Byte.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Byte.TryConvertFromChecked`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryConvertFromSaturating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryConvertFromTruncating`1(TOther, out System.Byte&) System.Private.CoreLib.dll:System.Byte.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -3891,6 +3918,7 @@ System.Private.CoreLib.dll:System.Char System.Buffers.RangeCharSearchValues`1::_ System.Private.CoreLib.dll:System.Char System.Char::m_value System.Private.CoreLib.dll:System.Char System.Char::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Char System.Char::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Char System.CharEnumerator::Current() @@ -3971,27 +3999,39 @@ System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastFrom(Sys System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastFrom(System.UInt64) System.Private.CoreLib.dll:System.Char.System.IUtfChar.CastToUInt32(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IAdditionOperators.op_Addition(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryInteger.GetByteCount() +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryInteger.LeadingZeroCount(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBinaryNumber.Log2(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_GreaterThan(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_LessThan(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Char, System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.IDivisionOperators.op_Division(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IEqualityOperators.op_Equality(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IEqualityOperators.op_Inequality(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Char.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Char.System.Numerics.IMultiplyOperators.op_Multiply(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsFinite(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsInfinity(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsNaN(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsNegative(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsOddInteger(System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.IsZero(System.Char) +System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Char&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToChecked`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Char, out TOther&) System.Private.CoreLib.dll:System.Char.System.Numerics.IShiftOperators.op_LeftShift(System.Char, System.Int32) +System.Private.CoreLib.dll:System.Char.System.Numerics.IShiftOperators.op_RightShift(System.Char, System.Int32) System.Private.CoreLib.dll:System.Char.System.Numerics.ISubtractionOperators.op_Subtraction(System.Char, System.Char) System.Private.CoreLib.dll:System.Char.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Char) System.Private.CoreLib.dll:System.Char.ToString() @@ -5180,6 +5220,7 @@ System.Private.CoreLib.dll:System.Decimal System.Decimal::MultiplicativeIdentity System.Private.CoreLib.dll:System.Decimal System.Decimal::NegativeOne System.Private.CoreLib.dll:System.Decimal System.Decimal::One System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Decimal System.Decimal::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Decimal System.Decimal::Zero @@ -5203,6 +5244,7 @@ System.Private.CoreLib.dll:System.Decimal..ctor(System.UInt64) System.Private.CoreLib.dll:System.Decimal.AsMutable(System.Decimal&) System.Private.CoreLib.dll:System.Decimal.CompareTo(System.Decimal) System.Private.CoreLib.dll:System.Decimal.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Decimal.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Decimal.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Decimal.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Decimal.DecDivMod1E9(System.Decimal&) @@ -5217,8 +5259,10 @@ System.Private.CoreLib.dll:System.Decimal.get_Scale() System.Private.CoreLib.dll:System.Decimal.GetHashCode() System.Private.CoreLib.dll:System.Decimal.GetTypeCode() System.Private.CoreLib.dll:System.Decimal.IsNegative(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.IsOddInteger(System.Decimal) System.Private.CoreLib.dll:System.Decimal.IsValid(System.Int32) System.Private.CoreLib.dll:System.Decimal.op_Addition(System.Decimal, System.Decimal) +System.Private.CoreLib.dll:System.Decimal.op_Division(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Equality(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Explicit(System.Decimal) => System.Byte System.Private.CoreLib.dll:System.Decimal.op_Explicit(System.Decimal) => System.Char @@ -5247,6 +5291,7 @@ System.Private.CoreLib.dll:System.Decimal.op_Implicit(System.UInt64) => System.D System.Private.CoreLib.dll:System.Decimal.op_Inequality(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_LessThan(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_LessThanOrEqual(System.Decimal, System.Decimal) +System.Private.CoreLib.dll:System.Decimal.op_Multiply(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_Subtraction(System.Decimal, System.Decimal) System.Private.CoreLib.dll:System.Decimal.op_UnaryNegation(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -5270,11 +5315,14 @@ System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt16(System.IF System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Decimal.System.Numerics.IMinMaxValue.get_MinValue() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsFinite(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsInfinity(System.Decimal) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsNaN(System.Decimal) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.IsZero(System.Decimal) +System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.System.Numerics.INumberBase.TryConvertToChecked`1(System.Decimal, out TOther&) @@ -5295,40 +5343,77 @@ System.Private.CoreLib.dll:System.Decimal.ToUInt64(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Truncate(System.Decimal) System.Private.CoreLib.dll:System.Decimal.Truncate(System.Decimal&) System.Private.CoreLib.dll:System.Decimal.TryConvertFrom`1(TOther, out System.Decimal&) +System.Private.CoreLib.dll:System.Decimal.TryConvertFromChecked`1(TOther, out System.Decimal&) System.Private.CoreLib.dll:System.Decimal.TryConvertTo`1(System.Decimal, out TOther&) System.Private.CoreLib.dll:System.Decimal.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Decimal/DecCalc +System.Private.CoreLib.dll:System.Decimal/DecCalc..cctor() +System.Private.CoreLib.dll:System.Decimal/DecCalc.Add32To96(System.Decimal/DecCalc/Buf12&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecAddSub(System.Decimal/DecCalc&, System.Decimal/DecCalc&, System.Boolean) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecDivMod1E9(System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPoint`1(System.UInt64, System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPointExact(System.UInt64, System.UInt32, System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div128By64(System.Decimal/DecCalc/Buf16&, System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div128By96(System.Decimal/DecCalc/Buf16&, System.Decimal/DecCalc/Buf12&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div64By32(System.UInt64, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96By32(System.Decimal/DecCalc/Buf12&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96By64(System.Decimal/DecCalc/Buf12&, System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96ByConst(System.UInt64&, System.UInt32&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DivByConst(System.UInt32*, System.UInt32, out System.UInt32&, out System.UInt32&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Equals(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.get_High() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_IsNegative() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Mid() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Scale() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_UInt32Powers10() +System.Private.CoreLib.dll:System.Decimal/DecCalc.get_UInt64Powers10() System.Private.CoreLib.dll:System.Decimal/DecCalc.GetHashCode(System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale(System.Decimal/DecCalc/Buf12&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale(System.Decimal/DecCalc/Buf16&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.IncreaseScale64(System.Decimal/DecCalc/Buf12&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.InternalRound(System.Decimal/DecCalc&, System.UInt32, System.MidpointRounding) +System.Private.CoreLib.dll:System.Decimal/DecCalc.OverflowUnscale(System.Decimal/DecCalc/Buf12&, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Decimal/DecCalc.Pow5(System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.RoundShiftRightEven(System.UInt128, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.ScaleResult(System.Decimal/DecCalc/Buf24*, System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.SearchScale(System.UInt64, System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.set_High(System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Low(System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Low64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc.set_Mid(System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.Unscale(System.UInt32&, System.UInt64&, System.Int32&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarCyFromDec(System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecCmp(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecCmpSub(System.Decimal&, System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecDiv(System.Decimal/DecCalc&, System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromFloat`1(TNumber, out System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromR4(System.Single, out System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecFromR8(System.Double, out System.Decimal/DecCalc&) +System.Private.CoreLib.dll:System.Decimal/DecCalc.VarDecMul(System.Decimal/DecCalc&, System.Decimal/DecCalc&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarR4FromDec(System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.VarR8FromDec(System.Decimal&) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 System.Decimal/DecCalc/Buf16::High96 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12 System.Decimal/DecCalc/Buf16::Low96 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.get_High64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.set_High64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf12.set_Low64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16 +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.get_High64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.set_High64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf16.set_Low64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24 System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.get_Low64() +System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_High64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_Low64(System.UInt64) System.Private.CoreLib.dll:System.Decimal/DecCalc/Buf24.set_Mid64(System.UInt64) +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl..ctor(System.UInt32, System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc/PowerOvfl[] System.Decimal/DecCalc::PowerOvflValues System.Private.CoreLib.dll:System.DefaultBinder System.Private.CoreLib.dll:System.DefaultBinder System.DefaultBinder::Instance System.Private.CoreLib.dll:System.DefaultBinder..cctor() @@ -5372,47 +5457,74 @@ System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/ System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/Primitives::UInt32 System.Private.CoreLib.dll:System.DefaultBinder/Primitives System.DefaultBinder/Primitives::UInt64 System.Private.CoreLib.dll:System.Delegate +System.Private.CoreLib.dll:System.Delegate System.Delegate/Wrapper::Value System.Private.CoreLib.dll:System.Delegate System.Threading.CancellationTokenSource/CallbackNode::Callback System.Private.CoreLib.dll:System.Delegate System.Threading.Tasks.Task::m_action System.Private.CoreLib.dll:System.Delegate System.Threading.Thread/StartHelper::_start -System.Private.CoreLib.dll:System.Delegate.g____PInvoke|19_0(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags) -System.Private.CoreLib.dll:System.Delegate.g____PInvoke|32_0(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.g____PInvoke|34_0(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Delegate/BindToMethodDetails*) +System.Private.CoreLib.dll:System.Delegate.g____PInvoke|39_0(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, System.Delegate/BindToMethodDetails*) System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.AdjustTarget(System.Runtime.CompilerServices.MethodTable*, System.IntPtr) System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Object, System.IRuntimeMethodInfo, System.RuntimeType, System.DelegateBindingFlags) -System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags) +System.Private.CoreLib.dll:System.Delegate.BindToMethodInfo(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.QCallTypeHandle, System.DelegateBindingFlags, System.Runtime.CompilerServices.ObjectHandleOnStack, out System.Delegate/BindToMethodDetails&) System.Private.CoreLib.dll:System.Delegate.Combine(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.CombineImpl(System.Delegate) -System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.Construct(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodTable*, System.IntPtr, out System.Delegate/BindToMethodDetails&) System.Private.CoreLib.dll:System.Delegate.CreateDelegateInternal(System.RuntimeType, System.Reflection.RuntimeMethodInfo, System.Object, System.DelegateBindingFlags) +System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.CreateMethodInfo(System.Runtime.CompilerServices.MethodDesc*) +System.Private.CoreLib.dll:System.Delegate.CtorClosed(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorClosedStatic(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleClosedStatic(System.Object, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleOpen(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorCollectibleVirtualDispatch(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorOpen(System.Object, System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorRTClosed(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.CtorVirtualDispatch(System.Object, System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.Delegate.DelegateConstruct(System.Object, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.DeleteFromInvocationList(System.ReadOnlySpan`1, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Delegate.EnumerateInvocationList`1(TDelegate) System.Private.CoreLib.dll:System.Delegate.Equals(System.Object) -System.Private.CoreLib.dll:System.Delegate.FindMethodHandle() -System.Private.CoreLib.dll:System.Delegate.FindMethodHandle(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) +System.Private.CoreLib.dll:System.Delegate.get_HasSingleTarget() +System.Private.CoreLib.dll:System.Delegate.get_IsClosed() +System.Private.CoreLib.dll:System.Delegate.get_IsUnmanagedFunctionPtr() System.Private.CoreLib.dll:System.Delegate.get_Method() +System.Private.CoreLib.dll:System.Delegate.get_MethodDesc() System.Private.CoreLib.dll:System.Delegate.GetHashCode() System.Private.CoreLib.dll:System.Delegate.GetInvokeMethod() System.Private.CoreLib.dll:System.Delegate.GetInvokeMethod(System.Runtime.CompilerServices.MethodTable*) +System.Private.CoreLib.dll:System.Delegate.GetMethodDesc() +System.Private.CoreLib.dll:System.Delegate.GetMethodDesc(System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.GetMethodImpl() +System.Private.CoreLib.dll:System.Delegate.GetMethodImplUncached() System.Private.CoreLib.dll:System.Delegate.GetMulticastInvoke() System.Private.CoreLib.dll:System.Delegate.GetMulticastInvoke(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.GetMulticastInvokeSlow(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.GetTargetForSingleCastInstanceDelegate() System.Private.CoreLib.dll:System.Delegate.InitializeVirtualCallStub(System.IntPtr) System.Private.CoreLib.dll:System.Delegate.InitializeVirtualCallStub(System.Runtime.CompilerServices.ObjectHandleOnStack, System.IntPtr) +System.Private.CoreLib.dll:System.Delegate.InternalAlloc(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Delegate.InternalAlloc(System.RuntimeType) -System.Private.CoreLib.dll:System.Delegate.InternalEqualMethodHandles(System.Delegate, System.Delegate) -System.Private.CoreLib.dll:System.Delegate.InternalEqualMethodHandles(System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Delegate.InternalEqualTypes(System.Object, System.Object) +System.Private.CoreLib.dll:System.Delegate.NewMulticastDelegate(System.Delegate/Wrapper[], System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Delegate.op_Equality(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.Remove(System.Delegate, System.Delegate) System.Private.CoreLib.dll:System.Delegate.RemoveImpl(System.Delegate) +System.Private.CoreLib.dll:System.Delegate.ThrowNullThisInDelegateToInstance() +System.Private.CoreLib.dll:System.Delegate.TryGetAt(System.Int32) +System.Private.CoreLib.dll:System.Delegate.TryGetInvocations(out System.ReadOnlySpan`1&) +System.Private.CoreLib.dll:System.Delegate.TrySetSlot(System.Delegate&, System.Delegate) +System.Private.CoreLib.dll:System.Delegate/BindToMethodDetails System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1 System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1..ctor(System.MulticastDelegate) System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.get_Current() System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.GetEnumerator() System.Private.CoreLib.dll:System.Delegate/InvocationListEnumerator`1.MoveNext() +System.Private.CoreLib.dll:System.Delegate/Wrapper +System.Private.CoreLib.dll:System.Delegate/Wrapper..ctor(System.Delegate) +System.Private.CoreLib.dll:System.Delegate/Wrapper.Equals(System.Delegate/Wrapper) +System.Private.CoreLib.dll:System.Delegate/Wrapper.Equals(System.Object) +System.Private.CoreLib.dll:System.Delegate/Wrapper.GetHashCode() System.Private.CoreLib.dll:System.DelegateBindingFlags System.Private.CoreLib.dll:System.DelegateBindingFlags System.DelegateBindingFlags::CaselessMatching System.Private.CoreLib.dll:System.DelegateBindingFlags System.DelegateBindingFlags::ClosedDelegateOnly @@ -5639,20 +5751,6 @@ System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource System.Diagnostics.Tracing.NativeRuntimeEventSource::Log System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource..cctor() System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource..ctor() -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.IntPtr, System.IntPtr, System.UInt64) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStart(System.Threading.Lock) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStop(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.ContentionStop(System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogContentionStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.IntPtr, System.IntPtr, System.UInt64) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogContentionStop(System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap, System.UInt16, System.Double) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogWaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.IntPtr, System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.LogWaitHandleWaitStop(System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.IntPtr, System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStart(System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap, System.Object) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource.WaitHandleWaitStop(System.UInt16) -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::Managed -System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap System.Diagnostics.Tracing.NativeRuntimeEventSource/ContentionFlagsMap::Native System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::MonitorWait System.Private.CoreLib.dll:System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap System.Diagnostics.Tracing.NativeRuntimeEventSource/WaitHandleWaitSourceMap::Unknown @@ -5678,9 +5776,11 @@ System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatingPointIeee754.PositiveInfinity() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Double System.NotFiniteNumberException::_offendingNumber +System.Private.CoreLib.dll:System.Double System.Number/SqrtCoefficients::C System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_date System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_r8 System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.NFloat::_value @@ -5706,9 +5806,11 @@ System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalDays() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalHours() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalMilliseconds() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalSeconds() +System.Private.CoreLib.dll:System.Double.Abs(System.Double) System.Private.CoreLib.dll:System.Double.CompareTo(System.Double) System.Private.CoreLib.dll:System.Double.CompareTo(System.Object) System.Private.CoreLib.dll:System.Double.ConvertToIntegerNative`1(System.Double) +System.Private.CoreLib.dll:System.Double.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Double.CreateDouble(System.Boolean, System.UInt16, System.UInt64) System.Private.CoreLib.dll:System.Double.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Double.CreateTruncating`1(TOther) @@ -5717,14 +5819,19 @@ System.Private.CoreLib.dll:System.Double.Equals(System.Object) System.Private.CoreLib.dll:System.Double.GetHashCode() System.Private.CoreLib.dll:System.Double.GetTypeCode() System.Private.CoreLib.dll:System.Double.IsFinite(System.Double) +System.Private.CoreLib.dll:System.Double.IsInfinity(System.Double) +System.Private.CoreLib.dll:System.Double.IsInteger(System.Double) System.Private.CoreLib.dll:System.Double.IsNaN(System.Double) System.Private.CoreLib.dll:System.Double.IsNaNOrZero(System.Double) System.Private.CoreLib.dll:System.Double.IsNegative(System.Double) +System.Private.CoreLib.dll:System.Double.IsOddInteger(System.Double) System.Private.CoreLib.dll:System.Double.IsZero(System.Double) +System.Private.CoreLib.dll:System.Double.Log2(System.Double) System.Private.CoreLib.dll:System.Double.Max(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.Min(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_Equality(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_GreaterThan(System.Double, System.Double) +System.Private.CoreLib.dll:System.Double.op_GreaterThanOrEqual(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_Inequality(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_LessThan(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.op_LessThanOrEqual(System.Double, System.Double) @@ -5774,15 +5881,20 @@ System.Private.CoreLib.dll:System.Double.System.IConvertible.ToUInt64(System.IFo System.Private.CoreLib.dll:System.Double.System.Numerics.IAdditionOperators.op_Addition(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Double, System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.IDivisionOperators.op_Division(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NaN() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NegativeInfinity() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_NegativeZero() System.Private.CoreLib.dll:System.Double.System.Numerics.IFloatingPointIeee754.get_PositiveInfinity() System.Private.CoreLib.dll:System.Double.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Double.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Double.System.Numerics.IMultiplyOperators.op_Multiply(System.Double, System.Double) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.IsZero(System.Double) +System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.System.Numerics.INumberBase.TryConvertToChecked`1(System.Double, out TOther&) @@ -5793,6 +5905,7 @@ System.Private.CoreLib.dll:System.Double.System.Numerics.IUnaryNegationOperators System.Private.CoreLib.dll:System.Double.ToString() System.Private.CoreLib.dll:System.Double.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Double.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Double.Truncate(System.Double) System.Private.CoreLib.dll:System.Double.TryConvertFrom`1(TOther, out System.Double&) System.Private.CoreLib.dll:System.Double.TryConvertTo`1(System.Double, out TOther&) System.Private.CoreLib.dll:System.Double.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -6264,11 +6377,6 @@ System.Private.CoreLib.dll:System.GC/GC_ALLOC_FLAGS System.GC/GC_ALLOC_FLAGS::GC System.Private.CoreLib.dll:System.GC/GC_ALLOC_FLAGS System.GC/GC_ALLOC_FLAGS::GC_ALLOC_ZEROING_OPTIONAL System.Private.CoreLib.dll:System.GC/GCHeapHardLimitInfo System.Private.CoreLib.dll:System.GCGenerationInfo -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo0 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo1 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo2 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo3 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo4 System.Private.CoreLib.dll:System.GCKind System.Private.CoreLib.dll:System.GCKind System.GCKind::Any System.Private.CoreLib.dll:System.GCKind System.GCKind::Background @@ -7205,11 +7313,12 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globaliz System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::InvariantInfo() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..cctor() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData) -System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|58_0(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|60_0(System.IFormatProvider) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|167_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|166_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|165_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.AllowHyphenDuringParsing() +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CreateUtf8Cache(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyGroupSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencySymbolTChar`1() @@ -7232,6 +7341,7 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PercentPosi System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetFormat(System.Type) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetUtf8Span(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.InitializeInvariantAndNegativeSignFlags() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NaNSymbolTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NegativeInfinitySymbolTChar`1() @@ -7257,7 +7367,6 @@ System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalizatio System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowLeadingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowParentheses System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowThousands -System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingInvalidCharacters System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingSign System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::Any @@ -7627,6 +7736,7 @@ System.Private.CoreLib.dll:System.Guid.TryFormatCore`1(System.Span`1, out System.Private.CoreLib.dll:System.Guid.TryFormatX`1(System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Half System.Private.CoreLib.dll:System.Half System.Half::MaxValue() +System.Private.CoreLib.dll:System.Half System.Half::MinValue() System.Private.CoreLib.dll:System.Half System.Half::NaN() System.Private.CoreLib.dll:System.Half System.Half::NegativeInfinity() System.Private.CoreLib.dll:System.Half System.Half::NegativeZero() @@ -7638,6 +7748,7 @@ System.Private.CoreLib.dll:System.Half..ctor(System.UInt16) System.Private.CoreLib.dll:System.Half.AreZero(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.CompareTo(System.Half) System.Private.CoreLib.dll:System.Half.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Half.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Half.CreateDoubleNaN(System.Boolean, System.UInt64) System.Private.CoreLib.dll:System.Half.CreateHalfNaN(System.Boolean, System.UInt64) System.Private.CoreLib.dll:System.Half.CreateSaturating`1(TOther) @@ -7648,6 +7759,7 @@ System.Private.CoreLib.dll:System.Half.ExtractBiasedExponentFromBits(System.UInt System.Private.CoreLib.dll:System.Half.ExtractTrailingSignificandFromBits(System.UInt16) System.Private.CoreLib.dll:System.Half.get_BiasedExponent() System.Private.CoreLib.dll:System.Half.get_MaxValue() +System.Private.CoreLib.dll:System.Half.get_MinValue() System.Private.CoreLib.dll:System.Half.get_NaN() System.Private.CoreLib.dll:System.Half.get_NegativeInfinity() System.Private.CoreLib.dll:System.Half.get_NegativeZero() @@ -7655,12 +7767,16 @@ System.Private.CoreLib.dll:System.Half.get_One() System.Private.CoreLib.dll:System.Half.get_PositiveInfinity() System.Private.CoreLib.dll:System.Half.get_TrailingSignificand() System.Private.CoreLib.dll:System.Half.get_Zero() +System.Private.CoreLib.dll:System.Half.GetCompareKey(System.UInt16) System.Private.CoreLib.dll:System.Half.GetHashCode() System.Private.CoreLib.dll:System.Half.IsFinite(System.Half) +System.Private.CoreLib.dll:System.Half.IsInfinity(System.Half) System.Private.CoreLib.dll:System.Half.IsNaN(System.Half) System.Private.CoreLib.dll:System.Half.IsNaNOrZero(System.Half) System.Private.CoreLib.dll:System.Half.IsNegative(System.Half) +System.Private.CoreLib.dll:System.Half.IsOddInteger(System.Half) System.Private.CoreLib.dll:System.Half.IsZero(System.Half) +System.Private.CoreLib.dll:System.Half.Log2(System.Half) System.Private.CoreLib.dll:System.Half.NormSubnormalF16Sig(System.UInt32) System.Private.CoreLib.dll:System.Half.op_Addition(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) @@ -7671,6 +7787,12 @@ System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_CheckedExplicit(System.Half) +System.Private.CoreLib.dll:System.Half.op_Division(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Equality(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Explicit(System.Char) => System.Half System.Private.CoreLib.dll:System.Half.op_Explicit(System.Decimal) => System.Half @@ -7707,6 +7829,7 @@ System.Private.CoreLib.dll:System.Half.op_Implicit(System.SByte) => System.Half System.Private.CoreLib.dll:System.Half.op_Inequality(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_LessThan(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_LessThanOrEqual(System.Half, System.Half) +System.Private.CoreLib.dll:System.Half.op_Multiply(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_Subtraction(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.op_UnaryNegation(System.Half) System.Private.CoreLib.dll:System.Half.RoundPackToHalf(System.Boolean, System.Int16, System.UInt16) @@ -7739,8 +7862,10 @@ System.Private.CoreLib.dll:System.Half.System.IBinaryFloatParseAndFormatInfo.get_ZeroBits() System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Half, System.Half) +System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Half, System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Half) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.IsZero(System.Half) +System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Half&) System.Private.CoreLib.dll:System.Half.System.Numerics.INumberBase.TryConvertToChecked`1(System.Half, out TOther&) @@ -7849,6 +7974,42 @@ System.Private.CoreLib.dll:System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.ICustomFormatter System.Private.CoreLib.dll:System.ICustomFormatter.Format(System.String, System.Object, System.IFormatProvider) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2 +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.ConvertToExponent(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.CountDigits(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.DivRemPow10(TValue, System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_BufferLength() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_ExponentBias() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G0G1Mask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MaxSignificand() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MinExponent() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NaN() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NaNMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NegativeInfinity() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_PositiveInfinity() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_Precision() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_SignMask() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.get_Zero() +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsFinite(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNaN(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNegative(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsNegativeInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.IsPositiveInfinity(TValue) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.Power10(System.Int32) +System.Private.CoreLib.dll:System.IDecimalIeee754ParseAndFormatInfo`2.ToDecStr(TValue) System.Private.CoreLib.dll:System.IDisposable System.Private.CoreLib.dll:System.IDisposable.Dispose() System.Private.CoreLib.dll:System.IEquatable`1 @@ -7865,6 +8026,7 @@ System.Private.CoreLib.dll:System.Index System.Range::k__BackingField System.Private.CoreLib.dll:System.Index System.Range::k__BackingField System.Private.CoreLib.dll:System.Index System.Range::End() System.Private.CoreLib.dll:System.Index System.Range::Start() +System.Private.CoreLib.dll:System.Index..ctor(System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Index..ctor(System.Int32) System.Private.CoreLib.dll:System.Index.Equals(System.Index) System.Private.CoreLib.dll:System.Index.Equals(System.Object) @@ -7897,8 +8059,10 @@ System.Private.CoreLib.dll:System.Int128 System.Int128::Zero() System.Private.CoreLib.dll:System.Int128..ctor(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.Int128.CompareTo(System.Int128) System.Private.CoreLib.dll:System.Int128.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int128.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int128.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int128.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int128.DivRem(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.Equals(System.Int128) System.Private.CoreLib.dll:System.Int128.Equals(System.Object) System.Private.CoreLib.dll:System.Int128.get_MaxValue() @@ -7907,7 +8071,11 @@ System.Private.CoreLib.dll:System.Int128.get_One() System.Private.CoreLib.dll:System.Int128.get_Zero() System.Private.CoreLib.dll:System.Int128.GetHashCode() System.Private.CoreLib.dll:System.Int128.IsNegative(System.Int128) +System.Private.CoreLib.dll:System.Int128.IsOddInteger(System.Int128) System.Private.CoreLib.dll:System.Int128.IsPositive(System.Int128) +System.Private.CoreLib.dll:System.Int128.LeadingZeroCount(System.Int128) +System.Private.CoreLib.dll:System.Int128.LeadingZeroCountAsInt32(System.Int128) +System.Private.CoreLib.dll:System.Int128.Log2(System.Int128) System.Private.CoreLib.dll:System.Int128.op_Addition(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_BitwiseAnd(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_BitwiseOr(System.Int128, System.Int128) @@ -7920,7 +8088,14 @@ System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_CheckedExplicit(System.Single) +System.Private.CoreLib.dll:System.Int128.op_Division(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Equality(System.Int128, System.Int128) +System.Private.CoreLib.dll:System.Int128.op_ExclusiveOr(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Decimal) => System.Int128 System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Double) => System.Int128 System.Private.CoreLib.dll:System.Int128.op_Explicit(System.Int128) => System.Byte @@ -7959,6 +8134,7 @@ System.Private.CoreLib.dll:System.Int128.op_LessThan(System.Int128, System.Int12 System.Private.CoreLib.dll:System.Int128.op_LessThanOrEqual(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_Multiply(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_OnesComplement(System.Int128) +System.Private.CoreLib.dll:System.Int128.op_RightShift(System.Int128, System.Int32) System.Private.CoreLib.dll:System.Int128.op_Subtraction(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.op_UnaryNegation(System.Int128) System.Private.CoreLib.dll:System.Int128.op_UnsignedRightShift(System.Int128, System.Int32) @@ -7970,9 +8146,12 @@ System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.IsGreaterThanAsUnsigned(System.Int128, System.Int128) System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy10(System.Int128) System.Private.CoreLib.dll:System.Int128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy16(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsFinite(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsInfinity(System.Int128) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsNaN(System.Int128) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.IsZero(System.Int128) +System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int128&) System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int128, out TOther&) @@ -7981,6 +8160,7 @@ System.Private.CoreLib.dll:System.Int128.System.Numerics.INumberBase, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -7993,6 +8173,7 @@ System.Private.CoreLib.dll:System.Int16 System.Guid::_c System.Private.CoreLib.dll:System.Int16 System.Int16::m_value System.Private.CoreLib.dll:System.Int16 System.Int16::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int16 System.Int16::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int16 System.Runtime.CompilerServices.AsyncHelpers/ValueTaskSourceContinuation::Token @@ -8031,13 +8212,18 @@ System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1::_tok System.Private.CoreLib.dll:System.Int16 System.Threading.Tasks.ValueTask`1/ValueTaskSourceAsTask::_token System.Private.CoreLib.dll:System.Int16.CompareTo(System.Int16) System.Private.CoreLib.dll:System.Int16.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int16.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int16.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int16.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int16.DivRem(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Equals(System.Int16) System.Private.CoreLib.dll:System.Int16.Equals(System.Object) System.Private.CoreLib.dll:System.Int16.GetHashCode() System.Private.CoreLib.dll:System.Int16.GetTypeCode() System.Private.CoreLib.dll:System.Int16.IsNegative(System.Int16) +System.Private.CoreLib.dll:System.Int16.IsOddInteger(System.Int16) +System.Private.CoreLib.dll:System.Int16.LeadingZeroCount(System.Int16) +System.Private.CoreLib.dll:System.Int16.Log2(System.Int16) System.Private.CoreLib.dll:System.Int16.Max(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Min(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -8067,31 +8253,41 @@ System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.System.Numerics.IAdditionOperators.op_Addition(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_LessThan(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int16, System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IDivisionOperators.op_Division(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IEqualityOperators.op_Equality(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IEqualityOperators.op_Inequality(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int16.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int16.System.Numerics.IMultiplyOperators.op_Multiply(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsFinite(System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsInfinity(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsNaN(System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.IsZero(System.Int16) +System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int16, out TOther&) System.Private.CoreLib.dll:System.Int16.System.Numerics.IShiftOperators.op_LeftShift(System.Int16, System.Int32) +System.Private.CoreLib.dll:System.Int16.System.Numerics.IShiftOperators.op_RightShift(System.Int16, System.Int32) System.Private.CoreLib.dll:System.Int16.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Int16.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int16) System.Private.CoreLib.dll:System.Int16.ToString() System.Private.CoreLib.dll:System.Int16.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Int16.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Int16.TryConvertFromChecked`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryConvertFromSaturating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryConvertFromTruncating`1(TOther, out System.Int16&) System.Private.CoreLib.dll:System.Int16.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -8243,6 +8439,7 @@ System.Private.CoreLib.dll:System.Int32 System.Decimal::_flags System.Private.CoreLib.dll:System.Int32 System.Decimal/DecCalc::Scale() System.Private.CoreLib.dll:System.Int32 System.DefaultBinder/BinderState::_originalSize System.Private.CoreLib.dll:System.Int32 System.DefaultBinder/Primitives::value__ +System.Private.CoreLib.dll:System.Int32 System.Delegate/BindToMethodDetails::selfReferentialTarget System.Private.CoreLib.dll:System.Int32 System.Delegate/InvocationListEnumerator`1::_index System.Private.CoreLib.dll:System.Int32 System.DelegateBindingFlags::value__ System.Private.CoreLib.dll:System.Int32 System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes::value__ @@ -8437,6 +8634,14 @@ System.Private.CoreLib.dll:System.Int32 System.IBinaryFloatParseAndFormatInfo`1: System.Private.CoreLib.dll:System.Int32 System.IBinaryFloatParseAndFormatInfo`1::OverflowDecimalExponent() System.Private.CoreLib.dll:System.Int32 System.IBinaryIntegerParseAndFormatInfo`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.IBinaryIntegerParseAndFormatInfo`1::MaxHexDigitCount() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::BufferLength() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::MinExponent() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.IDecimalIeee754ParseAndFormatInfo`2::Precision() System.Private.CoreLib.dll:System.Int32 System.Index::_value System.Private.CoreLib.dll:System.Int32 System.Index::Value() System.Private.CoreLib.dll:System.Int32 System.Int128::System.IBinaryIntegerParseAndFormatInfo.MaxDigitCount() @@ -8448,6 +8653,7 @@ System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParse System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParseAndFormatInfo.MaxHexDigitCount() System.Private.CoreLib.dll:System.Int32 System.Int32::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int32 System.Int32::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int32 System.Int64::System.IBinaryIntegerParseAndFormatInfo.MaxDigitCount() @@ -8498,12 +8704,40 @@ System.Private.CoreLib.dll:System.Int32 System.Memory`1::Length() System.Private.CoreLib.dll:System.Int32 System.MidpointRounding::value__ System.Private.CoreLib.dll:System.Int32 System.Number/BigInteger::_length System.Private.CoreLib.dll:System.Int32 System.Number/BinaryParser`1::MaxDigitCount() +System.Private.CoreLib.dll:System.Int32 System.Number/DecimalIeee754ToIntegerStatus::value__ +System.Private.CoreLib.dll:System.Int32 System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:System.Int32 System.Number/DecodedDecimalIeee754`1::UnbiasedExponent() System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp::e +System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp128::_exponent System.Private.CoreLib.dll:System.Int32 System.Number/HexParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/IHexOrBinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::DigitsCount System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::Scale System.Private.CoreLib.dll:System.Int32 System.Number/ParsingStatus::value__ +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.Precision() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.Precision() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.BufferLength() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.ExponentBias() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MinAdjustedExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MinExponent() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NumberBitsSignificand() +System.Private.CoreLib.dll:System.Int32 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.Precision() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector::Alignment() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector`1::Count() System.Private.CoreLib.dll:System.Int32 System.Numerics.Vector`1::System.Runtime.Intrinsics.ISimdVector,T>.Alignment() @@ -8613,6 +8847,7 @@ System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::Generic System.Private.CoreLib.dll:System.Int32 System.Reflection.SignatureType::MetadataToken() System.Private.CoreLib.dll:System.Int32 System.Reflection.TypeAttributes::value__ System.Private.CoreLib.dll:System.Int32 System.Resources.UltimateResourceFallbackLocation::value__ +System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncStackState::AwaiterOffset System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_initialCacheSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_lastFlushSize System.Private.CoreLib.dll:System.Int32 System.Runtime.CompilerServices.CastCache::_maxCacheSize @@ -8780,7 +9015,6 @@ System.Private.CoreLib.dll:System.Int32 System.Threading.AbandonedMutexException System.Private.CoreLib.dll:System.Int32 System.Threading.CancellationTokenSource/States::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.EventResetMode::value__ System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::_owningThreadId -System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::OwningThreadId() System.Private.CoreLib.dll:System.Int32 System.Threading.Lock::s_staticsInitializationStage System.Private.CoreLib.dll:System.Int32 System.Threading.Lock/Scope::_currentThreadId System.Private.CoreLib.dll:System.Int32 System.Threading.Lock/StaticsInitializationStage::value__ @@ -8900,11 +9134,14 @@ System.Private.CoreLib.dll:System.Int32.CompareTo(System.Object) System.Private.CoreLib.dll:System.Int32.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int32.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int32.DivRem(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Equals(System.Int32) System.Private.CoreLib.dll:System.Int32.Equals(System.Object) System.Private.CoreLib.dll:System.Int32.GetHashCode() System.Private.CoreLib.dll:System.Int32.GetTypeCode() System.Private.CoreLib.dll:System.Int32.IsNegative(System.Int32) +System.Private.CoreLib.dll:System.Int32.IsOddInteger(System.Int32) +System.Private.CoreLib.dll:System.Int32.LeadingZeroCount(System.Int32) System.Private.CoreLib.dll:System.Int32.Log2(System.Int32) System.Private.CoreLib.dll:System.Int32.Max(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.Min(System.Int32, System.Int32) @@ -8935,26 +9172,35 @@ System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int32.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int32.System.Numerics.IAdditionOperators.op_Addition(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_LessThan(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IDivisionOperators.op_Division(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IEqualityOperators.op_Equality(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IEqualityOperators.op_Inequality(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int32.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int32.System.Numerics.IMultiplyOperators.op_Multiply(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsFinite(System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsInfinity(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsNaN(System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.IsZero(System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int32&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int32, out TOther&) System.Private.CoreLib.dll:System.Int32.System.Numerics.IShiftOperators.op_LeftShift(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Int32.System.Numerics.IShiftOperators.op_RightShift(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int32, System.Int32) System.Private.CoreLib.dll:System.Int32.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int32) System.Private.CoreLib.dll:System.Int32.ToString() @@ -9055,6 +9301,7 @@ System.Private.CoreLib.dll:System.Int64 System.Globalization.PersianCalendar::s_ System.Private.CoreLib.dll:System.Int64 System.Int64::m_value System.Private.CoreLib.dll:System.Int64 System.Int64::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Int64 System.Int64::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Int64 System.IO.FileStream::Length() @@ -9112,13 +9359,18 @@ System.Private.CoreLib.dll:System.Int64 System.TimeZoneInfo/DateTimeNowCache::_n System.Private.CoreLib.dll:System.Int64 System.TimeZoneInfo/DateTimeNowCache::_nowUtcOffsetTicks System.Private.CoreLib.dll:System.Int64.CompareTo(System.Int64) System.Private.CoreLib.dll:System.Int64.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Int64.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Int64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Int64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Int64.DivRem(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Equals(System.Int64) System.Private.CoreLib.dll:System.Int64.Equals(System.Object) System.Private.CoreLib.dll:System.Int64.GetHashCode() System.Private.CoreLib.dll:System.Int64.GetTypeCode() System.Private.CoreLib.dll:System.Int64.IsNegative(System.Int64) +System.Private.CoreLib.dll:System.Int64.IsOddInteger(System.Int64) +System.Private.CoreLib.dll:System.Int64.LeadingZeroCount(System.Int64) +System.Private.CoreLib.dll:System.Int64.Log2(System.Int64) System.Private.CoreLib.dll:System.Int64.Max(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Min(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -9148,32 +9400,42 @@ System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.System.Numerics.IAdditionOperators.op_Addition(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_GreaterThan(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_LessThan(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IDivisionOperators.op_Division(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IEqualityOperators.op_Equality(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IEqualityOperators.op_Inequality(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Int64.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Int64.System.Numerics.IMultiplyOperators.op_Multiply(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsFinite(System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsInfinity(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsNaN(System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.IsZero(System.Int64) +System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToChecked`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Int64, out TOther&) System.Private.CoreLib.dll:System.Int64.System.Numerics.IShiftOperators.op_LeftShift(System.Int64, System.Int32) +System.Private.CoreLib.dll:System.Int64.System.Numerics.IShiftOperators.op_RightShift(System.Int64, System.Int32) System.Private.CoreLib.dll:System.Int64.System.Numerics.ISubtractionOperators.op_Subtraction(System.Int64, System.Int64) System.Private.CoreLib.dll:System.Int64.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.Int64) System.Private.CoreLib.dll:System.Int64.ToString() System.Private.CoreLib.dll:System.Int64.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Int64.ToString(System.String) +System.Private.CoreLib.dll:System.Int64.TryConvertFromChecked`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryConvertFromSaturating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryConvertFromTruncating`1(TOther, out System.Int64&) System.Private.CoreLib.dll:System.Int64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -9189,19 +9451,24 @@ System.Private.CoreLib.dll:System.IntPtr System.ArgIterator::_argPtr System.Private.CoreLib.dll:System.IntPtr System.ArgIterator/SigPointer::_ptr System.Private.CoreLib.dll:System.IntPtr System.ComAwareWeakReference::_weakHandle System.Private.CoreLib.dll:System.IntPtr System.ComAwareWeakReference/ComInfo::_pComWeakRef +System.Private.CoreLib.dll:System.IntPtr System.Delegate::_extraData System.Private.CoreLib.dll:System.IntPtr System.Delegate::_methodPtr System.Private.CoreLib.dll:System.IntPtr System.Delegate::_methodPtrAux +System.Private.CoreLib.dll:System.IntPtr System.Delegate::UnmanagedMarker +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::extraData +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::methodPtr +System.Private.CoreLib.dll:System.IntPtr System.Delegate/BindToMethodDetails::methodPtrAux System.Private.CoreLib.dll:System.IntPtr System.Diagnostics.Tracing.EventSource::m_writeEventStringEventHandle System.Private.CoreLib.dll:System.IntPtr System.Exception::_xptrs System.Private.CoreLib.dll:System.IntPtr System.IntPtr::_value System.Private.CoreLib.dll:System.IntPtr System.IntPtr::MaxValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::MinValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.IntPtr System.IntPtr::Zero System.Private.CoreLib.dll:System.IntPtr System.IO.Enumeration.FileSystemEnumerator`1::_directoryHandle -System.Private.CoreLib.dll:System.IntPtr System.MulticastDelegate::_invocationCount System.Private.CoreLib.dll:System.IntPtr System.Reflection.ConstArray::m_constArray System.Private.CoreLib.dll:System.IntPtr System.Reflection.ConstArray::Signature() System.Private.CoreLib.dll:System.IntPtr System.Reflection.FieldAccessor::_addressOrOffset @@ -9282,7 +9549,6 @@ System.Private.CoreLib.dll:System.IntPtr System.RuntimeType::m_cache System.Private.CoreLib.dll:System.IntPtr System.RuntimeType::m_handle System.Private.CoreLib.dll:System.IntPtr System.RuntimeTypeHandle::Value() System.Private.CoreLib.dll:System.IntPtr System.Threading.AutoreleasePool::s_AutoreleasePoolInstance -System.Private.CoreLib.dll:System.IntPtr System.Threading.Lock::LockIdForEvents() System.Private.CoreLib.dll:System.IntPtr System.Threading.LowLevelMonitor::_nativeMonitor System.Private.CoreLib.dll:System.IntPtr System.Threading.Thread::_DONT_USE_InternalThread System.Private.CoreLib.dll:System.IntPtr System.Threading.Thread/DirectOnThreadLocalData::pNativeThread @@ -9296,8 +9562,10 @@ System.Private.CoreLib.dll:System.IntPtr..ctor(System.Int64) System.Private.CoreLib.dll:System.IntPtr..ctor(System.Void*) System.Private.CoreLib.dll:System.IntPtr.CompareTo(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.CompareTo(System.Object) +System.Private.CoreLib.dll:System.IntPtr.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.IntPtr.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.IntPtr.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.IntPtr.DivRem(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Equals(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Equals(System.Object) System.Private.CoreLib.dll:System.IntPtr.get_MaxValue() @@ -9305,29 +9573,41 @@ System.Private.CoreLib.dll:System.IntPtr.get_MinValue() System.Private.CoreLib.dll:System.IntPtr.get_Size() System.Private.CoreLib.dll:System.IntPtr.GetHashCode() System.Private.CoreLib.dll:System.IntPtr.IsNegative(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.IsOddInteger(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.LeadingZeroCount(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.Log2(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Max(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.Min(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.op_Equality(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.op_Inequality(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IAdditionOperators.op_Addition(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IBitwiseOperators.op_OnesComplement(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_GreaterThan(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_LessThan(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IDivisionOperators.op_Division(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IMultiplyOperators.op_Multiply(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsFinite(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsInfinity(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsNaN(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.IsZero(System.IntPtr) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToChecked`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToSaturating`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.INumberBase.TryConvertToTruncating`1(System.IntPtr, out TOther&) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IShiftOperators.op_LeftShift(System.IntPtr, System.Int32) +System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IShiftOperators.op_RightShift(System.IntPtr, System.Int32) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.ISubtractionOperators.op_Subtraction(System.IntPtr, System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.IntPtr) System.Private.CoreLib.dll:System.IntPtr.ToInt64() @@ -9335,6 +9615,7 @@ System.Private.CoreLib.dll:System.IntPtr.ToPointer() System.Private.CoreLib.dll:System.IntPtr.ToString() System.Private.CoreLib.dll:System.IntPtr.ToString(System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.IntPtr.ToString(System.String) +System.Private.CoreLib.dll:System.IntPtr.TryConvertFromChecked`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryConvertFromSaturating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryConvertFromTruncating`1(TOther, out System.IntPtr&) System.Private.CoreLib.dll:System.IntPtr.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -9780,6 +10061,7 @@ System.Private.CoreLib.dll:System.IO.RandomAccess.ReadScatterAtOffset(Microsoft. System.Private.CoreLib.dll:System.IO.RandomAccess.ShouldFallBackToNonOffsetSyscall(Interop/ErrorInfo) System.Private.CoreLib.dll:System.IO.RandomAccess.ValidateInput(Microsoft.Win32.SafeHandles.SafeFileHandle, System.Int64, System.Boolean) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlySpan`1, System.Int64) +System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlySpan`1, System.Int64&) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteAtOffsetAsync(Microsoft.Win32.SafeHandles.SafeFileHandle, System.ReadOnlyMemory`1, System.Int64, System.Threading.CancellationToken, System.IO.Strategies.OSFileStreamStrategy) System.Private.CoreLib.dll:System.IO.RandomAccess.WriteGatherAtOffset(Microsoft.Win32.SafeHandles.SafeFileHandle, System.Collections.Generic.IReadOnlyList`1>, System.Int64) System.Private.CoreLib.dll:System.IO.SearchOption @@ -10046,7 +10328,7 @@ System.Private.CoreLib.dll:System.IRuntimeFieldInfo System.RuntimeFieldHandle::m System.Private.CoreLib.dll:System.IRuntimeFieldInfo.get_Value() System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.Private.CoreLib.dll:System.IRuntimeMethodInfo System.RuntimeMethodHandle::m_value -System.Private.CoreLib.dll:System.IRuntimeMethodInfo.get_Value() +System.Private.CoreLib.dll:System.IRuntimeMethodInfo.GetValue(System.IRuntimeMethodInfo) System.Private.CoreLib.dll:System.ISpanFormattable System.Private.CoreLib.dll:System.ISpanFormattable.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.IUtf8SpanFormattable @@ -10079,8 +10361,8 @@ System.Private.CoreLib.dll:System.Marvin.ComputeHash32OrdinalIgnoreCaseSlow(Syst System.Private.CoreLib.dll:System.Marvin.GenerateSeed() System.Private.CoreLib.dll:System.Marvin.get_DefaultSeed() System.Private.CoreLib.dll:System.Math -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|47_0(System.UInt64, System.UInt64, out System.UInt64&) -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|53_0(System.Double, System.Double) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|45_0(System.UInt64, System.UInt64, out System.UInt64&) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|51_0(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Int32) System.Private.CoreLib.dll:System.Math.Abs(System.Single) @@ -10095,10 +10377,18 @@ System.Private.CoreLib.dll:System.Math.ConvertToUInt32Checked(System.Double) System.Private.CoreLib.dll:System.Math.ConvertToUInt64Checked(System.Double) System.Private.CoreLib.dll:System.Math.CopySign(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Cos(System.Double) +System.Private.CoreLib.dll:System.Math.DivRem(System.Byte, System.Byte) +System.Private.CoreLib.dll:System.Math.DivRem(System.Int16, System.Int16) System.Private.CoreLib.dll:System.Math.DivRem(System.Int32, System.Int32) +System.Private.CoreLib.dll:System.Math.DivRem(System.Int64, System.Int64) +System.Private.CoreLib.dll:System.Math.DivRem(System.IntPtr, System.IntPtr) +System.Private.CoreLib.dll:System.Math.DivRem(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.Math.DivRem(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.Math.DivRem(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.Math.DivRem(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Math.DivRem(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.Math.Floor(System.Double) +System.Private.CoreLib.dll:System.Math.Log2(System.Double) System.Private.CoreLib.dll:System.Math.Max(System.Byte, System.Byte) System.Private.CoreLib.dll:System.Math.Max(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Max(System.Int16, System.Int16) @@ -10135,8 +10425,11 @@ System.Private.CoreLib.dll:System.Math.ThrowNegateTwosCompOverflow() System.Private.CoreLib.dll:System.Math.Truncate(System.Double) System.Private.CoreLib.dll:System.MathF System.Private.CoreLib.dll:System.MathF.Abs(System.Single) +System.Private.CoreLib.dll:System.MathF.Log2(System.Single) System.Private.CoreLib.dll:System.MathF.Max(System.Single, System.Single) System.Private.CoreLib.dll:System.MathF.Min(System.Single, System.Single) +System.Private.CoreLib.dll:System.MathF.ModF(System.Single, System.Single*) +System.Private.CoreLib.dll:System.MathF.Truncate(System.Single) System.Private.CoreLib.dll:System.MdUtf8String System.Private.CoreLib.dll:System.MdUtf8String System.RuntimeType/RuntimeTypeCache/Filter::m_name System.Private.CoreLib.dll:System.MdUtf8String..ctor(System.Byte*, System.Int32) @@ -10197,6 +10490,7 @@ System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAny`1(System.ReadOnlyS System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExcept`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyExceptInRange`1(System.ReadOnlySpan`1, T, T) System.Private.CoreLib.dll:System.MemoryExtensions.IndexOfAnyInRange`1(System.ReadOnlySpan`1, T, T) +System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.LastIndexOf`1(System.ReadOnlySpan`1, T) System.Private.CoreLib.dll:System.MemoryExtensions.Max`1(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.MemoryExtensions.Min`1(System.ReadOnlySpan`1) @@ -10295,29 +10589,6 @@ System.Private.CoreLib.dll:System.ModuleHandle.ResolveTypeHandle(System.Int32) System.Private.CoreLib.dll:System.ModuleHandle.ValidateModulePointer(System.Reflection.RuntimeModule) System.Private.CoreLib.dll:System.MulticastDelegate System.Private.CoreLib.dll:System.MulticastDelegate System.Delegate/InvocationListEnumerator`1::_delegate -System.Private.CoreLib.dll:System.MulticastDelegate.CombineImpl(System.Delegate) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorClosed(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorClosedStatic(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleClosedStatic(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleOpened(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorCollectibleVirtualDispatch(System.Object, System.IntPtr, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorOpened(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorRTClosed(System.Object, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.CtorVirtualDispatch(System.Object, System.IntPtr, System.IntPtr) -System.Private.CoreLib.dll:System.MulticastDelegate.DeleteFromInvocationList(System.Object[], System.Int32, System.Int32, System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.EqualInvocationLists(System.Object[], System.Object[], System.Int32, System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.Equals(System.Object) -System.Private.CoreLib.dll:System.MulticastDelegate.get_HasSingleTarget() -System.Private.CoreLib.dll:System.MulticastDelegate.GetHashCode() -System.Private.CoreLib.dll:System.MulticastDelegate.GetMethodImpl() -System.Private.CoreLib.dll:System.MulticastDelegate.InvocationListEquals(System.MulticastDelegate) -System.Private.CoreLib.dll:System.MulticastDelegate.IsUnmanagedFunctionPtr() -System.Private.CoreLib.dll:System.MulticastDelegate.NewMulticastDelegate(System.Object[], System.Int32, System.Boolean) -System.Private.CoreLib.dll:System.MulticastDelegate.NewMulticastDelegate(System.Object[], System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.RemoveImpl(System.Delegate) -System.Private.CoreLib.dll:System.MulticastDelegate.ThrowNullThisInDelegateToInstance() -System.Private.CoreLib.dll:System.MulticastDelegate.TryGetAt(System.Int32) -System.Private.CoreLib.dll:System.MulticastDelegate.TrySetSlot(System.Object[], System.Int32, System.Object) System.Private.CoreLib.dll:System.MulticastNotSupportedException System.Private.CoreLib.dll:System.MulticastNotSupportedException..ctor() System.Private.CoreLib.dll:System.MulticastNotSupportedException..ctor(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext) @@ -10373,46 +10644,73 @@ System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String, Sy System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String) System.Private.CoreLib.dll:System.Number System.Private.CoreLib.dll:System.Number..cctor() -System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|192_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) -System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|60_0(System.Int128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|52_0(System.Int32, System.Int32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|56_0(System.Int64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|62_0(System.UInt128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|54_0(System.UInt32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|58_0(System.UInt64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__Slow|45_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) -System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|198_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|61_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|53_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|57_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|63_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|55_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|59_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|81_0(System.UInt32) +System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|560_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) +System.Private.CoreLib.dll:System.Number.g__InternalInfinityCompare|3_1`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.g__InternalUnsignedCompare|3_0`2(System.Number/DecodedDecimalIeee754`1, System.Number/DecodedDecimalIeee754`1) +System.Private.CoreLib.dll:System.Number.g__MaterializePreferredZeros|85_0`3(System.Number/NumberBuffer&, System.Span`1) +System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|416_0(System.Int128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|408_0(System.Int32, System.Int32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|412_0(System.Int64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|418_0(System.UInt128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|410_0(System.UInt32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|414_0(System.UInt64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__Slow|401_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.g__ClampExponentOverflow|9_0`2(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|566_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|417_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|409_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|413_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|419_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|411_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|415_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|437_0(System.UInt32) System.Private.CoreLib.dll:System.Number.AccumulateDecimalDigitsIntoBigInteger(System.Number/NumberBuffer&, System.UInt32, System.UInt32, out System.Number/BigInteger&) +System.Private.CoreLib.dll:System.Number.AddDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.AlignmentScaleFactor`2(System.Int32) System.Private.CoreLib.dll:System.Number.AppendUnknownChar`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) System.Private.CoreLib.dll:System.Number.AssembleFloatingPointBits`1(System.UInt64, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.CalculatePower(System.Int32) +System.Private.CoreLib.dll:System.Number.ClassifyIntegerParityDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.CompareDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.ComputeFloat`1(System.Int64, System.UInt64) System.Private.CoreLib.dll:System.Number.ComputeProductApproximation(System.Int32, System.Int64, System.UInt64) System.Private.CoreLib.dll:System.Number.ConsumeTrailingNulls`1(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.ConvertBigIntegerToFloatingPointBits`1(System.Number/BigInteger&, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754`4(TSourceValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToDecimal`2(TValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToFloat`3(TValue) +System.Private.CoreLib.dll:System.Number.ConvertDecimalIeee754ToInteger`3(TValue, System.Boolean) +System.Private.CoreLib.dll:System.Number.ConvertDecimalToDecimalIeee754`2(System.Decimal) +System.Private.CoreLib.dll:System.Number.ConvertFloatToDecimalIeee754`3(TFloat) +System.Private.CoreLib.dll:System.Number.ConvertIntegerToDecimalIeee754`3(TInteger) System.Private.CoreLib.dll:System.Number.CurrencyGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.DecimalIeee754FiniteNumberBinaryEncoding`2(System.Boolean, TValue, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754FromMagnitude`2(System.Boolean, System.UInt128, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754Rounding`2(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Number.DecimalIeee754ToIntegerMagnitude`2(TValue, out System.Boolean&, out System.UInt128&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.DecimalIeee754ToNumber`2(TValue, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.DecimalToNumber(System.Decimal&, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.DigitsToUInt32(System.Byte*, System.Int32) System.Private.CoreLib.dll:System.Number.DigitsToUInt64(System.Byte*, System.Int32) -System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.DivideDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&, out System.Boolean&) System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.DropDigits`2(TValue&, TValue&, System.Int32, System.Boolean&, out System.Int32&) +System.Private.CoreLib.dll:System.Number.EqualsDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.ExtractFractionAndBiasedExponent`1(TNumber, out System.Int32&) System.Private.CoreLib.dll:System.Number.FindSection(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.FormatCurrency`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatDecimal(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.FormatDecimalIeee754`2(TValue, System.String, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.FormatDecimalIeee754`3(System.Collections.Generic.ValueListBuilder`1&, TValue, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatExponent`1(System.Collections.Generic.ValueListBuilder`1&, System.Globalization.NumberFormatInfo, System.Int32, System.Char, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.FormatFixed`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Int32[], System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.FormatFloat`1(TNumber, System.String, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatFloat`2(System.Collections.Generic.ValueListBuilder`1&, TNumber, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatFloatingPointAsHex`2(System.Collections.Generic.ValueListBuilder`1&, TNumber, System.Char, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatGeneral`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Int32, System.Globalization.NumberFormatInfo, System.Char, System.Boolean) +System.Private.CoreLib.dll:System.Number.FormatGeneralAndRoundTripDecimalIeee754`1(System.Collections.Generic.ValueListBuilder`1&, System.Number/NumberBuffer&, System.Char, System.Int32, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.FormatInt128(System.Int128, System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Number.FormatInt32(System.Int32, System.Int32, System.String, System.IFormatProvider) System.Private.CoreLib.dll:System.Number.FormatInt64(System.Int64, System.String, System.IFormatProvider) @@ -10426,9 +10724,12 @@ System.Private.CoreLib.dll:System.Number.get_Pow10DoubleTable() System.Private.CoreLib.dll:System.Number.get_Pow5128Table() System.Private.CoreLib.dll:System.Number.get_TwoDigitsBytes() System.Private.CoreLib.dll:System.Number.get_TwoDigitsCharsAsBytes() +System.Private.CoreLib.dll:System.Number.GetDecimalIeee754HashCode`2(TValue) System.Private.CoreLib.dll:System.Number.GetFloatingPointMaxDigitsAndPrecision(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) System.Private.CoreLib.dll:System.Number.GetHexBase(System.Char) System.Private.CoreLib.dll:System.Number.GetTwoDigitsBytesRef(System.Boolean) +System.Private.CoreLib.dll:System.Number.GreaterThanDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.GreaterThanOrEqualDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.HasNegativeSection(System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.Int128DivMod1E19(System.UInt128&) System.Private.CoreLib.dll:System.Number.Int128ToDecStr(System.Int128) @@ -10444,15 +10745,22 @@ System.Private.CoreLib.dll:System.Number.Int64ToHexChars`1(TChar*, System.UInt64 System.Private.CoreLib.dll:System.Number.Int64ToHexStr(System.Int64, System.Char, System.Int32) System.Private.CoreLib.dll:System.Number.Int64ToNumber(System.Int64, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.IsDigit(System.UInt32) +System.Private.CoreLib.dll:System.Number.IsOddIntegerDecimalIeee754`2(TValue) System.Private.CoreLib.dll:System.Number.IsSpaceReplacingChar(System.UInt32) System.Private.CoreLib.dll:System.Number.IsWhite(System.UInt32) +System.Private.CoreLib.dll:System.Number.IsZeroDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.LessThanDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.LessThanOrEqualDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.MatchChars`1(TChar*, TChar*, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.MatchNegativeSignChars`1(TChar*, TChar*, System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.MultiplyDecimalIeee754`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.NegativeInt128ToDecStr(System.Int128, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NegativeInt32ToDecStr(System.Int32, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NegativeInt64ToDecStr(System.Int64, System.Int32, System.String) System.Private.CoreLib.dll:System.Number.NormalizeSpaceReplacingChar(System.UInt32) System.Private.CoreLib.dll:System.Number.NumberGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.NumberToDecimalIeee754Bits`2(System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.NumberToDecimalIeee754BitsFromWide`2(System.Boolean, TValue, TValue, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.NumberToFloat`1(System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.NumberToFloatingPointBits`1(System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.NumberToFloatingPointBitsSlow`1(System.Number/NumberBuffer&, System.UInt32, System.UInt32, System.UInt32) @@ -10464,19 +10772,27 @@ System.Private.CoreLib.dll:System.Number.ParseEightDigitsUnrolled(System.Byte*) System.Private.CoreLib.dll:System.Number.ParseFloat`2(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.ParseFormatSpecifier(System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.PercentGroupSizes(System.Globalization.NumberFormatInfo) +System.Private.CoreLib.dll:System.Number.PropagateNaN`2(TValue, TValue) System.Private.CoreLib.dll:System.Number.RightShiftWithRounding(System.UInt64, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.RoundNumber(System.Number/NumberBuffer&, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.RoundToZeroOrEpsilon`2(System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.RoundWideToSignificand`2(System.Boolean, TValue, TValue, System.Int32, System.Int32, System.Int32, System.Boolean) +System.Private.CoreLib.dll:System.Number.RoundWideToZeroOrEpsilon`2(System.Boolean, TValue, TValue, System.Int32, System.Boolean) System.Private.CoreLib.dll:System.Number.ShouldRoundUp(System.Boolean, System.Boolean, System.Boolean) +System.Private.CoreLib.dll:System.Number.SinglePassPow10`1(out TValue&) System.Private.CoreLib.dll:System.Number.SpanEqualsOrdinalIgnoreCase`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.SpanStartsWith`1(System.ReadOnlySpan`1, System.ReadOnlySpan`1, System.StringComparison) System.Private.CoreLib.dll:System.Number.SpanStartsWith`1(System.ReadOnlySpan`1, TChar) System.Private.CoreLib.dll:System.Number.SpanTrimStart`1(System.ReadOnlySpan`1) +System.Private.CoreLib.dll:System.Number.SubtractDecimalIeee754`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.ThrowDecimalOverflowException() System.Private.CoreLib.dll:System.Number.ThrowFormatException`1(System.ReadOnlySpan`1) -System.Private.CoreLib.dll:System.Number.ThrowOverflowException(System.String) System.Private.CoreLib.dll:System.Number.ThrowOverflowException`1() System.Private.CoreLib.dll:System.Number.ThrowOverflowOrFormatException`2(System.Number/ParsingStatus, System.ReadOnlySpan`1) System.Private.CoreLib.dll:System.Number.TryCopyTo`1(System.String, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.TryFloatingPointBitsFromMantissa`1(System.UInt64, System.Int32, out System.UInt64&) System.Private.CoreLib.dll:System.Number.TryFormatDecimal`1(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.TryFormatDecimalIeee754`3(TValue, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatFloat`2(TNumber, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatInt128`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatInt32`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) @@ -10533,6 +10849,12 @@ System.Private.CoreLib.dll:System.Number.UInt64ToDecChars`1(TChar*, System.UInt6 System.Private.CoreLib.dll:System.Number.UInt64ToDecStr(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Number.UInt64ToDecStr(System.UInt64) System.Private.CoreLib.dll:System.Number.UInt64ToNumber(System.UInt64, System.Number/NumberBuffer&) +System.Private.CoreLib.dll:System.Number.UnpackDecimalIeee754`2(TValue) +System.Private.CoreLib.dll:System.Number.WideDigitCount`2(TValue, TValue) +System.Private.CoreLib.dll:System.Number.WideDivideByPow10`1(TValue&, TValue&, TValue) +System.Private.CoreLib.dll:System.Number.WideMultiply`1(TValue, TValue, out TValue&, out TValue&) +System.Private.CoreLib.dll:System.Number.WidePow10`1(System.Int32) +System.Private.CoreLib.dll:System.Number.WriteDecimalDigits(System.UInt128, System.Span`1) System.Private.CoreLib.dll:System.Number.WriteDigits`1(System.UInt32, TChar*, System.Int32) System.Private.CoreLib.dll:System.Number.WriteFourDigits`1(System.UInt32, TChar*) System.Private.CoreLib.dll:System.Number.WriteTwoDigits`1(System.UInt32, TChar*) @@ -10569,6 +10891,7 @@ System.Private.CoreLib.dll:System.Number/BigInteger.SetValue(out System.Number/B System.Private.CoreLib.dll:System.Number/BigInteger.SetZero(out System.Number/BigInteger&) System.Private.CoreLib.dll:System.Number/BigInteger.ShiftLeft(System.Int32) System.Private.CoreLib.dll:System.Number/BigInteger.SubtractDivisor(System.Number/BigInteger&, System.Int32, System.Number/BigInteger&, System.UInt64) +System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt128() System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt32() System.Private.CoreLib.dll:System.Number/BigInteger.ToUInt64() System.Private.CoreLib.dll:System.Number/BigInteger/BlocksBuffer @@ -10579,6 +10902,16 @@ System.Private.CoreLib.dll:System.Number/BinaryParser`1.get_MaxDigitCount() System.Private.CoreLib.dll:System.Number/BinaryParser`1.get_MaxDigitValue() System.Private.CoreLib.dll:System.Number/BinaryParser`1.IsValidChar(System.UInt32) System.Private.CoreLib.dll:System.Number/BinaryParser`1.ShiftLeftForNextDigit(TInteger) +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::Finite +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::NaN +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::NegativeInfinity +System.Private.CoreLib.dll:System.Number/DecimalIeee754ToIntegerStatus System.Number/DecimalIeee754ToIntegerStatus::PositiveInfinity +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1 +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1..ctor(System.Boolean, System.Int32, TSignificand) +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_Signed() +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_Significand() +System.Private.CoreLib.dll:System.Number/DecodedDecimalIeee754`1.get_UnbiasedExponent() System.Private.CoreLib.dll:System.Number/DiyFp System.Private.CoreLib.dll:System.Number/DiyFp..ctor(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Number/DiyFp.Create`1(TNumber) @@ -10587,6 +10920,31 @@ System.Private.CoreLib.dll:System.Number/DiyFp.GetBoundaries(System.Int32, out S System.Private.CoreLib.dll:System.Number/DiyFp.Multiply(System.Number/DiyFp&) System.Private.CoreLib.dll:System.Number/DiyFp.Normalize() System.Private.CoreLib.dll:System.Number/DiyFp.Subtract(System.Number/DiyFp&) +System.Private.CoreLib.dll:System.Number/DiyFp128 +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxHalf +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxOne +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxThreeQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128..ctor(System.UInt32, System.Int32, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::InvTrigConstants +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::PiFractionConstants +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Exp10Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::ExpCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperCoshCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperSinhCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Log2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Pow2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::PowLog2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigCosCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigSinCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanNumeratorCoefficients System.Private.CoreLib.dll:System.Number/Grisu3 System.Private.CoreLib.dll:System.Number/Grisu3.BiggestPowerTen(System.UInt32, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Number/Grisu3.get_CachedPowersBinaryExponent() @@ -10621,6 +10979,7 @@ System.Private.CoreLib.dll:System.Number/NumberBuffer.ToString() System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBuffer::Kind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Decimal +System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::DecimalIeee754 System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::FloatingPoint System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Integer System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Unknown @@ -10628,9 +10987,13 @@ System.Private.CoreLib.dll:System.Number/ParsingStatus System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Failed System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::OK System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Overflow +System.Private.CoreLib.dll:System.Number/SqrtCoefficients +System.Private.CoreLib.dll:System.Number/SqrtCoefficients..ctor(System.Single, System.Single, System.Double) +System.Private.CoreLib.dll:System.Number/SqrtCoefficients[] System.Number::s_sqrtTable System.Private.CoreLib.dll:System.Numerics.BitOperations System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|22_0(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|23_0(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.BitOperations.FlipBit(System.UInt32, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.get_Log2DeBruijn() System.Private.CoreLib.dll:System.Numerics.BitOperations.get_TrailingZeroCountDeBruijn() System.Private.CoreLib.dll:System.Numerics.BitOperations.IsPow2(System.Int32) @@ -10640,6 +11003,7 @@ System.Private.CoreLib.dll:System.Numerics.BitOperations.LeadingZeroCount(System System.Private.CoreLib.dll:System.Numerics.BitOperations.LeadingZeroCount(System.UIntPtr) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2(System.UIntPtr) System.Private.CoreLib.dll:System.Numerics.BitOperations.Log2SoftwareFallback(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.PopCount(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.PopCount(System.UInt64) @@ -10649,19 +11013,459 @@ System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UInt3 System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateLeft(System.UIntPtr, System.Int32) System.Private.CoreLib.dll:System.Numerics.BitOperations.RotateRight(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Numerics.BitOperations.RoundUpToPowerOf2(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.TrailingZeroCount(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.TrailingZeroCount(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::One() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128 System.Numerics.Decimal128::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128..cctor() +System.Private.CoreLib.dll:System.Numerics.Decimal128..ctor(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CompareTo(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal128.Equals(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeInfinityValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_NegativeZeroValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_OneValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_PositiveInfinityValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_QuietNaNValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.get_ZeroValue() +System.Private.CoreLib.dll:System.Numerics.Decimal128.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsFinite(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNaN(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNegative(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsNegativeInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsOddInteger(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.IsPositiveInfinity(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Addition(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_CheckedExplicit(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Division(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Equality(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Double) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Half) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Int128) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Numerics.Decimal128) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.Single) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Explicit(System.UInt128) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_GreaterThan(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_GreaterThanOrEqual(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Byte) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Char) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Decimal) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int16) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.Int64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.IntPtr) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.SByte) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt16) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UInt64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Implicit(System.UIntPtr) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Inequality(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_LessThan(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_LessThanOrEqual(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Multiply(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_Subtraction(System.Numerics.Decimal128, System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.op_UnaryNegation(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt128, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal128) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal128.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryConvertFrom`1(TOther, out System.Numerics.Decimal128&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryConvertTo`1(System.Numerics.Decimal128, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal128.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::One() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32 System.Numerics.Decimal32::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32..ctor(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CompareTo(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal32.Equals(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_UInt32Powers10() +System.Private.CoreLib.dll:System.Numerics.Decimal32.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsFinite(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNaN(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNegative(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsNegativeInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsOddInteger(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.IsPositiveInfinity(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Addition(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_CheckedExplicit(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Division(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Equality(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Decimal) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Double) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Half) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int32) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Int64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.IntPtr) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal32) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Numerics.Decimal64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.Single) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt128) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt32) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UInt64) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Explicit(System.UIntPtr) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_GreaterThan(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_GreaterThanOrEqual(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Byte) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Char) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Int16) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Numerics.Decimal32) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.Numerics.Decimal32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.SByte) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Implicit(System.UInt16) => System.Numerics.Decimal32 +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Inequality(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_LessThan(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_LessThanOrEqual(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Multiply(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_Subtraction(System.Numerics.Decimal32, System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.op_UnaryNegation(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal32) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal32.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryConvertFrom`1(TOther, out System.Numerics.Decimal32&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryConvertTo`1(System.Numerics.Decimal32, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal32.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::One() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64 System.Numerics.Decimal64::Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64..ctor(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CompareTo(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CompareTo(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateChecked`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateSaturating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.Numerics.Decimal64.Equals(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.Equals(System.Object) +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_NegativeZero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_One() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_UInt64Powers10() +System.Private.CoreLib.dll:System.Numerics.Decimal64.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.GetHashCode() +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsFinite(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNaN(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNegative(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsNegativeInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsOddInteger(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.IsPositiveInfinity(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Addition(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_CheckedExplicit(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Division(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Equality(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Decimal) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Double) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Half) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Int128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Int64) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.IntPtr) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Byte +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Char +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Decimal +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Double +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Half +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int16 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int32 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Int64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.IntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.SByte +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.Single +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt16 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt32 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UInt64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Numerics.Decimal64) => System.UIntPtr +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.Single) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UInt128) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UInt64) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Explicit(System.UIntPtr) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_GreaterThan(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_GreaterThanOrEqual(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Byte) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Char) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Int16) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Int32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.Numerics.Decimal64) => System.Numerics.Decimal128 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.SByte) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.UInt16) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Implicit(System.UInt32) => System.Numerics.Decimal64 +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Inequality(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_LessThan(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_LessThanOrEqual(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Multiply(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_Subtraction(System.Numerics.Decimal64, System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.op_UnaryNegation(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.ConvertToExponent(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.CountDigits(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.DivRemPow10(System.UInt64, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG0ThroughGwPlus1(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.EncodeExponentToG2ThroughGwPlus3(System.UInt32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_BufferLength() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_ExponentBias() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G0G1Mask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MaxSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MinAdjustedExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MinExponent() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NaN() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NaNMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NegativeInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_NumberBitsSignificand() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_PositiveInfinity() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_Precision() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_SignMask() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.get_Zero() +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsFinite(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNaN(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNegative(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsNegativeInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.IsPositiveInfinity(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.NumberToSignificand(System.Number/NumberBuffer&, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.Power10(System.Int32) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.IDecimalIeee754ParseAndFormatInfo.ToDecStr(System.UInt64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.IsZero(System.Numerics.Decimal64) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToChecked`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.ToString() +System.Private.CoreLib.dll:System.Numerics.Decimal64.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryConvertFrom`1(TOther, out System.Numerics.Decimal64&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryConvertTo`1(System.Numerics.Decimal64, out TOther&) +System.Private.CoreLib.dll:System.Numerics.Decimal64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) System.Private.CoreLib.dll:System.Numerics.IAdditionOperators`3 System.Private.CoreLib.dll:System.Numerics.IAdditionOperators`3.op_Addition(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1 +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.DivRem(TSelf, TSelf) +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.GetByteCount() +System.Private.CoreLib.dll:System.Numerics.IBinaryInteger`1.LeadingZeroCount(TSelf) +System.Private.CoreLib.dll:System.Numerics.IBinaryNumber`1 +System.Private.CoreLib.dll:System.Numerics.IBinaryNumber`1.Log2(TSelf) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3 System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_BitwiseAnd(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_BitwiseOr(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_ExclusiveOr(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IBitwiseOperators`3.op_OnesComplement(TSelf) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3 System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_GreaterThan(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_GreaterThanOrEqual(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_LessThan(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IComparisonOperators`3.op_LessThanOrEqual(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IDivisionOperators`3 +System.Private.CoreLib.dll:System.Numerics.IDivisionOperators`3.op_Division(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3 System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3.op_Equality(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IEqualityOperators`3.op_Inequality(TSelf, TOther) @@ -10673,16 +11477,23 @@ System.Private.CoreLib.dll:System.Numerics.IFloatingPointIeee754`1.get_NegativeZ System.Private.CoreLib.dll:System.Numerics.IFloatingPointIeee754`1.get_PositiveInfinity() System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1 System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1.get_MaxValue() +System.Private.CoreLib.dll:System.Numerics.IMinMaxValue`1.get_MinValue() +System.Private.CoreLib.dll:System.Numerics.IMultiplyOperators`3 +System.Private.CoreLib.dll:System.Numerics.IMultiplyOperators`3.op_Multiply(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.INumber`1 System.Private.CoreLib.dll:System.Numerics.INumberBase`1 +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.get_One() System.Private.CoreLib.dll:System.Numerics.INumberBase`1.get_Zero() System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsFinite(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsInfinity(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsNaN(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsNegative(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsOddInteger(TSelf) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.IsZero(TSelf) +System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromChecked`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromSaturating`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertFromTruncating`1(TOther, out TSelf&) System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToChecked`1(TSelf, out TOther&) @@ -10690,6 +11501,7 @@ System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToSaturating` System.Private.CoreLib.dll:System.Numerics.INumberBase`1.TryConvertToTruncating`1(TSelf, out TOther&) System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3 System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3.op_LeftShift(TSelf, TOther) +System.Private.CoreLib.dll:System.Numerics.IShiftOperators`3.op_RightShift(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.ISubtractionOperators`3 System.Private.CoreLib.dll:System.Numerics.ISubtractionOperators`3.op_Subtraction(TSelf, TOther) System.Private.CoreLib.dll:System.Numerics.IUnaryNegationOperators`2 @@ -10735,12 +11547,15 @@ System.Private.CoreLib.dll:System.Numerics.Vector`1.GetHashCode() System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Addition(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_BitwiseAnd(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_BitwiseOr(System.Numerics.Vector`1, System.Numerics.Vector`1) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Division(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Equality(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_ExclusiveOr(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Explicit(System.Numerics.Vector`1) => System.Numerics.Vector`1 System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Inequality(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_LeftShift(System.Numerics.Vector`1, System.Int32) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Multiply(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_OnesComplement(System.Numerics.Vector`1) +System.Private.CoreLib.dll:System.Numerics.Vector`1.op_RightShift(System.Numerics.Vector`1, System.Int32) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_Subtraction(System.Numerics.Vector`1, System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.op_UnaryNegation(System.Numerics.Vector`1) System.Private.CoreLib.dll:System.Numerics.Vector`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Numerics.Vector`1, System.Numerics.Vector`1, System.Numerics.Vector`1) @@ -10791,7 +11606,6 @@ System.Private.CoreLib.dll:System.Object System.Exception/DispatchState::StackTr System.Private.CoreLib.dll:System.Object System.IAsyncResult::AsyncState() System.Private.CoreLib.dll:System.Object System.IO.Enumeration.FileSystemEnumerator`1::_lock System.Private.CoreLib.dll:System.Object System.Memory`1::_object -System.Private.CoreLib.dll:System.Object System.MulticastDelegate::_invocationList System.Private.CoreLib.dll:System.Object System.ReadOnlyMemory`1::_object System.Private.CoreLib.dll:System.Object System.Reflection.Assembly::s_overriddenEntryAssembly System.Private.CoreLib.dll:System.Object System.Reflection.CustomAttributeTypedArgument::_value @@ -11137,8 +11951,11 @@ System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Decimal/D System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/BigInteger::Pow10BigNumTable() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/BigInteger::Pow10UInt32Table() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/Grisu3::SmallPowersOfTen() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Numerics.Decimal32::UInt32Powers10() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Decimal/DecCalc::UInt64Powers10() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number::Pow5128Table() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Number/Grisu3::CachedPowersSignificand() +System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.Numerics.Decimal64::UInt64Powers10() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlyMemory`1::Span() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlySpan`1::Empty() System.Private.CoreLib.dll:System.ReadOnlySpan`1 System.ReadOnlySpan`1/Enumerator::_span @@ -12611,7 +13428,7 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.InternalLoad(System System.Private.CoreLib.dll:System.Reflection.RuntimeAssembly.InternalLoad(System.Reflection.NativeAssemblyNameParts*, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.StackCrawlMarkHandle, System.Boolean, System.Runtime.CompilerServices.ObjectHandleOnStack, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo..ctor(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, System.Reflection.MethodAttributes, System.Reflection.BindingFlags) -System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.g__LazyCreateSignature|21_0() +System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.g__LazyCreateSignature|19_0() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.CheckCanCreateInstance(System.Type, System.Boolean) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ComputeAndUpdateInvocationFlags() @@ -12644,7 +13461,6 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(Syste System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.Invoke(System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.InvokeClassConstructor() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.IsDefined(System.Type, System.Boolean) -System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ThrowNoInvokeException() System.Private.CoreLib.dll:System.Reflection.RuntimeConstructorInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeCustomAttributeData @@ -12730,8 +13546,8 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimePropertyInfo::m_getterMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo System.Reflection.RuntimePropertyInfo::m_setterMethod System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo..ctor(System.RuntimeMethodHandleInternal, System.RuntimeType, System.RuntimeType/RuntimeTypeCache, System.Reflection.MethodAttributes, System.Reflection.BindingFlags, System.Object) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__IsDisallowedByRefType|98_0(System.Type) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|27_0() +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__IsDisallowedByRefType|96_0(System.Type) +System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.g__LazyCreateSignature|25_0() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CacheEquals(System.Object) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ComputeAndUpdateInvocationFlags() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.CreateDelegate(System.Type) @@ -12775,7 +13591,6 @@ System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.HasSameMetadataDe System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.Invoke(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object[], System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.InvokePropertySetter(System.Object, System.Reflection.BindingFlags, System.Reflection.Binder, System.Object, System.Globalization.CultureInfo) System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.IsDefined(System.Type, System.Boolean) -System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ThrowNoInvokeException() System.Private.CoreLib.dll:System.Reflection.RuntimeMethodInfo.ToString() System.Private.CoreLib.dll:System.Reflection.RuntimeModule @@ -13182,11 +13997,16 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await(Sy System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await(System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await`1(System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Await`1(System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable`1) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaitAwaiterInContinuation`1(System.Int32) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaiterOnCompletedFromContinuation`1(System.Runtime.CompilerServices.Continuation, System.Int32, System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.AwaitTaskWithRareOptions(System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContexts(out System.Threading.Thread&, out System.Threading.ExecutionContext&, out System.Threading.SynchronizationContext&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContinuationContext(System.Object&, System.Runtime.CompilerServices.ContinuationFlags&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureContinuationContextFlags(System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureExecutionContext() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionContinueOnThreadPool(System.Boolean, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionNoContinuationContext(System.Boolean, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CaptureInlinedFrameTransitionWithContinuationContext(System.Boolean, System.Object&, System.Runtime.CompilerServices.ContinuationFlags&, System.Threading.ExecutionContext&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncTask(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncTask`1(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.CreateRuntimeAsyncValueTask(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&) @@ -13197,12 +14017,14 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.FinishSu System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContexts(System.Boolean, System.Threading.Thread, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreContextsOnSuspension(System.Boolean, System.Threading.ExecutionContext, System.Threading.SynchronizationContext) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreExecutionContext(System.Threading.Thread, System.Threading.ExecutionContext) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.RestoreInlinedFrameContexts(System.Threading.ExecutionContext, System.Object, System.Runtime.CompilerServices.ContinuationFlags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ResumeInterpreterContinuation(System.Runtime.CompilerServices.Continuation, System.Byte&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ReturnTaskContinuation(System.Runtime.CompilerServices.RuntimeAsyncTaskContinuation) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend(System.Threading.Tasks.Sources.IValueTaskSource, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend(System.Threading.Tasks.Task, System.Threading.Tasks.ConfigureAwaitOptions) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend`1(System.Threading.Tasks.Sources.IValueTaskSource`1, System.Int16, System.Boolean) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Suspend`1(System.Threading.Tasks.Task`1, System.Threading.Tasks.ConfigureAwaitOptions) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.SwitchToContinuationContext(System.Runtime.CompilerServices.AsyncHelpers/RuntimeAsyncAwaitState&, System.Object, System.Runtime.CompilerServices.ContinuationFlags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TailAwait() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TaskFromException(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TaskFromException`1(System.Exception) @@ -13215,6 +14037,8 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.Transpar System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TransparentSuspend`1(System.Threading.Tasks.Task`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.TransparentSuspend`1(System.Threading.Tasks.ValueTask`1) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaitAwaiter`1(TAwaiter) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaitAwaiterInContinuation`1(System.Int32) +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.UnsafeAwaiterOnCompletedFromContinuation`1(System.Runtime.CompilerServices.Continuation, System.Int32, System.Action) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTaskFromException(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers.ValueTaskFromException`1(System.Exception) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncHelpers/AsyncContexts @@ -13285,9 +14109,10 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::Synchronize System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::Tpl System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/Flags System.Runtime.CompilerServices.AsyncInstrumentation/Flags::UnwindAsyncException +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/IsEnabled +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncInstrumentation/IsEnabled.Tpl(System.Runtime.CompilerServices.AsyncInstrumentation/Flags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore -System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.get_TrackAsyncMethodCompletion() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine, System.Threading.Tasks.Task) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start`1(TStateMachine&) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncProfiler @@ -13310,6 +14135,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilde System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.get_Context() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.get_MoveNextAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext(System.Threading.Thread, System.Runtime.CompilerServices.AsyncInstrumentation/Flags) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1.MoveNext(System.Threading.Thread) System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder System.Private.CoreLib.dll:System.Runtime.CompilerServices.AsyncValueTaskMethodBuilder..cctor() @@ -13512,6 +14338,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags Sys System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ExecutionContextIndexNumBits System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ResultIndexFirstBit System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ResultIndexNumBits +System.Private.CoreLib.dll:System.Runtime.CompilerServices.ContinuationFlags System.Runtime.CompilerServices.ContinuationFlags::ValueTaskAdaptedToTask System.Private.CoreLib.dll:System.Runtime.CompilerServices.CustomConstantAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.CustomConstantAttribute.get_Value() System.Private.CoreLib.dll:System.Runtime.CompilerServices.DateTimeConstantAttribute @@ -13583,6 +14410,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.GenericsStaticsInfo S System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox +System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox System.Runtime.CompilerServices.AsyncProfiler/Info::LastContinuation System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.get_MoveNextAction() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachineBox.MoveNext() System.Private.CoreLib.dll:System.Runtime.CompilerServices.IConfiguredTaskAwaiter @@ -13596,9 +14424,12 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitClass System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitClassSlow(System.Runtime.CompilerServices.MethodTable*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InitHelpers.InitInstantiatedClass(System.Runtime.CompilerServices.MethodTable*, System.Runtime.CompilerServices.MethodDesc*) System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 System.GCMemoryInfoData::_pauseDurations System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.DateTimeRawInfo::num System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray4`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 System.GCMemoryInfoData::_generationInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Buffers.BitVector256::_values System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArrayAttribute @@ -13622,6 +14453,7 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.IteratorStateMachineA System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.get_MethodTable() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc.GetMethodDescChunk() +System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDesc* System.Delegate::MethodDesc() System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodDescChunk* System.Runtime.CompilerServices.MethodDescChunk::Next System.Private.CoreLib.dll:System.Runtime.CompilerServices.MethodTable @@ -14278,6 +15110,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.FieldOffsetAttribute.. System.Private.CoreLib.dll:System.Runtime.InteropServices.FieldOffsetAttribute.get_Value() System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Buffers.MemoryHandle::_handle +System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Delegate/BindToMethodDetails::loaderAllocatorGCHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/NativeObjectWrapper::_proxyHandle System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/NativeObjectWrapper::_proxyHandleTrackingResurrection System.Private.CoreLib.dll:System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.ComWrappers/ReferenceTrackerNativeObjectWrapper::_nativeObjectWrapperWeakHandle @@ -14543,6 +15376,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NativeMemory.Clear(Sys System.Private.CoreLib.dll:System.Runtime.InteropServices.NativeMemory.Free(System.Void*) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::MaxValue() +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::MinValue() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NaN() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NegativeInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime.InteropServices.NFloat::NegativeZero() @@ -14552,19 +15386,24 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat System.Runtime. System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat..ctor(System.Double) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CompareTo(System.Object) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CompareTo(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Equals(System.Object) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Equals(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_MaxValue() +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_MinValue() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NaN() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NegativeInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_NegativeZero() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.get_PositiveInfinity() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.GetHashCode() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsFinite(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsInfinity(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsNaN(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsNegative(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.IsOddInteger(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.Log2(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Addition(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) @@ -14579,6 +15418,7 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExpli System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_CheckedExplicit(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Division(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Equality(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Explicit(System.Decimal) => System.Runtime.InteropServices.NFloat System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Explicit(System.Double) => System.Runtime.InteropServices.NFloat @@ -14619,14 +15459,17 @@ System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Implicit(Sys System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Inequality(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_LessThan(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_LessThanOrEqual(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Multiply(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_Subtraction(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.op_UnaryNegation(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Runtime.InteropServices.NFloat, System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Runtime.InteropServices.NFloat) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.IsZero(System.Runtime.InteropServices.NFloat) +System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Runtime.InteropServices.NFloat&) System.Private.CoreLib.dll:System.Runtime.InteropServices.NFloat.System.Numerics.INumberBase.TryConvertToChecked`1(System.Runtime.InteropServices.NFloat, out TOther&) @@ -14884,6 +15727,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.ISimdVector`2.StoreUnsafe(T System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1 System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Add(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.AddSaturate(T, T) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Divide(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Equals(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ExtractMostSignificantBit(T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.get_AllBitsSet() @@ -14895,6 +15739,7 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.LessThan(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.LessThanOrEqual(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Max(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Min(T, T) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.Multiply(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ObjectEquals(T, T) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ShiftLeft(T, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Scalar`1.ShiftRightArithmetic(T, System.Int32) @@ -15011,10 +15856,12 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Addition(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Division(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Equality(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Inequality(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_LeftShift(System.Runtime.Intrinsics.Vector128`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Multiply(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_OnesComplement(System.Runtime.Intrinsics.Vector128`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_RightShift(System.Runtime.Intrinsics.Vector128`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector128`1.op_Subtraction(System.Runtime.Intrinsics.Vector128`1, System.Runtime.Intrinsics.Vector128`1) @@ -15091,11 +15938,14 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Addition(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Division(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Equality(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Inequality(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_LeftShift(System.Runtime.Intrinsics.Vector256`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Multiply(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_OnesComplement(System.Runtime.Intrinsics.Vector256`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_RightShift(System.Runtime.Intrinsics.Vector256`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_Subtraction(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.op_UnaryNegation(System.Runtime.Intrinsics.Vector256`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector256`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1, System.Runtime.Intrinsics.Vector256`1) @@ -15169,11 +16019,14 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Addition(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Division(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Equality(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Inequality(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_LeftShift(System.Runtime.Intrinsics.Vector512`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Multiply(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_OnesComplement(System.Runtime.Intrinsics.Vector512`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_RightShift(System.Runtime.Intrinsics.Vector512`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_Subtraction(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.op_UnaryNegation(System.Runtime.Intrinsics.Vector512`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector512`1.System.Runtime.Intrinsics.ISimdVector,T>.ConditionalSelect(System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1, System.Runtime.Intrinsics.Vector512`1) @@ -15262,10 +16115,12 @@ System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.GetHashCode() System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Addition(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_BitwiseAnd(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_BitwiseOr(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Division(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Equality(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_ExclusiveOr(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Inequality(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_LeftShift(System.Runtime.Intrinsics.Vector64`1, System.Int32) +System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Multiply(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_OnesComplement(System.Runtime.Intrinsics.Vector64`1) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_RightShift(System.Runtime.Intrinsics.Vector64`1, System.Int32) System.Private.CoreLib.dll:System.Runtime.Intrinsics.Vector64`1.op_Subtraction(System.Runtime.Intrinsics.Vector64`1, System.Runtime.Intrinsics.Vector64`1) @@ -15568,11 +16423,7 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(S System.Private.CoreLib.dll:System.RuntimeMethodHandle.StripMethodInstantiation(System.RuntimeMethodHandleInternal, System.Runtime.CompilerServices.ObjectHandleOnStack) System.Private.CoreLib.dll:System.RuntimeMethodHandle.ToIntPtr(System.RuntimeMethodHandle) System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.IRuntimeMethodInfo::Value() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.RuntimeConstructorInfo::System.IRuntimeMethodInfo.Value() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Reflection.RuntimeMethodInfo::System.IRuntimeMethodInfo.Value() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodHandleInternal::EmptyHandle() -System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeMethodInfoStub::System.IRuntimeMethodInfo.Value() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::_handle System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.RuntimeTypeHandle/IntroducedMethodEnumerator::Current() System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal System.Signature::_pMethod @@ -15583,7 +16434,6 @@ System.Private.CoreLib.dll:System.RuntimeMethodHandleInternal.IsNullHandle() System.Private.CoreLib.dll:System.RuntimeMethodInfoStub System.Private.CoreLib.dll:System.RuntimeMethodInfoStub..ctor(System.RuntimeMethodHandleInternal, System.Object) System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.FromPtr(System.IntPtr) -System.Private.CoreLib.dll:System.RuntimeMethodInfoStub.System.IRuntimeMethodInfo.get_Value() System.Private.CoreLib.dll:System.RuntimeType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.MdFieldInfo::m_fieldType System.Private.CoreLib.dll:System.RuntimeType System.Reflection.Pointer::_ptrType @@ -16036,17 +16886,23 @@ System.Private.CoreLib.dll:System.SByte System.Runtime.InteropServices.Marshalli System.Private.CoreLib.dll:System.SByte System.SByte::m_value System.Private.CoreLib.dll:System.SByte System.SByte::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.SByte System.SByte::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.SByte.CompareTo(System.Object) System.Private.CoreLib.dll:System.SByte.CompareTo(System.SByte) +System.Private.CoreLib.dll:System.SByte.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.SByte.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.SByte.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.SByte.DivRem(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Equals(System.Object) System.Private.CoreLib.dll:System.SByte.Equals(System.SByte) System.Private.CoreLib.dll:System.SByte.GetHashCode() System.Private.CoreLib.dll:System.SByte.GetTypeCode() System.Private.CoreLib.dll:System.SByte.IsNegative(System.SByte) +System.Private.CoreLib.dll:System.SByte.IsOddInteger(System.SByte) +System.Private.CoreLib.dll:System.SByte.LeadingZeroCount(System.SByte) +System.Private.CoreLib.dll:System.SByte.Log2(System.SByte) System.Private.CoreLib.dll:System.SByte.Max(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Min(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -16076,31 +16932,41 @@ System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt16(System.IFor System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.System.Numerics.IAdditionOperators.op_Addition(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IBitwiseOperators.op_OnesComplement(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_GreaterThan(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_LessThan(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.SByte, System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IDivisionOperators.op_Division(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IEqualityOperators.op_Equality(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IEqualityOperators.op_Inequality(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.SByte.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.SByte.System.Numerics.IMultiplyOperators.op_Multiply(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsFinite(System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsInfinity(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsNaN(System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.IsZero(System.SByte) +System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToChecked`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToSaturating`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.INumberBase.TryConvertToTruncating`1(System.SByte, out TOther&) System.Private.CoreLib.dll:System.SByte.System.Numerics.IShiftOperators.op_LeftShift(System.SByte, System.Int32) +System.Private.CoreLib.dll:System.SByte.System.Numerics.IShiftOperators.op_RightShift(System.SByte, System.Int32) System.Private.CoreLib.dll:System.SByte.System.Numerics.ISubtractionOperators.op_Subtraction(System.SByte, System.SByte) System.Private.CoreLib.dll:System.SByte.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.SByte) System.Private.CoreLib.dll:System.SByte.ToString() System.Private.CoreLib.dll:System.SByte.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.SByte.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.SByte.TryConvertFromChecked`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryConvertFromSaturating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryConvertFromTruncating`1(TOther, out System.SByte&) System.Private.CoreLib.dll:System.SByte.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -16168,6 +17034,8 @@ System.Private.CoreLib.dll:System.Signature.Init(System.Runtime.CompilerServices System.Private.CoreLib.dll:System.Signature.Init(System.Void*, System.Int32, System.RuntimeFieldHandleInternal, System.RuntimeMethodHandleInternal) System.Private.CoreLib.dll:System.Single System.Private.CoreLib.dll:System.Single System.Collections.Hashtable::_loadFactor +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::A +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::B System.Private.CoreLib.dll:System.Single System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_r4 System.Private.CoreLib.dll:System.Single System.Single::m_value System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NaN() @@ -16175,12 +17043,14 @@ System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.PositiveInfinity() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.Single System.Threading.PortableThreadPool/HillClimbing/LogEntry::lastHistoryMean System.Private.CoreLib.dll:System.Single.Abs(System.Single) System.Private.CoreLib.dll:System.Single.CompareTo(System.Object) System.Private.CoreLib.dll:System.Single.CompareTo(System.Single) +System.Private.CoreLib.dll:System.Single.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.Single.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.Single.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.Single.Equals(System.Object) @@ -16188,14 +17058,19 @@ System.Private.CoreLib.dll:System.Single.Equals(System.Single) System.Private.CoreLib.dll:System.Single.GetHashCode() System.Private.CoreLib.dll:System.Single.GetTypeCode() System.Private.CoreLib.dll:System.Single.IsFinite(System.Single) +System.Private.CoreLib.dll:System.Single.IsInfinity(System.Single) +System.Private.CoreLib.dll:System.Single.IsInteger(System.Single) System.Private.CoreLib.dll:System.Single.IsNaN(System.Single) System.Private.CoreLib.dll:System.Single.IsNaNOrZero(System.Single) System.Private.CoreLib.dll:System.Single.IsNegative(System.Single) +System.Private.CoreLib.dll:System.Single.IsOddInteger(System.Single) System.Private.CoreLib.dll:System.Single.IsZero(System.Single) +System.Private.CoreLib.dll:System.Single.Log2(System.Single) System.Private.CoreLib.dll:System.Single.Max(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.Min(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_Equality(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_GreaterThan(System.Single, System.Single) +System.Private.CoreLib.dll:System.Single.op_GreaterThanOrEqual(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_Inequality(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_LessThan(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.op_LessThanOrEqual(System.Single, System.Single) @@ -16245,15 +17120,20 @@ System.Private.CoreLib.dll:System.Single.System.IConvertible.ToUInt64(System.IFo System.Private.CoreLib.dll:System.Single.System.Numerics.IAdditionOperators.op_Addition(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.Single, System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IBitwiseOperators.op_OnesComplement(System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.IDivisionOperators.op_Division(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NaN() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NegativeInfinity() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_NegativeZero() System.Private.CoreLib.dll:System.Single.System.Numerics.IFloatingPointIeee754.get_PositiveInfinity() System.Private.CoreLib.dll:System.Single.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.Single.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.Single.System.Numerics.IMultiplyOperators.op_Multiply(System.Single, System.Single) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.IsZero(System.Single) +System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.System.Numerics.INumberBase.TryConvertToChecked`1(System.Single, out TOther&) @@ -16264,6 +17144,7 @@ System.Private.CoreLib.dll:System.Single.System.Numerics.IUnaryNegationOperators System.Private.CoreLib.dll:System.Single.ToString() System.Private.CoreLib.dll:System.Single.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.Single.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Single.Truncate(System.Single) System.Private.CoreLib.dll:System.Single.TryConvertFrom`1(TOther, out System.Single&) System.Private.CoreLib.dll:System.Single.TryConvertTo`1(System.Single, out TOther&) System.Private.CoreLib.dll:System.Single.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -16344,6 +17225,9 @@ System.Private.CoreLib.dll:System.SpanHelpers.IndexOfNullByte(System.Byte*) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfNullCharacter(System.Char*) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfValueType`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.IndexOfValueType`2(TValue&, TValue, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf(System.Byte&, System.Int32, System.Byte&, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf(System.Char&, System.Int32, System.Char&, System.Int32) +System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf`1(T&, System.Int32, T&, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOf`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOfValueType`1(T&, T, System.Int32) System.Private.CoreLib.dll:System.SpanHelpers.LastIndexOfValueType`2(TValue&, TValue, System.Int32) @@ -17199,7 +18083,7 @@ System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1.System.StubHe System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1/SizeHolder System.Private.CoreLib.dll:System.StubHelpers.StructureMarshaler`1/SizeHolder..cctor() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers -System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|18_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) +System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.g____PInvoke|17_0(System.Runtime.CompilerServices.QCallTypeHandle, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*, method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)*) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.AddToCleanupList(System.StubHelpers.CleanupWorkListElement&, System.Runtime.InteropServices.SafeHandle) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CalcVaListSize(System.IntPtr) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CheckStringLength(System.Int32) @@ -17215,7 +18099,6 @@ System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CreateCustomMarshaler( System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.CreateLayoutClassMarshalStubs(System.Runtime.CompilerServices.QCallTypeHandle, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&, out method System.Void *(System.Byte&,System.Byte*,System.StubHelpers.CleanupWorkListElement&)&) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.DestroyCleanupList(System.StubHelpers.CleanupWorkListElement&) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.FreeArrayContents`2(System.Byte*, System.Int32) -System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetDelegateTarget(System.Delegate) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetHRExceptionObject(System.Int32) System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetPendingExceptionObject() System.Private.CoreLib.dll:System.StubHelpers.StubHelpers.GetStubContext() @@ -18089,8 +18972,6 @@ System.Private.CoreLib.dll:System.Threading.Lock.ExitAll() System.Private.CoreLib.dll:System.Threading.Lock.ExitImpl() System.Private.CoreLib.dll:System.Threading.Lock.get_IsHeldByCurrentThread() System.Private.CoreLib.dll:System.Threading.Lock.get_IsSingleProcessor() -System.Private.CoreLib.dll:System.Threading.Lock.get_LockIdForEvents() -System.Private.CoreLib.dll:System.Threading.Lock.get_OwningThreadId() System.Private.CoreLib.dll:System.Threading.Lock.get_ShouldStopPreemptingWaiters() System.Private.CoreLib.dll:System.Threading.Lock.get_WaitEvent() System.Private.CoreLib.dll:System.Threading.Lock.GetOrCreateCondition() @@ -19234,6 +20115,7 @@ System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue System.Threading System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue System.Threading.ThreadPoolWorkQueueThreadLocals::workQueue System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue..cctor() System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue..ctor() +System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.AssignWorkItemQueue(System.Threading.ThreadPoolWorkQueueThreadLocals) System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.CreateThreadLocals() System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.Dequeue(System.Threading.ThreadPoolWorkQueueThreadLocals, System.Boolean&) System.Private.CoreLib.dll:System.Threading.ThreadPoolWorkQueue.Dispatch() @@ -19630,8 +20512,6 @@ System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeResult::timeZoneOffset -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration0 -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration1 System.Private.CoreLib.dll:System.TimeSpan System.Globalization.TimeSpanParse/TimeSpanResult::parsedTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.Threading.Timeout::InfiniteTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MaxValue @@ -20195,6 +21075,25 @@ System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.Runtime.Ser System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.String, System.Exception) System.Private.CoreLib.dll:System.TypeUnloadedException..ctor(System.String) System.Private.CoreLib.dll:System.UInt128 +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::NegativeInfinityValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::NegativeZeroValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::OneValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::PositiveInfinityValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::QuietNaNValue() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::System.IDecimalIeee754ParseAndFormatInfo.Zero() +System.Private.CoreLib.dll:System.UInt128 System.Numerics.Decimal128::ZeroValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::MaxValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::MinValue() System.Private.CoreLib.dll:System.UInt128 System.UInt128::One() @@ -20207,6 +21106,7 @@ System.Private.CoreLib.dll:System.UInt128.g__Divide96BitsBy64Bits|83_3(S System.Private.CoreLib.dll:System.UInt128.g__DivideSlow|83_0(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt128.CompareTo(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt128.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt128.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.UInt128.DivRem(System.UInt128, System.UInt128) @@ -20219,6 +21119,7 @@ System.Private.CoreLib.dll:System.UInt128.get_One() System.Private.CoreLib.dll:System.UInt128.get_Upper() System.Private.CoreLib.dll:System.UInt128.get_Zero() System.Private.CoreLib.dll:System.UInt128.GetHashCode() +System.Private.CoreLib.dll:System.UInt128.IsOddInteger(System.UInt128) System.Private.CoreLib.dll:System.UInt128.LeadingZeroCount(System.UInt128) System.Private.CoreLib.dll:System.UInt128.LeadingZeroCountAsInt32(System.UInt128) System.Private.CoreLib.dll:System.UInt128.Log2(System.UInt128) @@ -20239,8 +21140,14 @@ System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_CheckedExplicit(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Division(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Equality(System.UInt128, System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_ExclusiveOr(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Decimal) => System.UInt128 System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Double) => System.UInt128 System.Private.CoreLib.dll:System.UInt128.op_Explicit(System.Int16) => System.UInt128 @@ -20278,6 +21185,7 @@ System.Private.CoreLib.dll:System.UInt128.op_Inequality(System.UInt128, System.U System.Private.CoreLib.dll:System.UInt128.op_LeftShift(System.UInt128, System.Int32) System.Private.CoreLib.dll:System.UInt128.op_LessThan(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_LessThanOrEqual(System.UInt128, System.UInt128) +System.Private.CoreLib.dll:System.UInt128.op_Modulus(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_Multiply(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_OnesComplement(System.UInt128) System.Private.CoreLib.dll:System.UInt128.op_RightShift(System.UInt128, System.Int32) @@ -20292,10 +21200,13 @@ System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInf System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.IsGreaterThanAsUnsigned(System.UInt128, System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy10(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.IBinaryIntegerParseAndFormatInfo.MultiplyBy16(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsFinite(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsInfinity(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsNaN(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsNegative(System.UInt128) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.IsZero(System.UInt128) +System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt128&) System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt128, out TOther&) @@ -20304,9 +21215,11 @@ System.Private.CoreLib.dll:System.UInt128.System.Numerics.INumberBase, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt128[] System.Numerics.Decimal128::UInt128Powers10 System.Private.CoreLib.dll:System.UInt16 System.Private.CoreLib.dll:System.UInt16 System.Double::System.IBinaryFloatParseAndFormatInfo.DenormalMantissaBits() System.Private.CoreLib.dll:System.UInt16 System.Double::System.IBinaryFloatParseAndFormatInfo.ExponentBits() @@ -20345,16 +21258,22 @@ System.Private.CoreLib.dll:System.UInt16 System.Threading.LowLevelLifoSemaphore/ System.Private.CoreLib.dll:System.UInt16 System.UInt16::m_value System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt16 System.UInt16::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt16.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt16.CompareTo(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt16.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt16.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt16.DivRem(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Equals(System.Object) System.Private.CoreLib.dll:System.UInt16.Equals(System.UInt16) System.Private.CoreLib.dll:System.UInt16.GetHashCode() System.Private.CoreLib.dll:System.UInt16.GetTypeCode() +System.Private.CoreLib.dll:System.UInt16.IsOddInteger(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.LeadingZeroCount(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.Log2(System.UInt16) System.Private.CoreLib.dll:System.UInt16.Max(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Min(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.Parse(System.ReadOnlySpan`1, System.Globalization.NumberStyles, System.IFormatProvider) @@ -20384,32 +21303,42 @@ System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IAdditionOperators.op_Addition(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_LessThan(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt16, System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IDivisionOperators.op_Division(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IEqualityOperators.op_Equality(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IEqualityOperators.op_Inequality(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsFinite(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsInfinity(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsNaN(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsNegative(System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.IsZero(System.UInt16) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt16, out TOther&) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IShiftOperators.op_LeftShift(System.UInt16, System.Int32) +System.Private.CoreLib.dll:System.UInt16.System.Numerics.IShiftOperators.op_RightShift(System.UInt16, System.Int32) System.Private.CoreLib.dll:System.UInt16.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt16, System.UInt16) System.Private.CoreLib.dll:System.UInt16.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt16) System.Private.CoreLib.dll:System.UInt16.ToString() System.Private.CoreLib.dll:System.UInt16.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt16.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt16.TryConvertFromChecked`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryConvertFromSaturating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryConvertFromTruncating`1(TOther, out System.UInt16&) System.Private.CoreLib.dll:System.UInt16.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20446,16 +21375,26 @@ System.Private.CoreLib.dll:System.UInt32 System.Decimal::High() System.Private.CoreLib.dll:System.UInt32 System.Decimal::Low() System.Private.CoreLib.dll:System.UInt32 System.Decimal::Mid() System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::High() +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::Low() +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::Mid() System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::uflags System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::uhi System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::ulo System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc::umid +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U0 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U1 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf12::U2 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U0 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U1 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U2 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf16::U3 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U0 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U1 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U2 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U3 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U4 System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/Buf24::U5 +System.Private.CoreLib.dll:System.UInt32 System.Decimal/DecCalc/PowerOvfl::Hi System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleGroupingData::value__ System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleNumberData::value__ System.Private.CoreLib.dll:System.UInt32 System.Globalization.CultureData/LocaleStringData::value__ @@ -20471,8 +21410,23 @@ System.Private.CoreLib.dll:System.UInt32 System.HashCode::s_seed System.Private.CoreLib.dll:System.UInt32 System.HexConverter/Casing::value__ System.Private.CoreLib.dll:System.UInt32 System.Number/BigInteger/BlocksBuffer::e0 System.Private.CoreLib.dll:System.UInt32 System.Number/BinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Number/DiyFp128::_sign System.Private.CoreLib.dll:System.UInt32 System.Number/HexParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Number/IHexOrBinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::_value +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt32 System.Numerics.Decimal32::System.IDecimalIeee754ParseAndFormatInfo.Zero() System.Private.CoreLib.dll:System.UInt32 System.Reflection.InvocationFlags::value__ System.Private.CoreLib.dll:System.UInt32 System.Runtime.CompilerServices.AsyncInstrumentation/Flags::value__ System.Private.CoreLib.dll:System.UInt32 System.Runtime.CompilerServices.AsyncProfiler/Info::ContinuationIndex @@ -20519,6 +21473,7 @@ System.Private.CoreLib.dll:System.UInt32 System.TimeZoneInfo/TZifHead::TypeCount System.Private.CoreLib.dll:System.UInt32 System.UInt32::m_value System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt32 System.UInt32::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt32.CompareTo(System.Object) @@ -20526,10 +21481,12 @@ System.Private.CoreLib.dll:System.UInt32.CompareTo(System.UInt32) System.Private.CoreLib.dll:System.UInt32.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt32.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt32.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UInt32.DivRem(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.Equals(System.Object) System.Private.CoreLib.dll:System.UInt32.Equals(System.UInt32) System.Private.CoreLib.dll:System.UInt32.GetHashCode() System.Private.CoreLib.dll:System.UInt32.GetTypeCode() +System.Private.CoreLib.dll:System.UInt32.IsOddInteger(System.UInt32) System.Private.CoreLib.dll:System.UInt32.LeadingZeroCount(System.UInt32) System.Private.CoreLib.dll:System.UInt32.Log2(System.UInt32) System.Private.CoreLib.dll:System.UInt32.Max(System.UInt32, System.UInt32) @@ -20561,27 +21518,36 @@ System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt32.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IAdditionOperators.op_Addition(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_LessThan(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt32, System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IDivisionOperators.op_Division(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IEqualityOperators.op_Equality(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IEqualityOperators.op_Inequality(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsFinite(System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsInfinity(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsNaN(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsNegative(System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.IsZero(System.UInt32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt32&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt32, out TOther&) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IShiftOperators.op_LeftShift(System.UInt32, System.Int32) +System.Private.CoreLib.dll:System.UInt32.System.Numerics.IShiftOperators.op_RightShift(System.UInt32, System.Int32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt32, System.UInt32) System.Private.CoreLib.dll:System.UInt32.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt32) System.Private.CoreLib.dll:System.UInt32.ToString() @@ -20613,11 +21579,19 @@ System.Private.CoreLib.dll:System.UInt64 System.Decimal::_lo64 System.Private.CoreLib.dll:System.UInt64 System.Decimal::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc::ulomid +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::High64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::Low64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::uhigh64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf12::ulo64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf16::High64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf16::Low64() +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::High64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::Low64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::Mid64() System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::uhigh64LE System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::ulo64LE System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/Buf24::umid64LE +System.Private.CoreLib.dll:System.UInt64 System.Decimal/DecCalc/PowerOvfl::MidLo System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.DenormalMantissaMask() System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.InfinityBits() System.Private.CoreLib.dll:System.UInt64 System.Double::System.IBinaryFloatParseAndFormatInfo.MaxMantissaFastPath() @@ -20646,12 +21620,33 @@ System.Private.CoreLib.dll:System.UInt64 System.Int128::_upper System.Private.CoreLib.dll:System.UInt64 System.Marvin::k__BackingField System.Private.CoreLib.dll:System.UInt64 System.Marvin::DefaultSeed() System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp::f +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_hi +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_lo +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::High +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::Low +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal128::_lower +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal128::_upper +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::_value +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G0G1Mask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.GwPlus4SignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MaxSignificand() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NaN() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NaNMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.NegativeInfinity() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.PositiveInfinity() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.SignMask() +System.Private.CoreLib.dll:System.UInt64 System.Numerics.Decimal64::System.IDecimalIeee754ParseAndFormatInfo.Zero() System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_00 System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_01 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s0 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s1 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s2 System.Private.CoreLib.dll:System.UInt64 System.Random/XoshiroImpl::_s3 +System.Private.CoreLib.dll:System.UInt64 System.Runtime.CompilerServices.AsyncProfiler/Info::DispatcherId System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.ComWrappers/ManagedObjectWrapper::RefCount System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.Marshalling.ComVariant/UnionTypes::_ui8 System.Private.CoreLib.dll:System.UInt64 System.Runtime.InteropServices.SafeBuffer::ByteLength() @@ -20671,10 +21666,12 @@ System.Private.CoreLib.dll:System.UInt64 System.UInt128::Upper() System.Private.CoreLib.dll:System.UInt64 System.UInt64::m_value System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.IBinaryIntegerParseAndFormatInfo.MaxValueDiv10() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UInt64 System.UInt64::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UInt64.CompareTo(System.Object) System.Private.CoreLib.dll:System.UInt64.CompareTo(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UInt64.CreateTruncating`1(TOther) System.Private.CoreLib.dll:System.UInt64.DivRem(System.UInt64, System.UInt64) @@ -20682,6 +21679,7 @@ System.Private.CoreLib.dll:System.UInt64.Equals(System.Object) System.Private.CoreLib.dll:System.UInt64.Equals(System.UInt64) System.Private.CoreLib.dll:System.UInt64.GetHashCode() System.Private.CoreLib.dll:System.UInt64.GetTypeCode() +System.Private.CoreLib.dll:System.UInt64.IsOddInteger(System.UInt64) System.Private.CoreLib.dll:System.UInt64.LeadingZeroCount(System.UInt64) System.Private.CoreLib.dll:System.UInt64.Log2(System.UInt64) System.Private.CoreLib.dll:System.UInt64.Max(System.UInt64, System.UInt64) @@ -20713,32 +21711,42 @@ System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt16(System.IFo System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt32(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.System.IConvertible.ToUInt64(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IAdditionOperators.op_Addition(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_GreaterThan(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_LessThan(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IDivisionOperators.op_Division(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IEqualityOperators.op_Equality(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IEqualityOperators.op_Inequality(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IMultiplyOperators.op_Multiply(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsFinite(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsInfinity(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsNaN(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsNegative(System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.IsZero(System.UInt64) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToChecked`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UInt64, out TOther&) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IShiftOperators.op_LeftShift(System.UInt64, System.Int32) +System.Private.CoreLib.dll:System.UInt64.System.Numerics.IShiftOperators.op_RightShift(System.UInt64, System.Int32) System.Private.CoreLib.dll:System.UInt64.System.Numerics.ISubtractionOperators.op_Subtraction(System.UInt64, System.UInt64) System.Private.CoreLib.dll:System.UInt64.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UInt64) System.Private.CoreLib.dll:System.UInt64.ToString() System.Private.CoreLib.dll:System.UInt64.ToString(System.IFormatProvider) System.Private.CoreLib.dll:System.UInt64.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UInt64.TryConvertFromChecked`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryConvertFromSaturating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryConvertFromTruncating`1(TOther, out System.UInt64&) System.Private.CoreLib.dll:System.UInt64.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20783,46 +21791,62 @@ System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::_value System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::MaxValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::MinValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.IMinMaxValue.MaxValue() +System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.IMinMaxValue.MinValue() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::System.Numerics.INumberBase.Zero() System.Private.CoreLib.dll:System.UIntPtr System.UIntPtr::Zero System.Private.CoreLib.dll:System.UIntPtr.CompareTo(System.Object) System.Private.CoreLib.dll:System.UIntPtr.CompareTo(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.CreateChecked`1(TOther) System.Private.CoreLib.dll:System.UIntPtr.CreateSaturating`1(TOther) System.Private.CoreLib.dll:System.UIntPtr.CreateTruncating`1(TOther) +System.Private.CoreLib.dll:System.UIntPtr.DivRem(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Equals(System.Object) System.Private.CoreLib.dll:System.UIntPtr.Equals(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.get_MaxValue() System.Private.CoreLib.dll:System.UIntPtr.get_MinValue() System.Private.CoreLib.dll:System.UIntPtr.GetHashCode() +System.Private.CoreLib.dll:System.UIntPtr.IsOddInteger(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.LeadingZeroCount(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.Log2(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Max(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.Min(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.op_Equality(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.op_Inequality(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IAdditionOperators.op_Addition(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBinaryInteger.GetByteCount() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_BitwiseAnd(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_BitwiseOr(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_ExclusiveOr(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IBitwiseOperators.op_OnesComplement(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_GreaterThan(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_GreaterThanOrEqual(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_LessThan(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IComparisonOperators.op_LessThanOrEqual(System.UIntPtr, System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IDivisionOperators.op_Division(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMinMaxValue.get_MaxValue() +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMinMaxValue.get_MinValue() +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IMultiplyOperators.op_Multiply(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.get_One() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.get_Zero() System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsFinite(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsInfinity(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsNaN(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsNegative(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.IsZero(System.UIntPtr) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromChecked`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromSaturating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertFromTruncating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToChecked`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToSaturating`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.INumberBase.TryConvertToTruncating`1(System.UIntPtr, out TOther&) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IShiftOperators.op_LeftShift(System.UIntPtr, System.Int32) +System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IShiftOperators.op_RightShift(System.UIntPtr, System.Int32) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.ISubtractionOperators.op_Subtraction(System.UIntPtr, System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.System.Numerics.IUnaryNegationOperators.op_UnaryNegation(System.UIntPtr) System.Private.CoreLib.dll:System.UIntPtr.ToString() System.Private.CoreLib.dll:System.UIntPtr.ToString(System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromChecked`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromSaturating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryConvertFromTruncating`1(TOther, out System.UIntPtr&) System.Private.CoreLib.dll:System.UIntPtr.TryFormat(System.Span`1, out System.Int32&, System.ReadOnlySpan`1, System.IFormatProvider) @@ -20960,6 +21984,7 @@ System.Private.CoreLib.dll:T System.Reflection.MethodBase/ArgumentData`1::_arg0 System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray2`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray3`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray4`1::t +System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray5`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray8`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.StrongBox`1::Value System.Private.CoreLib.dll:T System.Runtime.InteropServices.GCHandle`1::Target() @@ -21043,9 +22068,12 @@ System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::Negati System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::NegativeZero() System.Private.CoreLib.dll:TSelf System.Numerics.IFloatingPointIeee754`1::PositiveInfinity() System.Private.CoreLib.dll:TSelf System.Numerics.IMinMaxValue`1::MaxValue() +System.Private.CoreLib.dll:TSelf System.Numerics.IMinMaxValue`1::MinValue() System.Private.CoreLib.dll:TSelf System.Numerics.INumberBase`1::One() System.Private.CoreLib.dll:TSelf System.Numerics.INumberBase`1::Zero() System.Private.CoreLib.dll:TSelf System.Runtime.Intrinsics.ISimdVector`2::Zero() +System.Private.CoreLib.dll:TSignificand System.Number/DecodedDecimalIeee754`1::k__BackingField +System.Private.CoreLib.dll:TSignificand System.Number/DecodedDecimalIeee754`1::Significand() System.Private.CoreLib.dll:TState System.Threading.QueueUserWorkItemCallback`1::_state System.Private.CoreLib.dll:TState System.Threading.QueueUserWorkItemCallbackDefaultContext`1::_state System.Private.CoreLib.dll:TStateMachine System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1/AsyncStateMachineBox`1::StateMachine @@ -21060,6 +22088,19 @@ System.Private.CoreLib.dll:TValue System.Collections.Generic.Dictionary`2::Item( System.Private.CoreLib.dll:TValue System.Collections.Generic.Dictionary`2/Entry::value System.Private.CoreLib.dll:TValue System.Collections.Generic.KeyValuePair`2::value System.Private.CoreLib.dll:TValue System.Collections.Generic.KeyValuePair`2::Value() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G0G1Mask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G0ToGwPlus1ExponentMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::G2ToGwPlus3ExponentMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::GwPlus2ToGwPlus4SignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::GwPlus4SignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::MaxSignificand() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::MostSignificantBitOfSignificandMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NaN() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NaNMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::NegativeInfinity() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::PositiveInfinity() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::SignMask() +System.Private.CoreLib.dll:TValue System.IDecimalIeee754ParseAndFormatInfo`2::Zero() System.Private.CoreLib.dll:TValue System.Runtime.CompilerServices.GenericCache`2/Entry::_value System.Private.CoreLib.dll:V System.Reflection.CerHashtable`2::Item(K) System.Private.CoreLib.dll:V[] System.Reflection.CerHashtable`2/Table::m_values diff --git a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-size.txt b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-size.txt index 3e54b3254a30..8012a8e00c04 100644 --- a/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-size.txt +++ b/tests/dotnet/UnitTests/expected/iOS-CoreCLR-R2R-size.txt @@ -1,37 +1,37 @@ -AppBundleSize: 11,019,687 bytes (10,761.4 KB = 10.5 MB) +AppBundleSize: 11,681,831 bytes (11,408.0 KB = 11.1 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Frameworks/libcoreclr.framework/Info.plist: - 822 bytes (0.8 KB = 0.0 MB) + 801 bytes (0.8 KB = 0.0 MB) Frameworks/libcoreclr.framework/libcoreclr: - 4,218,112 bytes (4,119.2 KB = 4.0 MB) + 4,325,328 bytes (4,224.0 KB = 4.1 MB) Frameworks/libSystem.Globalization.Native.framework/Info.plist: - 864 bytes (0.8 KB = 0.0 MB) + 843 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Globalization.Native.framework/libSystem.Globalization.Native: - 90,576 bytes (88.5 KB = 0.1 MB) + 124,608 bytes (121.7 KB = 0.1 MB) Frameworks/libSystem.IO.Compression.Native.framework/Info.plist: - 866 bytes (0.8 KB = 0.0 MB) + 845 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.IO.Compression.Native.framework/libSystem.IO.Compression.Native: - 1,393,600 bytes (1,360.9 KB = 1.3 MB) + 1,438,032 bytes (1,404.3 KB = 1.4 MB) Frameworks/libSystem.Native.framework/Info.plist: - 836 bytes (0.8 KB = 0.0 MB) + 815 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Native.framework/libSystem.Native: - 143,840 bytes (140.5 KB = 0.1 MB) + 178,176 bytes (174.0 KB = 0.2 MB) Frameworks/libSystem.Net.Security.Native.framework/Info.plist: - 862 bytes (0.8 KB = 0.0 MB) + 841 bytes (0.8 KB = 0.0 MB) Frameworks/libSystem.Net.Security.Native.framework/libSystem.Net.Security.Native: - 69,328 bytes (67.7 KB = 0.1 MB) + 103,072 bytes (100.7 KB = 0.1 MB) Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/Info.plist: - 892 bytes (0.9 KB = 0.0 MB) + 871 bytes (0.9 KB = 0.0 MB) Frameworks/libSystem.Security.Cryptography.Native.Apple.framework/libSystem.Security.Cryptography.Native.Apple: - 195,104 bytes (190.5 KB = 0.2 MB) + 249,184 bytes (243.3 KB = 0.2 MB) Frameworks/SizeTestApp.r2r.framework/Info.plist: - 834 bytes (0.8 KB = 0.0 MB) + 813 bytes (0.8 KB = 0.0 MB) Frameworks/SizeTestApp.r2r.framework/SizeTestApp.r2r: - 3,413,064 bytes (3,333.1 KB = 3.3 MB) + 3,660,528 bytes (3,574.7 KB = 3.5 MB) Info.plist: - 1,150 bytes (1.1 KB = 0.0 MB) + 1,129 bytes (1.1 KB = 0.0 MB) Microsoft.iOS.dll: - 65,024 bytes (63.5 KB = 0.1 MB) + 64,000 bytes (62.5 KB = 0.1 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: @@ -39,7 +39,7 @@ runtimeconfig.bin: SizeTestApp: 128,600 bytes (125.6 KB = 0.1 MB) SizeTestApp.dll: - 7,168 bytes (7.0 KB = 0.0 MB) + 6,656 bytes (6.5 KB = 0.0 MB) System.Collections.Immutable.dll: 13,824 bytes (13.5 KB = 0.0 MB) System.Diagnostics.StackTrace.dll: @@ -49,7 +49,7 @@ System.IO.Compression.dll: System.IO.MemoryMappedFiles.dll: 16,896 bytes (16.5 KB = 0.0 MB) System.Private.CoreLib.dll: - 1,168,896 bytes (1,141.5 KB = 1.1 MB) + 1,277,440 bytes (1,247.5 KB = 1.2 MB) System.Reflection.Metadata.dll: 56,832 bytes (55.5 KB = 0.1 MB) System.Runtime.dll: diff --git a/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-preservedapis.txt b/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-preservedapis.txt index e1210885b961..d0d91725eee0 100644 --- a/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-preservedapis.txt @@ -2111,7 +2111,7 @@ System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_IsAsyn System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_IsInvalid() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Path() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_SupportsRandomAccess() -System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeek() +System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeekCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileLength() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.Init(System.String, System.IO.FileMode, System.IO.FileAccess, System.IO.FileShare, System.IO.FileOptions, System.Int64, out System.Int64&, out System.IO.UnixFileMode&) System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.MapUnixFileTypeToFileType(Interop/Sys/FileStatus) @@ -3976,6 +3976,7 @@ System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPoint`1(Syste System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPointExact(System.UInt64, System.UInt32, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96ByConst(System.UInt64&, System.UInt32&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DivByConst(System.UInt32*, System.UInt32, out System.UInt32&, out System.UInt32&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Equals(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.get_High() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_IsNegative() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low64() @@ -4185,6 +4186,7 @@ System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MaxValue() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Double System.Number/SqrtCoefficients::C System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.NFloat::_value System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalDays() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalHours() @@ -4602,11 +4604,6 @@ System.Private.CoreLib.dll:System.GC.register_ephemeron_array(System.Runtime.Eph System.Private.CoreLib.dll:System.GC.ReRegisterForFinalize(System.Object) System.Private.CoreLib.dll:System.GC.SuppressFinalize(System.Object) System.Private.CoreLib.dll:System.GCGenerationInfo -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo0 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo1 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo2 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo3 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo4 System.Private.CoreLib.dll:System.GCMemoryInfo System.Private.CoreLib.dll:System.GCMemoryInfo..ctor(System.GCMemoryInfoData) System.Private.CoreLib.dll:System.GCMemoryInfo.get_HighMemoryLoadThresholdBytes() @@ -5362,9 +5359,10 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globaliz System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::InvariantInfo() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..cctor() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData) -System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|58_0(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|60_0(System.IFormatProvider) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|165_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.AllowHyphenDuringParsing() +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CreateUtf8Cache(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyGroupSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencySymbolTChar`1() @@ -5387,6 +5385,7 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PercentPosi System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetFormat(System.Type) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetUtf8Span(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.InitializeInvariantAndNegativeSignFlags() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NaNSymbolTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NegativeInfinitySymbolTChar`1() @@ -5410,7 +5409,6 @@ System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalizatio System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowLeadingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowParentheses System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowThousands -System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingInvalidCharacters System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingSign System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::Any @@ -5758,6 +5756,7 @@ System.Private.CoreLib.dll:System.Half.get_One() System.Private.CoreLib.dll:System.Half.get_PositiveInfinity() System.Private.CoreLib.dll:System.Half.get_TrailingSignificand() System.Private.CoreLib.dll:System.Half.get_Zero() +System.Private.CoreLib.dll:System.Half.GetCompareKey(System.UInt16) System.Private.CoreLib.dll:System.Half.GetHashCode() System.Private.CoreLib.dll:System.Half.IsFinite(System.Half) System.Private.CoreLib.dll:System.Half.IsNaN(System.Half) @@ -6414,6 +6413,7 @@ System.Private.CoreLib.dll:System.Int32 System.MidpointRounding::value__ System.Private.CoreLib.dll:System.Int32 System.Number/BigInteger::_length System.Private.CoreLib.dll:System.Int32 System.Number/BinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp::e +System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp128::_exponent System.Private.CoreLib.dll:System.Int32 System.Number/HexParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/IHexOrBinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::DigitsCount @@ -7399,8 +7399,8 @@ System.Private.CoreLib.dll:System.Marvin.ComputeHash32OrdinalIgnoreCaseSlow(Syst System.Private.CoreLib.dll:System.Marvin.GenerateSeed() System.Private.CoreLib.dll:System.Marvin.get_DefaultSeed() System.Private.CoreLib.dll:System.Math -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|46_0(System.UInt64, System.UInt64, out System.UInt64&) -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|52_0(System.Double, System.Double) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|44_0(System.UInt64, System.UInt64, out System.UInt64&) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|50_0(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Single) System.Private.CoreLib.dll:System.Math.BigMul(System.UInt32, System.UInt32) @@ -7586,22 +7586,22 @@ System.Private.CoreLib.dll:System.NullReferenceException..ctor() System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String) System.Private.CoreLib.dll:System.Number System.Private.CoreLib.dll:System.Number..cctor() -System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|190_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) -System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|58_0(System.Int128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|50_0(System.Int32, System.Int32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|54_0(System.Int64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|60_0(System.UInt128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|52_0(System.UInt32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|56_0(System.UInt64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__Slow|43_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) -System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|196_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|59_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|51_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|55_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|61_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|53_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|57_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|79_0(System.UInt32) +System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|558_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) +System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|414_0(System.Int128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|406_0(System.Int32, System.Int32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|410_0(System.Int64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|416_0(System.UInt128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|408_0(System.UInt32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|412_0(System.UInt64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__Slow|399_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|564_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|415_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|407_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|411_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|417_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|409_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|413_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|435_0(System.UInt32) System.Private.CoreLib.dll:System.Number.AppendUnknownChar`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) System.Private.CoreLib.dll:System.Number.CalculatePower(System.Int32) System.Private.CoreLib.dll:System.Number.ComputeFloat`1(System.Int64, System.UInt64) @@ -7609,7 +7609,8 @@ System.Private.CoreLib.dll:System.Number.ComputeProductApproximation(System.Int3 System.Private.CoreLib.dll:System.Number.ConsumeTrailingNulls`1(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.CurrencyGroupSizes(System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.DecimalToNumber(System.Decimal&, System.Number/NumberBuffer&) -System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&, out System.Boolean&) System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.ExtractFractionAndBiasedExponent`1(TNumber, out System.Int32&) System.Private.CoreLib.dll:System.Number.FindSection(System.ReadOnlySpan`1, System.Int32) @@ -7664,7 +7665,7 @@ System.Private.CoreLib.dll:System.Number.NumberToStringFormat`1(System.Collectio System.Private.CoreLib.dll:System.Number.ParseFormatSpecifier(System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.PercentGroupSizes(System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.RoundNumber(System.Number/NumberBuffer&, System.Int32, System.Boolean) -System.Private.CoreLib.dll:System.Number.ThrowOverflowException(System.String) +System.Private.CoreLib.dll:System.Number.ThrowDecimalOverflowException() System.Private.CoreLib.dll:System.Number.ThrowOverflowException`1() System.Private.CoreLib.dll:System.Number.TryCopyTo`1(System.String, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatDecimal`1(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) @@ -7764,6 +7765,31 @@ System.Private.CoreLib.dll:System.Number/DiyFp.GetBoundaries(System.Int32, out S System.Private.CoreLib.dll:System.Number/DiyFp.Multiply(System.Number/DiyFp&) System.Private.CoreLib.dll:System.Number/DiyFp.Normalize() System.Private.CoreLib.dll:System.Number/DiyFp.Subtract(System.Number/DiyFp&) +System.Private.CoreLib.dll:System.Number/DiyFp128 +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxHalf +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxOne +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxThreeQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128..ctor(System.UInt32, System.Int32, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::InvTrigConstants +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::PiFractionConstants +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Exp10Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::ExpCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperCoshCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperSinhCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Log2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Pow2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::PowLog2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigCosCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigSinCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanNumeratorCoefficients System.Private.CoreLib.dll:System.Number/Grisu3 System.Private.CoreLib.dll:System.Number/Grisu3.BiggestPowerTen(System.UInt32, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Number/Grisu3.get_CachedPowersBinaryExponent() @@ -7798,6 +7824,7 @@ System.Private.CoreLib.dll:System.Number/NumberBuffer.ToString() System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBuffer::Kind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Decimal +System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::DecimalIeee754 System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::FloatingPoint System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Integer System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Unknown @@ -7805,6 +7832,9 @@ System.Private.CoreLib.dll:System.Number/ParsingStatus System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Failed System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::OK System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Overflow +System.Private.CoreLib.dll:System.Number/SqrtCoefficients +System.Private.CoreLib.dll:System.Number/SqrtCoefficients..ctor(System.Single, System.Single, System.Double) +System.Private.CoreLib.dll:System.Number/SqrtCoefficients[] System.Number::s_sqrtTable System.Private.CoreLib.dll:System.Numerics.BitOperations System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|22_0(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|23_0(System.UInt64) @@ -10753,8 +10783,11 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.FixedBufferAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.FixedBufferAttribute..ctor(System.Type, System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 System.GCMemoryInfoData::_pauseDurations System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray4`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 System.GCMemoryInfoData::_generationInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray6`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Buffers.BitVector256::_values @@ -12200,6 +12233,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.HashData(System.ReadO System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Single System.Private.CoreLib.dll:System.Single System.Collections.Hashtable::_loadFactor +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::A +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::B System.Private.CoreLib.dll:System.Single System.Single::m_value System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MaxValue() @@ -12391,8 +12426,6 @@ System.Private.CoreLib.dll:System.SR.Format(System.String, System.Object) System.Private.CoreLib.dll:System.StackOverflowException System.Private.CoreLib.dll:System.StackOverflowException..ctor() System.Private.CoreLib.dll:System.StackOverflowException..ctor(System.String) -System.Private.CoreLib.dll:System.STAThreadAttribute -System.Private.CoreLib.dll:System.STAThreadAttribute..ctor() System.Private.CoreLib.dll:System.String System.Private.CoreLib.dll:System.String Microsoft.Win32.SafeHandles.SafeFileHandle::_path System.Private.CoreLib.dll:System.String Microsoft.Win32.SafeHandles.SafeFileHandle::Path() @@ -13731,8 +13764,6 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedN System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration0 -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration1 System.Private.CoreLib.dll:System.TimeSpan System.Globalization.TimeSpanParse/TimeSpanResult::parsedTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MaxValue System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MinValue @@ -14533,6 +14564,7 @@ System.Private.CoreLib.dll:System.UInt32 System.HashCode::s_seed System.Private.CoreLib.dll:System.UInt32 System.HexConverter/Casing::value__ System.Private.CoreLib.dll:System.UInt32 System.Number/BigInteger/BlocksBuffer::e0 System.Private.CoreLib.dll:System.UInt32 System.Number/BinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Number/DiyFp128::_sign System.Private.CoreLib.dll:System.UInt32 System.Number/HexParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Number/IHexOrBinaryParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Reflection.Emit.RuntimeAssemblyBuilder::access @@ -14644,6 +14676,10 @@ System.Private.CoreLib.dll:System.UInt64 System.Int128::_upper System.Private.CoreLib.dll:System.UInt64 System.Marvin::k__BackingField System.Private.CoreLib.dll:System.UInt64 System.Marvin::DefaultSeed() System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp::f +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_hi +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_lo +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::High +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::Low System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_00 System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_01 System.Private.CoreLib.dll:System.UInt64 System.Runtime.Intrinsics.Vector64`1::_00 @@ -14843,6 +14879,7 @@ System.Private.CoreLib.dll:T System.Reflection.MethodBase/ArgumentData`1::_arg0 System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray2`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray3`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray4`1::t +System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray5`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray6`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray8`1::t System.Private.CoreLib.dll:T System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1/ManagedToUnmanagedIn::_handle diff --git a/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-size.txt b/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-size.txt index bf087d9aee6e..ac73d94cdbef 100644 --- a/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-size.txt +++ b/tests/dotnet/UnitTests/expected/iOS-MonoVM-interpreter-size.txt @@ -1,7 +1,7 @@ -AppBundleSize: 3,637,027 bytes (3,551.8 KB = 3.5 MB) +AppBundleSize: 3,658,349 bytes (3,572.6 KB = 3.5 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Info.plist: - 1,150 bytes (1.1 KB = 0.0 MB) + 1,168 bytes (1.1 KB = 0.0 MB) Microsoft.iOS.dll: 152,576 bytes (149.0 KB = 0.1 MB) PkgInfo: @@ -9,13 +9,13 @@ PkgInfo: runtimeconfig.bin: 1,405 bytes (1.4 KB = 0.0 MB) SizeTestApp: - 2,369,168 bytes (2,313.6 KB = 2.3 MB) + 2,369,272 bytes (2,313.7 KB = 2.3 MB) SizeTestApp.dll: 7,680 bytes (7.5 KB = 0.0 MB) System.Private.CoreLib.aotdata.arm64: - 41,616 bytes (40.6 KB = 0.0 MB) + 41,824 bytes (40.8 KB = 0.0 MB) System.Private.CoreLib.dll: - 1,053,696 bytes (1,029.0 KB = 1.0 MB) + 1,074,688 bytes (1,049.5 KB = 1.0 MB) System.Runtime.dll: 5,120 bytes (5.0 KB = 0.0 MB) System.Runtime.InteropServices.dll: diff --git a/tests/dotnet/UnitTests/expected/iOS-MonoVM-preservedapis.txt b/tests/dotnet/UnitTests/expected/iOS-MonoVM-preservedapis.txt index 6bd957685436..8c703a05d379 100644 --- a/tests/dotnet/UnitTests/expected/iOS-MonoVM-preservedapis.txt +++ b/tests/dotnet/UnitTests/expected/iOS-MonoVM-preservedapis.txt @@ -1416,7 +1416,7 @@ System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_IsAsyn System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_IsInvalid() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_Path() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.get_SupportsRandomAccess() -System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeek() +System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetCanSeekCore() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.GetFileLength() System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.Init(System.String, System.IO.FileMode, System.IO.FileAccess, System.IO.FileShare, System.IO.FileOptions, System.Int64, out System.Int64&, out System.IO.UnixFileMode&) System.Private.CoreLib.dll:Microsoft.Win32.SafeHandles.SafeFileHandle.MapUnixFileTypeToFileType(Interop/Sys/FileStatus) @@ -3153,6 +3153,7 @@ System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPoint`1(Syste System.Private.CoreLib.dll:System.Decimal/DecCalc.DecimalToFloatingPointExact(System.UInt64, System.UInt32, System.Int32, System.Int32) System.Private.CoreLib.dll:System.Decimal/DecCalc.Div96ByConst(System.UInt64&, System.UInt32&, System.UInt32) System.Private.CoreLib.dll:System.Decimal/DecCalc.DivByConst(System.UInt32*, System.UInt32, out System.UInt32&, out System.UInt32&, System.UInt32) +System.Private.CoreLib.dll:System.Decimal/DecCalc.Equals(System.Decimal&, System.Decimal&) System.Private.CoreLib.dll:System.Decimal/DecCalc.get_High() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_IsNegative() System.Private.CoreLib.dll:System.Decimal/DecCalc.get_Low64() @@ -3351,6 +3352,7 @@ System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IFloatin System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.IMinMaxValue.MaxValue() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.One() System.Private.CoreLib.dll:System.Double System.Double::System.Numerics.INumberBase.Zero() +System.Private.CoreLib.dll:System.Double System.Number/SqrtCoefficients::C System.Private.CoreLib.dll:System.Double System.Runtime.InteropServices.NFloat::_value System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalDays() System.Private.CoreLib.dll:System.Double System.TimeSpan::TotalHours() @@ -3762,11 +3764,6 @@ System.Private.CoreLib.dll:System.GC.register_ephemeron_array(System.Runtime.Eph System.Private.CoreLib.dll:System.GC.ReRegisterForFinalize(System.Object) System.Private.CoreLib.dll:System.GC.SuppressFinalize(System.Object) System.Private.CoreLib.dll:System.GCGenerationInfo -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo0 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo1 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo2 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo3 -System.Private.CoreLib.dll:System.GCGenerationInfo System.GCMemoryInfoData::_generationInfo4 System.Private.CoreLib.dll:System.GCMemoryInfo System.Private.CoreLib.dll:System.GCMemoryInfo..ctor(System.GCMemoryInfoData) System.Private.CoreLib.dll:System.GCMemoryInfo.get_HighMemoryLoadThresholdBytes() @@ -4521,9 +4518,10 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globaliz System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::InvariantInfo() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..cctor() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo..ctor(System.Globalization.CultureData) -System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|58_0(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__GetProviderNonNull|60_0(System.IFormatProvider) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.g__ThrowInvalid|165_0(System.Globalization.NumberStyles) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.AllowHyphenDuringParsing() +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CreateUtf8Cache(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyDecimalSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencyGroupSeparatorTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.CurrencySymbolTChar`1() @@ -4546,6 +4544,7 @@ System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PercentPosi System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.get_PositiveInfinitySymbol() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetFormat(System.Type) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetInstance(System.IFormatProvider) +System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.GetUtf8Span(System.Byte[]&, System.String) System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.InitializeInvariantAndNegativeSignFlags() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NaNSymbolTChar`1() System.Private.CoreLib.dll:System.Globalization.NumberFormatInfo.NegativeInfinitySymbolTChar`1() @@ -4569,7 +4568,6 @@ System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalizatio System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowLeadingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowParentheses System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowThousands -System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingInvalidCharacters System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingSign System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::AllowTrailingWhite System.Private.CoreLib.dll:System.Globalization.NumberStyles System.Globalization.NumberStyles::Any @@ -4915,6 +4913,7 @@ System.Private.CoreLib.dll:System.Half.get_One() System.Private.CoreLib.dll:System.Half.get_PositiveInfinity() System.Private.CoreLib.dll:System.Half.get_TrailingSignificand() System.Private.CoreLib.dll:System.Half.get_Zero() +System.Private.CoreLib.dll:System.Half.GetCompareKey(System.UInt16) System.Private.CoreLib.dll:System.Half.GetHashCode() System.Private.CoreLib.dll:System.Half.IsFinite(System.Half) System.Private.CoreLib.dll:System.Half.IsNaN(System.Half) @@ -5565,6 +5564,7 @@ System.Private.CoreLib.dll:System.Int32 System.MidpointRounding::value__ System.Private.CoreLib.dll:System.Int32 System.Number/BigInteger::_length System.Private.CoreLib.dll:System.Int32 System.Number/BinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp::e +System.Private.CoreLib.dll:System.Int32 System.Number/DiyFp128::_exponent System.Private.CoreLib.dll:System.Int32 System.Number/HexParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/IHexOrBinaryParser`1::MaxDigitCount() System.Private.CoreLib.dll:System.Int32 System.Number/NumberBuffer::DigitsCount @@ -6477,8 +6477,8 @@ System.Private.CoreLib.dll:System.Marvin.ComputeHash32OrdinalIgnoreCaseSlow(Syst System.Private.CoreLib.dll:System.Marvin.GenerateSeed() System.Private.CoreLib.dll:System.Marvin.get_DefaultSeed() System.Private.CoreLib.dll:System.Math -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|46_0(System.UInt64, System.UInt64, out System.UInt64&) -System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|52_0(System.Double, System.Double) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|44_0(System.UInt64, System.UInt64, out System.UInt64&) +System.Private.CoreLib.dll:System.Math.g__SoftwareFallback|50_0(System.Double, System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Double) System.Private.CoreLib.dll:System.Math.Abs(System.Single) System.Private.CoreLib.dll:System.Math.BigMul(System.UInt32, System.UInt32) @@ -6664,22 +6664,22 @@ System.Private.CoreLib.dll:System.NullReferenceException..ctor() System.Private.CoreLib.dll:System.NullReferenceException..ctor(System.String) System.Private.CoreLib.dll:System.Number System.Private.CoreLib.dll:System.Number..cctor() -System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|190_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) -System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|58_0(System.Int128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|50_0(System.Int32, System.Int32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|54_0(System.Int64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|60_0(System.UInt128, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|52_0(System.UInt32, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|56_0(System.UInt64, System.String, System.IFormatProvider) -System.Private.CoreLib.dll:System.Number.g__Slow|43_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) -System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|196_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|59_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|51_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|55_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|61_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|53_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|57_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) -System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|79_0(System.UInt32) +System.Private.CoreLib.dll:System.Number.g__AppendNonAsciiBytes|558_0`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) +System.Private.CoreLib.dll:System.Number.g__FormatInt128Slow|414_0(System.Int128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt32Slow|406_0(System.Int32, System.Int32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatInt64Slow|410_0(System.Int64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt128Slow|416_0(System.UInt128, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt32Slow|408_0(System.UInt32, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__FormatUInt64Slow|412_0(System.UInt64, System.String, System.IFormatProvider) +System.Private.CoreLib.dll:System.Number.g__Slow|399_0(System.Char, System.Int32&, System.Globalization.NumberFormatInfo, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.g__ShouldRoundUp|564_0(System.Byte*, System.Int32, System.Number/NumberBufferKind, System.Boolean) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt128Slow|415_0`1(System.Int128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt32Slow|407_0`1(System.Int32, System.Int32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatInt64Slow|411_0`1(System.Int64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt128Slow|417_0`1(System.UInt128, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt32Slow|409_0`1(System.UInt32, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__TryFormatUInt64Slow|413_0`1(System.UInt64, System.ReadOnlySpan`1, System.IFormatProvider, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.g__CreateAndCacheString|435_0(System.UInt32) System.Private.CoreLib.dll:System.Number.AppendUnknownChar`1(System.Collections.Generic.ValueListBuilder`1&, System.Char) System.Private.CoreLib.dll:System.Number.CalculatePower(System.Int32) System.Private.CoreLib.dll:System.Number.ComputeFloat`1(System.Int64, System.UInt64) @@ -6687,7 +6687,8 @@ System.Private.CoreLib.dll:System.Number.ComputeProductApproximation(System.Int3 System.Private.CoreLib.dll:System.Number.ConsumeTrailingNulls`1(System.ReadOnlySpan`1, System.Int32) System.Private.CoreLib.dll:System.Number.CurrencyGroupSizes(System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.DecimalToNumber(System.Decimal&, System.Number/NumberBuffer&) -System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&) +System.Private.CoreLib.dll:System.Number.Dragon4(System.UInt64, System.Int32, System.UInt32, System.Boolean, System.Int32, System.Boolean, System.Span`1, out System.Int32&, out System.Boolean&) +System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&, out System.Boolean&) System.Private.CoreLib.dll:System.Number.Dragon4`1(TNumber, System.Int32, System.Boolean, System.Number/NumberBuffer&) System.Private.CoreLib.dll:System.Number.ExtractFractionAndBiasedExponent`1(TNumber, out System.Int32&) System.Private.CoreLib.dll:System.Number.FindSection(System.ReadOnlySpan`1, System.Int32) @@ -6742,7 +6743,7 @@ System.Private.CoreLib.dll:System.Number.NumberToStringFormat`1(System.Collectio System.Private.CoreLib.dll:System.Number.ParseFormatSpecifier(System.ReadOnlySpan`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.PercentGroupSizes(System.Globalization.NumberFormatInfo) System.Private.CoreLib.dll:System.Number.RoundNumber(System.Number/NumberBuffer&, System.Int32, System.Boolean) -System.Private.CoreLib.dll:System.Number.ThrowOverflowException(System.String) +System.Private.CoreLib.dll:System.Number.ThrowDecimalOverflowException() System.Private.CoreLib.dll:System.Number.ThrowOverflowException`1() System.Private.CoreLib.dll:System.Number.TryCopyTo`1(System.String, System.Span`1, out System.Int32&) System.Private.CoreLib.dll:System.Number.TryFormatDecimal`1(System.Decimal, System.ReadOnlySpan`1, System.Globalization.NumberFormatInfo, System.Span`1, out System.Int32&) @@ -6842,6 +6843,31 @@ System.Private.CoreLib.dll:System.Number/DiyFp.GetBoundaries(System.Int32, out S System.Private.CoreLib.dll:System.Number/DiyFp.Multiply(System.Number/DiyFp&) System.Private.CoreLib.dll:System.Number/DiyFp.Normalize() System.Private.CoreLib.dll:System.Number/DiyFp.Subtract(System.Number/DiyFp&) +System.Private.CoreLib.dll:System.Number/DiyFp128 +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxHalf +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxOne +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128 System.Number::UxThreeQuarter +System.Private.CoreLib.dll:System.Number/DiyFp128..ctor(System.UInt32, System.Int32, System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::InvTrigConstants +System.Private.CoreLib.dll:System.Number/DiyFp128[] System.Number::PiFractionConstants +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient..ctor(System.UInt64, System.UInt64) +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Exp10Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::ExpCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperCoshCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::HyperSinhCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAsinNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::InvTrigAtanNumeratorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Log2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::Pow2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::PowLog2Coefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigCosCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigSinCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanDenominatorCoefficients +System.Private.CoreLib.dll:System.Number/DiyFp128FixedCoefficient[] System.Number::TrigTanNumeratorCoefficients System.Private.CoreLib.dll:System.Number/Grisu3 System.Private.CoreLib.dll:System.Number/Grisu3.BiggestPowerTen(System.UInt32, System.Int32, out System.Int32&) System.Private.CoreLib.dll:System.Number/Grisu3.get_CachedPowersBinaryExponent() @@ -6876,6 +6902,7 @@ System.Private.CoreLib.dll:System.Number/NumberBuffer.ToString() System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBuffer::Kind System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Decimal +System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::DecimalIeee754 System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::FloatingPoint System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Integer System.Private.CoreLib.dll:System.Number/NumberBufferKind System.Number/NumberBufferKind::Unknown @@ -6883,6 +6910,9 @@ System.Private.CoreLib.dll:System.Number/ParsingStatus System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Failed System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::OK System.Private.CoreLib.dll:System.Number/ParsingStatus System.Number/ParsingStatus::Overflow +System.Private.CoreLib.dll:System.Number/SqrtCoefficients +System.Private.CoreLib.dll:System.Number/SqrtCoefficients..ctor(System.Single, System.Single, System.Double) +System.Private.CoreLib.dll:System.Number/SqrtCoefficients[] System.Number::s_sqrtTable System.Private.CoreLib.dll:System.Numerics.BitOperations System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|22_0(System.UInt32) System.Private.CoreLib.dll:System.Numerics.BitOperations.g__SoftwareFallback|23_0(System.UInt64) @@ -8464,8 +8494,11 @@ System.Private.CoreLib.dll:System.Runtime.CompilerServices.FixedBufferAttribute System.Private.CoreLib.dll:System.Runtime.CompilerServices.FixedBufferAttribute..ctor(System.Type, System.Int32) System.Private.CoreLib.dll:System.Runtime.CompilerServices.IAsyncStateMachine System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray2`1 System.GCMemoryInfoData::_pauseDurations System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray3`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray4`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 +System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray5`1 System.GCMemoryInfoData::_generationInfo System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArray8`1 System.Buffers.BitVector256::_values System.Private.CoreLib.dll:System.Runtime.CompilerServices.InlineArrayAttribute @@ -9838,6 +9871,8 @@ System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Drain(System.Span`1, System.Span`1) System.Private.CoreLib.dll:System.Sha1ForNonSecretPurposes.Start(System.Span`1) System.Private.CoreLib.dll:System.Single +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::A +System.Private.CoreLib.dll:System.Single System.Number/SqrtCoefficients::B System.Private.CoreLib.dll:System.Single System.Single::m_value System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IFloatingPointIeee754.NegativeZero() System.Private.CoreLib.dll:System.Single System.Single::System.Numerics.IMinMaxValue.MaxValue() @@ -10028,8 +10063,6 @@ System.Private.CoreLib.dll:System.SR.Format(System.String, System.Object) System.Private.CoreLib.dll:System.StackOverflowException System.Private.CoreLib.dll:System.StackOverflowException..ctor() System.Private.CoreLib.dll:System.StackOverflowException..ctor(System.String) -System.Private.CoreLib.dll:System.STAThreadAttribute -System.Private.CoreLib.dll:System.STAThreadAttribute..ctor() System.Private.CoreLib.dll:System.String System.Private.CoreLib.dll:System.String Microsoft.Win32.SafeHandles.SafeFileHandle::_path System.Private.CoreLib.dll:System.String Microsoft.Win32.SafeHandles.SafeFileHandle::Path() @@ -11286,8 +11319,6 @@ System.Private.CoreLib.dll:System.ThrowHelper.ThrowValueArgumentOutOfRange_NeedN System.Private.CoreLib.dll:System.TimeSpan System.Private.CoreLib.dll:System.TimeSpan System.DateTime::TimeOfDay() System.Private.CoreLib.dll:System.TimeSpan System.DateTimeOffset::Offset() -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration0 -System.Private.CoreLib.dll:System.TimeSpan System.GCMemoryInfoData::_pauseDuration1 System.Private.CoreLib.dll:System.TimeSpan System.Globalization.TimeSpanParse/TimeSpanResult::parsedTimeSpan System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MaxValue System.Private.CoreLib.dll:System.TimeSpan System.TimeSpan::MinValue @@ -11994,6 +12025,7 @@ System.Private.CoreLib.dll:System.UInt32 System.HashCode::s_seed System.Private.CoreLib.dll:System.UInt32 System.HexConverter/Casing::value__ System.Private.CoreLib.dll:System.UInt32 System.Number/BigInteger/BlocksBuffer::e0 System.Private.CoreLib.dll:System.UInt32 System.Number/BinaryParser`1::MaxDigitValue() +System.Private.CoreLib.dll:System.UInt32 System.Number/DiyFp128::_sign System.Private.CoreLib.dll:System.UInt32 System.Number/HexParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Number/IHexOrBinaryParser`1::MaxDigitValue() System.Private.CoreLib.dll:System.UInt32 System.Reflection.InvocationFlags::value__ @@ -12104,6 +12136,10 @@ System.Private.CoreLib.dll:System.UInt64 System.Int128::_upper System.Private.CoreLib.dll:System.UInt64 System.Marvin::k__BackingField System.Private.CoreLib.dll:System.UInt64 System.Marvin::DefaultSeed() System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp::f +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_hi +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128::_lo +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::High +System.Private.CoreLib.dll:System.UInt64 System.Number/DiyFp128FixedCoefficient::Low System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_00 System.Private.CoreLib.dll:System.UInt64 System.Numerics.Vector`1::_01 System.Private.CoreLib.dll:System.UInt64 System.Runtime.Intrinsics.Vector64`1::_00 @@ -12300,6 +12336,7 @@ System.Private.CoreLib.dll:T System.Reflection.MethodBase/ArgumentData`1::_arg0 System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray2`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray3`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray4`1::t +System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray5`1::t System.Private.CoreLib.dll:T System.Runtime.CompilerServices.InlineArray8`1::t System.Private.CoreLib.dll:T System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1/ManagedToUnmanagedIn::_handle System.Private.CoreLib.dll:T System.Runtime.InteropServices.Marshalling.SafeHandleMarshaller`1/ManagedToUnmanagedOut::_newHandle diff --git a/tests/dotnet/UnitTests/expected/iOS-MonoVM-size.txt b/tests/dotnet/UnitTests/expected/iOS-MonoVM-size.txt index e403e0659d25..56b7be60261e 100644 --- a/tests/dotnet/UnitTests/expected/iOS-MonoVM-size.txt +++ b/tests/dotnet/UnitTests/expected/iOS-MonoVM-size.txt @@ -1,11 +1,11 @@ -AppBundleSize: 9,866,111 bytes (9,634.9 KB = 9.4 MB) +AppBundleSize: 9,884,137 bytes (9,652.5 KB = 9.4 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: aot-instances.aotdata.arm64: - 888,296 bytes (867.5 KB = 0.8 MB) + 888,672 bytes (867.8 KB = 0.8 MB) Info.plist: - 1,150 bytes (1.1 KB = 0.0 MB) + 1,168 bytes (1.1 KB = 0.0 MB) Microsoft.iOS.aotdata.arm64: - 24,168 bytes (23.6 KB = 0.0 MB) + 24,120 bytes (23.6 KB = 0.0 MB) Microsoft.iOS.dll: 49,152 bytes (48.0 KB = 0.0 MB) PkgInfo: @@ -13,15 +13,15 @@ PkgInfo: runtimeconfig.bin: 1,481 bytes (1.4 KB = 0.0 MB) SizeTestApp: - 7,598,440 bytes (7,420.4 KB = 7.2 MB) + 7,614,944 bytes (7,436.5 KB = 7.3 MB) SizeTestApp.aotdata.arm64: 1,464 bytes (1.4 KB = 0.0 MB) SizeTestApp.dll: 7,680 bytes (7.5 KB = 0.0 MB) System.Private.CoreLib.aotdata.arm64: - 719,760 bytes (702.9 KB = 0.7 MB) + 719,912 bytes (703.0 KB = 0.7 MB) System.Private.CoreLib.dll: - 563,200 bytes (550.0 KB = 0.5 MB) + 564,224 bytes (551.0 KB = 0.5 MB) System.Runtime.aotdata.arm64: 784 bytes (0.8 KB = 0.0 MB) System.Runtime.dll: diff --git a/tests/dotnet/UnitTests/expected/iOS-NativeAOT-TrimmableStatic-size.txt b/tests/dotnet/UnitTests/expected/iOS-NativeAOT-TrimmableStatic-size.txt index 2c7644031db7..10a746898600 100644 --- a/tests/dotnet/UnitTests/expected/iOS-NativeAOT-TrimmableStatic-size.txt +++ b/tests/dotnet/UnitTests/expected/iOS-NativeAOT-TrimmableStatic-size.txt @@ -1,10 +1,10 @@ -AppBundleSize: 2,272,023 bytes (2,218.8 KB = 2.2 MB) +AppBundleSize: 2,288,507 bytes (2,234.9 KB = 2.2 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Info.plist: - 1,159 bytes (1.1 KB = 0.0 MB) + 1,171 bytes (1.1 KB = 0.0 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,888 bytes (1.8 KB = 0.0 MB) SizeTestApp: - 2,268,968 bytes (2,215.8 KB = 2.2 MB) + 2,285,440 bytes (2,231.9 KB = 2.2 MB) diff --git a/tests/dotnet/UnitTests/expected/iOS-NativeAOT-size.txt b/tests/dotnet/UnitTests/expected/iOS-NativeAOT-size.txt index 2c7644031db7..10a746898600 100644 --- a/tests/dotnet/UnitTests/expected/iOS-NativeAOT-size.txt +++ b/tests/dotnet/UnitTests/expected/iOS-NativeAOT-size.txt @@ -1,10 +1,10 @@ -AppBundleSize: 2,272,023 bytes (2,218.8 KB = 2.2 MB) +AppBundleSize: 2,288,507 bytes (2,234.9 KB = 2.2 MB) # The following list of files and their sizes is just informational / for review, and isn't used in the test: Info.plist: - 1,159 bytes (1.1 KB = 0.0 MB) + 1,171 bytes (1.1 KB = 0.0 MB) PkgInfo: 8 bytes (0.0 KB = 0.0 MB) runtimeconfig.bin: 1,888 bytes (1.8 KB = 0.0 MB) SizeTestApp: - 2,268,968 bytes (2,215.8 KB = 2.2 MB) + 2,285,440 bytes (2,231.9 KB = 2.2 MB) diff --git a/tests/linker/dont link/dotnet/shared.csproj b/tests/linker/dont link/dotnet/shared.csproj index 14deb4445c73..50a90583c556 100644 --- a/tests/linker/dont link/dotnet/shared.csproj +++ b/tests/linker/dont link/dotnet/shared.csproj @@ -9,6 +9,16 @@ $(MtouchLink) $(RootTestsDirectory)\linker\dont link + + false + $(NoWarn);IL2057