OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
433
static HChar *
olds
;
variable
437
return VG_(strtok_r) (s, delim, &
olds
);
464
/* Terminate the token and make
OLDS
point past it. */
Completed in 361 milliseconds