Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/wtf/
DBitwiseOperations.h62 ALWAYS_INLINE uint64_t countLeadingZeros64(uint64_t x) in countLeadingZeros64() function
82 ALWAYS_INLINE uint64_t countLeadingZeros64(uint64_t x)
91 ALWAYS_INLINE size_t countLeadingZerosSizet(size_t x) { return countLeadingZeros64(x); } in countLeadingZerosSizet()
/external/llvm/lib/Support/
DScaledNumber.cpp167 int LeadingZeros = ScaledNumberBase::countLeadingZeros64(D); in toStringAPFloat()
213 if (int Shift = std::min(int16_t(countLeadingZeros64(D)), E)) { in toString()
/external/qemu/fpu/
Dsoftfloat.c448 shiftCount = countLeadingZeros64( aSig ) - 11; in normalizeFloat64Subnormal()
565 shiftCount = countLeadingZeros64( zSig ) - 1; in normalizeRoundAndPackFloat64()
618 shiftCount = countLeadingZeros64( aSig ); in normalizeFloatx80Subnormal()
847 shiftCount = countLeadingZeros64( zSig0 ); in normalizeRoundAndPackFloatx80()
924 shiftCount = countLeadingZeros64( aSig1 ) - 15; in normalizeFloat128Subnormal()
936 shiftCount = countLeadingZeros64( aSig0 ) - 15; in normalizeFloat128Subnormal()
1104 shiftCount = countLeadingZeros64( zSig0 ) - 15; in normalizeRoundAndPackFloat128()
1217 shiftCount = countLeadingZeros64( absA ) - 40; in int64_to_float32()
1239 shiftCount = countLeadingZeros64( a ) - 40; in uint64_to_float32()
1304 shiftCount = countLeadingZeros64( absA ); in int64_to_floatx80()
[all …]
Dsoftfloat-macros.h676 static int8 countLeadingZeros64( uint64_t a ) in countLeadingZeros64() function
/external/llvm/include/llvm/Support/
DScaledNumber.h431 static int countLeadingZeros64(uint64_t N) { return countLeadingZeros(N); } in countLeadingZeros64() function
698 return countLeadingZeros64(Digits); in countLeadingZerosWidth()