#include <stdint.h>
#include "platform.h"
#include "primitives.h"
Go to the source code of this file.
◆ softfloat_countLeadingZeros64
#define softfloat_countLeadingZeros64 softfloat_countLeadingZeros64 |
◆ softfloat_countLeadingZeros64()
Definition at line 45 of file s_countLeadingZeros64.c.
46{
49
52 if ( ! a32 ) {
55 }
56
57
58
59 if ( a32 < 0x10000 ) {
61 a32 <<= 16;
62 }
63 if ( a32 < 0x1000000 ) {
65 a32 <<= 8;
66 }
69
70}
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
const uint_least8_t softfloat_countLeadingZeros8[256]