Searched defs:ZB (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/Support/
H A DMathExtras.h44 /// \param ZB the behavior on an input of 0. Only ZB_Width and ZB_Undefined are
49 countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
50 (void)ZB;
76 countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) LLVM_DELETED_FUNCTION;
80 inline std::size_t countTrailingZeros<uint32_t>(uint32_t Val, ZeroBehavior ZB) { argument
81 if (ZB != ZB_Undefined && Val == 0)
95 inline std::size_t countTrailingZeros<uint64_t>(uint64_t Val, ZeroBehavior ZB) { argument
96 if (ZB != ZB_Undefined && Val == 0)
115 /// \param ZB the behavior on an input of 0. Only ZB_Width and ZB_Undefined are
120 countLeadingZeros(T Val, ZeroBehavior ZB
146 countLeadingZeros(uint32_t Val, ZeroBehavior ZB) argument
161 countLeadingZeros(uint64_t Val, ZeroBehavior ZB) argument
[all...]

Completed in 127 milliseconds