Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/include/llvm/Support/
DMathExtras.h34 ZB_Max, enumerator
186 findFirstSet(T Val, ZeroBehavior ZB = ZB_Max) {
187 if (ZB == ZB_Max && Val == 0)
197 findFirstSet(T Val, ZeroBehavior ZB = ZB_Max) LLVM_DELETED_FUNCTION;
209 findLastSet(T Val, ZeroBehavior ZB = ZB_Max) {
210 if (ZB == ZB_Max && Val == 0)
223 findLastSet(T Val, ZeroBehavior ZB = ZB_Max) LLVM_DELETED_FUNCTION;
/freebsd-9-stable/contrib/llvm/lib/Support/
DAPInt.cpp2307 return findLastSet(value, ZB_Max); in partMSB()
2315 return findFirstSet(value, ZB_Max); in partLSB()