Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDAPInt.h229 unsigned countTrailingOnesSlowCase() const LLVM_READONLY;
403 return countTrailingOnesSlowCase() == BitWidth; in isAllOnesValue()
434 return !isNegative() && countTrailingOnesSlowCase() == BitWidth - 1; in isMaxSignedValue()
504 unsigned Ones = countTrailingOnesSlowCase(); in isMask()
515 unsigned Ones = countTrailingOnesSlowCase(); in isMask()
1706 return countTrailingOnesSlowCase(); in countTrailingOnes()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
HDAPInt.cpp638 unsigned APInt::countTrailingOnesSlowCase() const { in countTrailingOnesSlowCase() function in APInt