HomeSort by relevance Sort by last modified time
    Searched refs:olds (Results 1 - 4 of 4) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
RombergIntegrator.java 81 double olds = currentRow[0]; local
98 final double delta = FastMath.abs(s - olds);
99 final double rLimit = relativeAccuracy * (FastMath.abs(olds) + FastMath.abs(s)) * 0.5;
105 olds = s;
SimpsonIntegrator.java 81 double olds = 0; local
87 final double delta = FastMath.abs(s - olds);
89 relativeAccuracy * (FastMath.abs(olds) + FastMath.abs(s)) * 0.5;
95 olds = s;
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/widget/
TextLabelWidget.java 60 protected void onMetricsChanged(SizeMetrics olds, SizeMetrics news) {
  /external/valgrind/coregrind/
m_libcbase.c 464 static HChar *olds; variable
468 return VG_(strtok_r) (s, delim, &olds);
495 /* Terminate the token and make OLDS point past it. */

Completed in 320 milliseconds