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

/external/llvm/include/llvm/Support/
H A DMathExtras.h34 ZB_Max, enumerator in enum:llvm::ZeroBehavior
181 /// \param ZB the behavior on an input of 0. Only ZB_Max and ZB_Undefined are
186 findFirstSet(T Val, ZeroBehavior ZB = ZB_Max) { argument
187 if (ZB == ZB_Max && Val == 0)
197 findFirstSet(T Val, ZeroBehavior ZB = ZB_Max) LLVM_DELETED_FUNCTION;
204 /// \param ZB the behavior on an input of 0. Only ZB_Max and ZB_Undefined are
209 findLastSet(T Val, ZeroBehavior ZB = ZB_Max) { argument
210 if (ZB == ZB_Max && Val == 0)
223 findLastSet(T Val, ZeroBehavior ZB = ZB_Max) LLVM_DELETED_FUNCTION;
/external/llvm/lib/Support/
H A DAPInt.cpp2308 return findLastSet(value, ZB_Max);
2316 return findFirstSet(value, ZB_Max);

Completed in 404 milliseconds