Re: [PATCH v13 1/3] lib: Add strongly typed 64bit int_sqrt

2018-02-04 Thread Jonathan Cameron
On Thu, 11 Jan 2018 11:19:57 +0100 Crt Mori wrote: > There is no option to perform 64bit integer sqrt on 32bit platform. > Added stronger typed int_sqrt64 enables the 64bit calculations to > be performed on 32bit platforms. Using same algorithm as int_sqrt() > with strong

Re: [PATCH v13 1/3] lib: Add strongly typed 64bit int_sqrt

2018-02-04 Thread Jonathan Cameron
On Thu, 11 Jan 2018 11:19:57 +0100 Crt Mori wrote: > There is no option to perform 64bit integer sqrt on 32bit platform. > Added stronger typed int_sqrt64 enables the 64bit calculations to > be performed on 32bit platforms. Using same algorithm as int_sqrt() > with strong typing provides enough

[PATCH v13 1/3] lib: Add strongly typed 64bit int_sqrt

2018-01-11 Thread Crt Mori
There is no option to perform 64bit integer sqrt on 32bit platform. Added stronger typed int_sqrt64 enables the 64bit calculations to be performed on 32bit platforms. Using same algorithm as int_sqrt() with strong typing provides enough precision also on 32bit platforms, but it sacrifices some

[PATCH v13 1/3] lib: Add strongly typed 64bit int_sqrt

2018-01-11 Thread Crt Mori
There is no option to perform 64bit integer sqrt on 32bit platform. Added stronger typed int_sqrt64 enables the 64bit calculations to be performed on 32bit platforms. Using same algorithm as int_sqrt() with strong typing provides enough precision also on 32bit platforms, but it sacrifices some