HomeSort by relevance Sort by last modified time
    Searched defs:bound2 (Results 1 - 3 of 3) sorted by null

  /external/skia/tests/
ClipCacheTest.cpp 175 SkIRect bound2; local
176 bound2.set(-10, -10, 10, 10);
178 SkClipStack clip2(bound2);
180 cache.acquireMask(clip2.getTopmostGenID(), desc, bound2);
189 check_state(reporter, cache, clip2, texture2, bound2);
192 REPORTER_ASSERT(reporter, cache.canReuse(clip2.getTopmostGenID(), bound2));
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
FisheyeFilter.java 154 float bound2 = 0.25f * (scale[0] * scale[0] + scale[1] * scale[1]); local
155 float bound = (float) Math.sqrt(bound2);
159 (float) Math.atan(alpha / bound * (float) Math.sqrt(radius2 - bound2));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
MultiStartUnivariateRealOptimizer.java 243 final double bound2 = (i == 0) ? max : min + generator.nextDouble() * (max - min); local
245 FastMath.min(bound1, bound2),
246 FastMath.max(bound1, bound2));

Completed in 149 milliseconds