On Wed, Apr 26, 2017 at 4:04 PM, Nathan Sidwell wrote:
> On 04/26/2017 04:52 AM, Richard Biener wrote:
>>
>> On Tue, Apr 25, 2017 at 6:47 PM, Nathan Sidwell wrote:
>
>
>> Please use 'inline' rather than 'static inline'.
>
>
> Oh, ok (must have been misled by some exiting static inline somewhere)
On 04/26/2017 04:52 AM, Richard Biener wrote:
On Tue, Apr 25, 2017 at 6:47 PM, Nathan Sidwell wrote:
Please use 'inline' rather than 'static inline'.
Oh, ok (must have been misled by some exiting static inline somewhere)
Did you test the patch produces the same CRCs than before? Did you
On Tue, Apr 25, 2017 at 6:47 PM, Nathan Sidwell wrote:
> Hi,
> our current CRC routine processes 1 bit at a time, and permits arbitrary
> numbers of bits from 1 to 32. However we only ever feed it multiples of 8
> bits to process.
>
> So part of this patch changes the interface to use a crc32_uns
Hi,
our current CRC routine processes 1 bit at a time, and permits arbitrary
numbers of bits from 1 to 32. However we only ever feed it multiples of
8 bits to process.
So part of this patch changes the interface to use a crc32_unsigned_n
worker function, which crcs a N-byte integer.
The ot