Searched refs:new_stop (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Lib/multiprocessing/ |
D | heap.py | 224 new_stop = start + size 225 if new_stop < stop: 226 self._free((arena, new_stop, stop)) 227 block = (arena, start, new_stop)
|
/external/python/cpython3/Objects/ |
D | rangeobject.c | 1124 long lstart, lstop, lstep, new_start, new_stop; in range_reverse() local 1184 new_stop = lstart - lstep; in range_reverse() 1185 new_start = (long)(new_stop + ulen * lstep); in range_reverse() 1186 return fast_range_iter(new_start, new_stop, -lstep); in range_reverse()
|
/external/tensorflow/tensorflow/python/ops/numpy_ops/ |
D | np_math_ops.py | 1075 new_stop = math_ops.cast(stop, step.dtype) - step 1076 start = math_ops.cast(start, new_stop.dtype) 1077 result = math_ops.linspace(start, new_stop, num, axis=axis)
|