Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DAPInt.h352 return countTrailingOnesSlowCase() == BitWidth; in isAllOnes()
395 return !isNegative() && countTrailingOnesSlowCase() == BitWidth - 1; in isMaxSignedValue()
474 unsigned Ones = countTrailingOnesSlowCase(); in isMask()
485 unsigned Ones = countTrailingOnesSlowCase(); in isMask()
1562 return countTrailingOnesSlowCase(); in countTrailingOnes()
1950 unsigned countTrailingOnesSlowCase() const LLVM_READONLY;
/llvm-project-15.0.7/llvm/lib/Support/
H A DAPInt.cpp673 unsigned APInt::countTrailingOnesSlowCase() const { in countTrailingOnesSlowCase() function in APInt