Home
last modified time | relevance | path

Searched refs:max_gap (Results 1 – 6 of 6) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DSWITCH.java50 …nt[] match, final InstructionHandle[] targets, final InstructionHandle target, final int max_gap) { in SWITCH() argument
57 if (matchIsOrdered(max_gap)) { in SWITCH()
58 fillup(max_gap, target); in SWITCH()
72 private void fillup( final int max_gap, final InstructionHandle target ) { in fillup() argument
73 final int max_size = match_length + match_length * max_gap; in fillup()
137 private boolean matchIsOrdered( final int max_gap ) { in matchIsOrdered() argument
139 if (match[i] - match[i - 1] > max_gap) { in matchIsOrdered()
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/state_space_models/
Dkalman_filter_test.py48 state_noise_transform, max_gap=1): argument
53 max_gap + 1, state_transition,
135 max_gap=5))
356 max_gap=2)
387 max_gap=2)
405 max_gap=2)
/external/tensorflow/tensorflow/core/kernels/boosted_trees/quantiles/
Dweighted_quantiles_summary.h304 WeightType max_gap = 0; in ApproximationError() local
306 max_gap = std::max(max_gap, in ApproximationError()
310 return static_cast<double>(max_gap) / TotalWeight(); in ApproximationError()
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/quantiles/
Dweighted_quantiles_summary.h296 WeightType max_gap = 0; in ApproximationError() local
298 max_gap = std::max(max_gap, in ApproximationError()
302 return static_cast<double>(max_gap) / TotalWeight(); in ApproximationError()
/external/python/cpython3/Lib/test/
Ddatetimetester.py5474 max_gap = max_fold = ZERO
5488 if (shift, dt) > (max_gap, max_gap_datetime):
5489 max_gap = shift
5514 print("Max gap: %16s at %s in %s" % (max_gap, max_gap_datetime, max_gap_zone))
/external/v8/src/
Dcode-stub-assembler.cc4594 Node* max_gap = IntPtrOrSmiConstant(JSObject::kMaxGap, mode); in TryGrowElementsCapacity() local
4595 Node* max_capacity = IntPtrOrSmiAdd(capacity, max_gap, mode); in TryGrowElementsCapacity()