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

/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DMathUtils.java63 private static final byte ZB = (byte)0; field in class:MathUtils
1075 return (x >= ZB) ? PB : NB;
1630 return (x == ZB) ? ZB : (x > ZB) ? PB : NB;
/external/llvm/include/llvm/Support/
H A DMathExtras.h70 static std::size_t count(T Val, ZeroBehavior ZB) { argument
71 if (ZB != ZB_Undefined && Val == 0)
86 static std::size_t count(T Val, ZeroBehavior ZB) { argument
87 if (ZB != ZB_Undefined && Val == 0)
108 /// \param ZB the behavior on an input of 0. Only ZB_Width and ZB_Undefined are
111 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
115 return detail::TrailingZerosCounter<T, sizeof(T)>::count(Val, ZB);
139 static std::size_t count(T Val, ZeroBehavior ZB) { argument
140 if (ZB != ZB_Undefined && Val == 0)
155 static std::size_t count(T Val, ZeroBehavior ZB) { argument
[all...]

Completed in 161 milliseconds