/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
MidpointIntegrator.java | 61 * Build a midpoint integrator with the given step. 65 super("midpoint", STATIC_C, STATIC_A, STATIC_B, new MidpointStepInterpolator(), step);
|
/external/icu/icu4c/source/test/perf/howExpensiveIs/ |
sieve.cpp | 81 double midpoint(double *times, double i, int n) { function 95 return midpoint(times,n/4,n); 97 return midpoint(times,n/2,n); 99 return midpoint(times,(n/2)+(n/4),n);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/ |
BisectionSolver.java | 111 m = UnivariateRealSolverUtils.midpoint(min, max); 124 m = UnivariateRealSolverUtils.midpoint(min, max);
|
NewtonSolver.java | 75 * Find a zero near the midpoint of <code>min</code> and <code>max</code>. 95 * Find a zero near the midpoint of <code>min</code> and <code>max</code>. 110 return solve(f, min, max, UnivariateRealSolverUtils.midpoint(min, max));
|
UnivariateRealSolverUtils.java | 114 * @param initial initial midpoint of interval being expanded to 152 * @param initial initial midpoint of interval being expanded to 209 * Compute the midpoint of two values. 213 * @return the midpoint. 215 public static double midpoint(double a, double b) { method in class:UnivariateRealSolverUtils
|
/external/llvm/test/CodeGen/X86/ |
phys_subreg_coalesce.ll | 7 define %struct.dpoint @midpoint(i64 %p1.0, i64 %p2.0) nounwind readnone {
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
ConcurrentSkipListSetTest.java | 792 int midPoint = (min + max) / 2; 796 NavigableSet<Integer> hm = set.headSet(midPoint, incl); 799 bashSubSet(hm, min, midPoint - (incl ? 0 : 1), true, bs); 801 bashSubSet(hm.descendingSet(), min, midPoint - (incl ? 0 : 1), 805 bashSubSet(hm, midPoint + (incl ? 0 : 1), max, false, bs); 807 bashSubSet(hm.descendingSet(), midPoint + (incl ? 0 : 1), max, 813 NavigableSet<Integer> tm = set.tailSet(midPoint,incl); 816 bashSubSet(tm, midPoint + (incl ? 0 : 1), max, true, bs); 818 bashSubSet(tm.descendingSet(), midPoint + (incl ? 0 : 1), max, 822 bashSubSet(tm, min, midPoint - (incl ? 0 : 1), false, bs) [all...] |
TreeSetTest.java | 794 int midPoint = (min + max) / 2; 798 NavigableSet<Integer> hm = set.headSet(midPoint, incl); 801 bashSubSet(hm, min, midPoint - (incl ? 0 : 1), true); 803 bashSubSet(hm.descendingSet(), min, midPoint - (incl ? 0 : 1), 807 bashSubSet(hm, midPoint + (incl ? 0 : 1), max, false); 809 bashSubSet(hm.descendingSet(), midPoint + (incl ? 0 : 1), max, 815 NavigableSet<Integer> tm = set.tailSet(midPoint,incl); 818 bashSubSet(tm, midPoint + (incl ? 0 : 1), max, true); 820 bashSubSet(tm.descendingSet(), midPoint + (incl ? 0 : 1), max, 824 bashSubSet(tm, min, midPoint - (incl ? 0 : 1), false) [all...] |
ConcurrentSkipListMapTest.java | 1096 int midPoint = (min + max) / 2; [all...] |
TreeMapTest.java | 901 int midPoint = (min + max) / 2; 905 NavigableMap<Integer,Integer> hm = map.headMap(midPoint, incl); 908 bashSubMap(hm, min, midPoint - (incl ? 0 : 1), true); 910 bashSubMap(hm.descendingMap(), min, midPoint - (incl ? 0 : 1), 914 bashSubMap(hm, midPoint + (incl ? 0 : 1), max, false); 916 bashSubMap(hm.descendingMap(), midPoint + (incl ? 0 : 1), max, 922 NavigableMap<Integer,Integer> tm = map.tailMap(midPoint,incl); 925 bashSubMap(tm, midPoint + (incl ? 0 : 1), max, true); 927 bashSubMap(tm.descendingMap(), midPoint + (incl ? 0 : 1), max, 931 bashSubMap(tm, min, midPoint - (incl ? 0 : 1), false) [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/ |
LegendreGaussIntegrator.java | 223 double midPoint = min + halfStep; 227 sum += weights[j] * f.value(midPoint + halfStep * abscissas[j]); 229 midPoint += step;
|
/external/ImageMagick/PerlMagick/demo/ |
lsys.pl | 60 # Turtle: the midpoint of the bottom edge of the image, pointing up.
|
/frameworks/base/core/jni/android/graphics/ |
Path.cpp | 324 float& midT, SkPoint &midPoint, float errorSquared) { 329 midPoint = (*bezierFunction)(midT, points); 330 float xError = midPoint.x() - midX; 331 float yError = midPoint.y() - midY; 357 SkPoint midPoint; 361 iter->second, next->first, next->second, midT, midPoint, errorSquared); 366 iter->second, midT, midPoint, quarterT, quarterPoint, errorSquared); 373 next = tToPoint.insert(iter, PointMap::value_type(midT, midPoint));
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
XYPlotZoomPan.java | 364 final float midPoint = calcMax - (span / 2.0f); 366 newX.x = midPoint - offset; 367 newX.y = midPoint + offset;
|
/cts/tests/tests/gesture/src/android/gesture/cts/ |
GestureStrokeTest.java | 91 // bound the path by the midpoint
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
PolyToPoly.java | 55 // centering in X is easy... use alignment (and X at midpoint)
|
/external/smali/util/src/main/java/org/jf/util/ |
ClassFileNameHandler.java | 194 int midPoint = codePoints.length/2; 196 int firstEnd = midPoint; // exclusive 197 int secondStart = midPoint+1; // inclusive 198 int bytesRemoved = utf8Length(codePoints[midPoint]);
|
/frameworks/support/v7/palette/src/main/java/android/support/v7/graphics/ |
ColorCutQuantizer.java | 335 * until a color is found with at least the midpoint of the whole box's dimension midpoint. 355 final int midPoint = mPopulation / 2; 358 if (count >= midPoint) {
|
/packages/apps/Gallery/src/com/android/camera/ |
CropImage.java | 425 PointF midPoint = new PointF(); 428 f.getMidPoint(midPoint); 429 midPoint.x *= mScale; 430 midPoint.y *= mScale; 432 int midX = (int) midPoint.x; 433 int midY = (int) midPoint.y;
|
/external/ImageMagick/coders/ |
tga.c | 677 const Quantum *p,const QuantumAny range,const double midpoint) 699 ((double) GetPixelAlpha(image,p) > midpoint)) ? 0x80 : 0) | 729 midpoint = QuantumRange/2.0; 895 ClampToQuantum(image->colormap[i].alpha) > midpoint)) ? 0x80 : 0) | 723 midpoint = QuantumRange\/2.0; local [all...] |
/frameworks/base/core/java/android/transition/ |
ArcMotion.java | 189 // d is the midpoint between a and b. c is the center point of the circle with 214 // Midpoint between start and end
|
/frameworks/base/tools/orientationplot/ |
README.txt | 58 over end to a midpoint about 45 degrees between two opposing orientations.
|
/platform_testing/tests/androidbvt/src/com/android/androidbvt/ |
SysUIMultiWindowTests.java | 97 // Calculate midpoint for Calculator window and click
|
/platform_testing/tests/functional/overviewtests/src/com/android/overview/functional/ |
MultiWindowTests.java | 87 // Calculate midpoint for Calculator window and click
|
/external/jdiff/src/jdiff/ |
DiffMyers.java | 85 /** Find the midpoint of the shortest edit script for a specified 90 When the two searches meet, we have found the midpoint of the shortest 93 The value returned is the number of the diagonal on which the midpoint lies. 95 of deleted lines (counting only lines before the midpoint). 97 lines inserted or deleted (counting only lines before the midpoint).
|