[Mingw-w64-public] [PATCH 2/2] crt/libsrc: Include directmanipulation.h in uuid library.

2020-11-13 Thread Biswapriyo Nath
From 41e508b51a61366f73e8f2f1b771568e32ab9301 Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Fri, 13 Nov 2020 17:56:57 +0530 Subject: [PATCH 2/2] crt/libsrc: Include directmanipulation.h in uuid library. Signed-off-by: Biswapriyo Nath --- mingw-w64-crt/libsrc/uuid.c | 1 + 1 file changed

[Mingw-w64-public] [PATCH 1/2] headers: Import directmanipulation.idl from Wine.

2020-11-13 Thread Biswapriyo Nath
From 03fc5abe0a87bd7f3c3c7dd63c5b9ff4e3a6320b Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Fri, 13 Nov 2020 17:56:57 +0530 Subject: [PATCH 1/2] headers: Import directmanipulation.idl from Wine. Signed-off-by: Biswapriyo Nath --- mingw-w64-headers/Makefile.am| 1 + mingw-w64-headers

Re: [Mingw-w64-public] [PATCH v2] crt: Make log2() return exact results for powers of two

2020-11-13 Thread Martin Storsjö
On Fri, 13 Nov 2020, Liu Hao wrote: 在 2020/11/13 下午5:44, Martin Storsjö 写道: These routines are used on msvcrt.dll on arm, which only provides log(). For exact powers of two, produce an exact result instead of one that only is numerically close. Defer to the normal implementation for anything o

Re: [Mingw-w64-public] [PATCH v2] crt: Make log2() return exact results for powers of two

2020-11-13 Thread Liu Hao
在 2020/11/13 下午5:44, Martin Storsjö 写道: > These routines are used on msvcrt.dll on arm, which only provides > log(). For exact powers of two, produce an exact result instead > of one that only is numerically close. > > Defer to the normal implementation for anything other than the > simple cases (

Re: [Mingw-w64-public] [PATCH] crt: Make log2() return exact results for powers of two

2020-11-13 Thread Martin Storsjö
On Fri, 13 Nov 2020, Liu Hao wrote: 在 2020/11/13 下午5:04, Martin Storsjö 写道: These routines are used on msvcrt.dll on arm, which only provides log(). For exact powers of two, produce an exact result instead of one that only is numerically close. Defer to the normal implementation for anything o

[Mingw-w64-public] [PATCH v2] crt: Make log2() return exact results for powers of two

2020-11-13 Thread Martin Storsjö
These routines are used on msvcrt.dll on arm, which only provides log(). For exact powers of two, produce an exact result instead of one that only is numerically close. Defer to the normal implementation for anything other than the simple cases (negative values, denormals, infinities, etc). Signe

Re: [Mingw-w64-public] [PATCH] crt: Make log2() return exact results for powers of two

2020-11-13 Thread Liu Hao
在 2020/11/13 下午5:04, Martin Storsjö 写道: > These routines are used on msvcrt.dll on arm, which only provides > log(). For exact powers of two, produce an exact result instead > of one that only is numerically close. > > Defer to the normal implementation for anything other than the > simple cases (

[Mingw-w64-public] [PATCH] crt: Make log2() return exact results for powers of two

2020-11-13 Thread Martin Storsjö
These routines are used on msvcrt.dll on arm, which only provides log(). For exact powers of two, produce an exact result instead of one that only is numerically close. Defer to the normal implementation for anything other than the simple cases (negative values, denormals, infinities, etc). Signe