Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanner Gooding <tagoo@outlook.com>2022-05-19 07:41:17 +0300
committerGitHub <noreply@github.com>2022-05-19 07:41:17 +0300
commit7f9ed8f271df8fb83862b3812d9c490e4ff74711 (patch)
tree026f445cd096316bb34188757c5a6f918899bd8e /THIRD-PARTY-NOTICES.TXT
parentd8fe9cde5c746843478a6f55ae5582e0738b10a8 (diff)
Adding Int128 and UInt128 with a base software implementation (#69204)
* Adding barebones Int128 and UInt128 structs * Special case Int128 and UInt128 alignment on x64 Unix and Arm64 * Implementing Int128 and UInt128 * Adding tests for Int128 and UInt128 * Updating Int128/UInt128 to respect the System V ABI ordering * Fixing an issue with UInt128->BigInteger setting the wrong sign * Don't use Unsafe.As in the Int128/UInt128 hex parsing logic * Adding Int128 P/Invoke tests and ensure R2R correctly sets the packing * Fixing some issues with the Int128 interop test for non-Windows * Ensure that floating-point conversions exist for Int128 and UInt128 * Fixing the casing of a couple fields * Revert "Don't use Unsafe.As in the Int128/UInt128 hex parsing logic" This reverts commit 09e8bfc52d5b1b7f7b341f318bf1046b19768dd3. * Adjusting the Int128/UInt128 generic math tests to have consistent ordering * Responding to PR feedback * Ensure that pNativeLayoutInfo alignment is initialized for Int128/UInt128 * Don't use Unsafe.As in the Int128/UInt128 hex parsing logic * Skip the Interop/PInvoke/Int128 tests on Mono
Diffstat (limited to 'THIRD-PARTY-NOTICES.TXT')
-rw-r--r--THIRD-PARTY-NOTICES.TXT28
1 files changed, 27 insertions, 1 deletions
diff --git a/THIRD-PARTY-NOTICES.TXT b/THIRD-PARTY-NOTICES.TXT
index fc250aa043e..307da15465c 100644
--- a/THIRD-PARTY-NOTICES.TXT
+++ b/THIRD-PARTY-NOTICES.TXT
@@ -1072,4 +1072,30 @@ Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
Available at
-https://github.com/microsoft/msquic/blob/main/LICENSE \ No newline at end of file
+https://github.com/microsoft/msquic/blob/main/LICENSE
+
+License notice for m-ou-se/floatconv
+-------------------------------
+
+Copyright (c) 2020 Mara Bos <m-ou.se@m-ou.se>
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.