Home
last modified time | relevance | path

Searched refs:_slice (Results 1 – 11 of 11) sorted by relevance

/external/tensorflow/tensorflow/compiler/tf2xla/python/
Dxla.py56 _slice = slice # pylint: disable=invalid-name variable
510 _slice(start, limit, stride)
/external/python/cpython2/Doc/c-api/
Dslice.rst3 .. _slice-objects:
/external/python/cpython3/Doc/c-api/
Dslice.rst3 .. _slice-objects:
/external/python/cpython2/Include/
DPython-ast.h14 typedef struct _slice *slice_ty;
316 struct _slice { struct
/external/python/cpython3/Objects/
Drangeobject.c343 compute_slice(rangeobject *r, PyObject *_slice) in compute_slice() argument
345 PySliceObject *slice = (PySliceObject *) _slice; in compute_slice()
/external/python/setuptools/setuptools/_vendor/more_itertools/
Dmore.py1152 for _slice in iterator:
1153 if len(_slice) != n:
1155 yield _slice
/external/python/setuptools/pkg_resources/_vendor/more_itertools/
Dmore.py1310 for _slice in iterator:
1311 if len(_slice) != n:
1313 yield _slice
/external/rust/crates/base64/
DRELEASE-NOTES.md65 - The `*_slice` decode/encode functions now return an error instead of panicking when the output sl…
/external/python/cpython2/Python/
Dceval.c1839 TARGET_WITH_IMPL_NOARG(SLICE, _slice) in PyEval_EvalFrameEx()
1840 TARGET_WITH_IMPL_NOARG(SLICE_1, _slice) in PyEval_EvalFrameEx()
1841 TARGET_WITH_IMPL_NOARG(SLICE_2, _slice) in PyEval_EvalFrameEx()
1842 TARGET_WITH_IMPL_NOARG(SLICE_3, _slice) in PyEval_EvalFrameEx()
1843 _slice: in PyEval_EvalFrameEx()
/external/crosvm/disk/src/
Dandroid_sparse.rs303 fn write_at_volatile(&mut self, _slice: VolatileSlice, _offset: u64) -> io::Result<usize> { in write_at_volatile()
/external/tensorflow/tensorflow/python/ops/
Darray_ops.py1163 return gen_array_ops._slice(input_, begin, size, name=name)