Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DMathExtras.h33 ZB_Max, enumerator
185 findFirstSet(T Val, ZeroBehavior ZB = ZB_Max) {
186 if (ZB == ZB_Max && Val == 0)
196 findFirstSet(T Val, ZeroBehavior ZB = ZB_Max) LLVM_DELETED_FUNCTION;
208 findLastSet(T Val, ZeroBehavior ZB = ZB_Max) {
209 if (ZB == ZB_Max && Val == 0)
222 findLastSet(T Val, ZeroBehavior ZB = ZB_Max) LLVM_DELETED_FUNCTION;
/external/llvm/lib/Support/
DAPInt.cpp2307 return findLastSet(value, ZB_Max); in partMSB()
2315 return findFirstSet(value, ZB_Max); in partLSB()