Home
last modified time | relevance | path

Searched refs:countLeadingZeros32 (Results 1 – 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDScaledNumber.h429 static int countLeadingZeros32(uint32_t N) { return llvm::countl_zero(N); } in countLeadingZeros32() function
692 return countLeadingZeros32(Digits); in countLeadingZerosWidth()
693 return countLeadingZeros32(Digits) + Width - 32; in countLeadingZerosWidth()
/freebsd-13-stable/lib/libc/softfloat/bits32/
HDsoftfloat.c151 shiftCount = countLeadingZeros32( aSig ) - 8; in normalizeFloat32Subnormal()
266 shiftCount = countLeadingZeros32( zSig ) - 1; in normalizeRoundAndPackFloat32()
344 shiftCount = countLeadingZeros32( aSig1 ) - 11; in normalizeFloat64Subnormal()
356 shiftCount = countLeadingZeros32( aSig0 ) - 11; in normalizeFloat64Subnormal()
506 shiftCount = countLeadingZeros32( zSig0 ) - 11; in normalizeRoundAndPackFloat64()
555 shiftCount = countLeadingZeros32( absA ) - 11; in int32_to_float64()
HDsoftfloat-macros557 static int8 countLeadingZeros32( bits32 a )
/freebsd-13-stable/lib/libc/softfloat/bits64/
HDsoftfloat.c254 shiftCount = countLeadingZeros32( aSig ) - 8; in normalizeFloat32Subnormal()
369 shiftCount = countLeadingZeros32( zSig ) - 1; in normalizeRoundAndPackFloat32()
1155 shiftCount = countLeadingZeros32( absA ) + 21; in int32_to_float64()
1168 shiftCount = countLeadingZeros32( a ) + 21; in uint32_to_float64()
1194 shiftCount = countLeadingZeros32( absA ) + 32; in int32_to_floatx80()
1206 shiftCount = countLeadingZeros32( a ) + 32; in uint32_to_floatx80()
1232 shiftCount = countLeadingZeros32( absA ) + 17; in int32_to_float128()
1244 shiftCount = countLeadingZeros32( a ) + 17; in uint32_to_float128()
HDsoftfloat-macros632 static int8 countLeadingZeros32( bits32 a )
685 shiftCount += countLeadingZeros32( a );