HomeSort by relevance Sort by last modified time
    Searched full:bmin (Results 1 - 20 of 20) sorted by null

  /external/deqp/framework/randomshaders/
rsgVariableValue.cpp 65 float bMin = b.component(ndx).getMin().asFloat();
68 if (!CompareOp()(aMin, aMax, bMin, bMax))
80 int bMin = b.component(ndx).getMin().asInt();
83 if (!CompareOp()(aMin, aMax, bMin, bMax))
93 bool bMin = b.component(ndx).getMin().asBool();
96 if (!CompareOp()(aMin, aMax, bMin, bMax))
114 inline bool operator() (float aMin, float aMax, float bMin, float bMax) const { return (aMin <= bMax && bMin <= aMax); }
115 inline bool operator() (int aMin, int aMax, int bMin, int bMax) const { return (aMin <= bMax && bMin <= aMax);
    [all...]
rsgBinaryOps.cpp 213 void ComputeMulRange::operator() (de::Random& rnd, float dstMin, float dstMax, float& aMin, float& aMax, float& bMin, float& bMax) const
238 bMin = scale;
244 bMin = scale-(float)i*scaleStep;
255 std::swap(bMin, bMax);
258 bMin *= -1.0f;
264 DE_ASSERT(aMin <= aMax && bMin <= bMax);
265 DE_ASSERT(de::inRange(aMin*bMin, dstMin-eps, dstMax+eps));
267 DE_ASSERT(de::inRange(aMax*bMin, dstMin-eps, dstMax+eps));
272 void ComputeMulRange::operator() (de::Random& rnd, int dstMin, int dstMax, int& aMin, int& aMax, int& bMin, int& bMax) const
277 bMin = 1
    [all...]
rsgBinaryOps.hpp 80 void operator() (de::Random& rnd, float dstMin, float dstMax, float& aMin, float& aMax, float& bMin, float& bMax) const;
81 void operator() (de::Random& rnd, int dstMin, int dstMax, int& aMin, int& aMax, int& bMin, int& bMax) const;
104 void operator() (de::Random& rnd, T dstMin, T dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const;
126 void operator() (de::Random& rnd, T dstMin, T dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const;
164 void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const;
188 void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const;
212 void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const
214 ComputeLessThanRange()(rnd, dstMin, dstMax, bMin, bMax, aMin, aMax);
239 void operator() (de::Random& rnd, bool dstMin, bool dstMax, T& aMin, T& aMax, T& bMin, T& bMax) const
241 ComputeLessOrEqualRange()(rnd, dstMin, dstMax, bMin, bMax, aMin, aMax)
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btConvexHull.cpp 523 btVector3 bmin(*verts),bmax(*verts);
533 bmin.setMin (verts[j]);
536 btScalar epsilon = (bmax-bmin).length() * btScalar(0.001);
881 btScalar bmin[3] = { FLT_MAX, FLT_MAX, FLT_MAX }; local
896 if ( p[j] < bmin[j] ) bmin[j] = p[j];
902 btScalar dx = bmax[0] - bmin[0];
903 btScalar dy = bmax[1] - bmin[1];
904 btScalar dz = bmax[2] - bmin[2];
908 center[0] = dx*btScalar(0.5) + bmin[0]
1047 btScalar bmin[3] = { FLT_MAX, FLT_MAX, FLT_MAX }; local
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btMultiSapBroadphase.cpp 138 bool boxIsContainedWithinBox(const btVector3& amin,const btVector3& amax,const btVector3& bmin,const btVector3& bmax);
139 bool boxIsContainedWithinBox(const btVector3& amin,const btVector3& amax,const btVector3& bmin,const btVector3& bmax)
142 amin.getX() >= bmin.getX() && amax.getX() <= bmax.getX() &&
143 amin.getY() >= bmin.getY() && amax.getY() <= bmax.getY() &&
144 amin.getZ() >= bmin.getZ() && amax.getZ() <= bmax.getZ();
  /external/aac/libSBRenc/src/
fram_gen.cpp 225 int *bmin, /*!< hlpNew: first mandatory border */
230 INT *v_freq, INT *length_v_freq, INT bmin,
239 INT *length_v_bord, INT bmin, INT *v_freq,
369 INT numEnv, tranPosInternal=0, bmin=0, bmax=0, parts, d, i_cmon=0, i_tran=0, nL; local
517 &bmin,
548 bmin, bmin - bufferFrameStart); /* FH 00-06-26 */
620 fillFrameInter (&nL, v_tuningSegm, v_bord, length_v_bord, bmin,
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
gim_basic_geometry_operations.h 491 *\param bmin Minimum bound of the box
498 SIMD_FORCE_INLINE bool BOX_AXIS_INTERSECT(T pos, T dir,T bmin, T bmax, T & tfirst, T & tlast)
502 return !(pos < bmin || pos > bmax);
504 GREAL a0 = (bmin - pos) / dir;
  /external/pdfium/third_party/lcms2-2.6/src/
cmsgmt.c 511 double bmax, double bmin)
532 Lab -> b < bmin || Lab->b > bmax) {
544 Lab -> b = Lab->b < 0 ? bmin : bmax;
578 // clip by bmin
579 Lab -> b = bmin;
580 Lab -> a = bmin / slope;
  /external/jdiff/src/jdiff/
DiffMyers.java 120 int bmin = bmid, bmax = bmid; // Limits of bottom-up search. local
158 if (odd && bmin <= d && d <= bmax && bd[bdiagoff + d] <= fd[fdiagoff + d])
166 if (bmin > dmin)
167 bd[bdiagoff + --bmin - 1] = Integer.MAX_VALUE;
169 ++bmin;
174 for (d = bmax; d >= bmin; d -= 2)
243 for (d = bmax; d >= bmin; d -= 2)
  /external/skia/src/utils/
SkTextureCompressor_R11EAC.cpp 86 uint16_t bmin = block[0];
89 bmin = SkTMin<uint16_t>(bmin, block[i]);
93 uint16_t center = (bmax + bmin) >> 1;
  /external/opencv3/modules/features2d/src/
agast_score.cpp 96 int bmin = threshold; local
98 int b_test = (bmax + bmin) / 2;
2171 int bmin = threshold; local
3383 int bmin = threshold; local
9017 int bmin = threshold; local
    [all...]
  /external/libavc/encoder/
ih264e_rate_control.c 255 pu1_min_max_qp, /* Min-max QP array[6]:[Imax][Imin][Pmax][Pmin][Bmax][Bmin] */
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bigdec/
DiagBigDecimal.java 138 private static final byte bmin = -128; field in class:DiagBigDecimal
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bigdec/
DiagBigDecimal.java 134 private static final byte bmin = -128; field in class:DiagBigDecimal
    [all...]
  /external/deqp/modules/glshared/
glsTextureTestUtil.cpp     [all...]
  /external/pdfium/third_party/lcms2-2.6/include/
lcms2.h     [all...]
  /external/guava/guava/lib/
jdiff.jar 
  /external/guice/lib/build/jdiff/
jdiff.jar 
  /external/clang/lib/Sema/
SemaOverload.cpp     [all...]
  /external/libxml2/
xmlschemas.c     [all...]

Completed in 779 milliseconds