Home
last modified time | relevance | path

Searched refs:countLeadingZerosSlowCase (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h361 return countLeadingZerosSlowCase() == BitWidth; in isZero()
370 return countLeadingZerosSlowCase() == BitWidth - 1; in isOne()
473 ((Ones + countLeadingZerosSlowCase()) == BitWidth); in isMask()
483 return (Ones > 0) && ((Ones + countLeadingZerosSlowCase()) == BitWidth); in isMask()
492 unsigned LeadZ = countLeadingZerosSlowCase(); in isShiftedMask()
504 unsigned LeadZ = countLeadingZerosSlowCase(); in isShiftedMask()
1547 return countLeadingZerosSlowCase(); in countl_zero()
1985 unsigned countLeadingZerosSlowCase() const LLVM_READONLY;
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp630 unsigned APInt::countLeadingZerosSlowCase() const { in countLeadingZerosSlowCase() function in APInt