Searched refs:slicing (Results 1 – 25 of 40) sorted by relevance
12
/external/eigen/bench/tensors/ |
D | tensor_benchmarks_cpu.cc | 33 BM_FuncCPU(slicing, 4); 34 BM_FuncCPU(slicing, 8); 35 BM_FuncCPU(slicing, 12);
|
D | tensor_benchmarks_fp16_gpu.cu | 24 BM_FuncGPU(slicing);
|
D | tensor_benchmarks_gpu.cu | 24 BM_FuncGPU(slicing);
|
D | tensor_benchmarks.h | 82 void slicing(int num_iters) { in slicing() function
|
/external/python/cpython2/Doc/library/ |
D | constants.rst | 41 Special value used in conjunction with extended slicing syntax.
|
D | email.mime.rst | 13 around, etc. This makes a very convenient interface for slicing-and-dicing MIME
|
D | array.rst | 80 Array objects support the ordinary sequence operations of indexing, slicing,
|
D | sets.rst | 27 order of insertion. Accordingly, sets do not support indexing, slicing, or
|
D | xml.sax.handler.rst | 306 instead of slicing content with the old *offset* and *length* parameters.
|
D | collections.rst | 418 The :meth:`rotate` method provides a way to implement :class:`deque` slicing and 427 To implement :class:`deque` slicing, use a similar approach applying
|
D | stdtypes.rst | 719 support slicing, concatenation or repetition, and using ``in``, ``not in``, 1809 order of insertion. Accordingly, sets do not support indexing, slicing, or 2741 A :class:`memoryview` supports slicing to expose its data. Taking a single 2743 slicing will result in a subview::
|
D | itertools.rst | 403 specified position. Unlike regular slicing, :func:`islice` does not support
|
/external/python/cpython2/Doc/reference/ |
D | expressions.rst | 527 primary: `atom` | `attributeref` | `subscription` | `slicing` | `call` 605 single: slicing 614 A slicing selects a range of items in a sequence object (e.g., a string, tuple 616 :keyword:`del` statements. The syntax for a slicing: 619 slicing: `simple_slicing` | `extended_slicing` 632 .. index:: pair: extended; slicing 636 interpreted as a slicing. Rather than further complicating the syntax, this is 638 takes priority over the interpretation as a slicing (this is the case if the 641 simple slicing takes priority over that as an extended slicing. 643 The semantics for a simple slicing are as follows. The primary must evaluate to [all …]
|
D | simple_stmts.rst | 93 : | `slicing` 111 or slicing), the mutable object must ultimately perform the assignment and 206 .. index:: pair: slicing; assignment 208 * If the target is a slicing: The primary expression in the reference is 263 augtarget: `identifier` | `attributeref` | `subscription` | `slicing` 389 primary object involved; deletion of a slicing is in general equivalent to
|
D | datamodel.rst | 264 .. index:: single: slicing 266 Sequences also support slicing: ``a[i:j]`` selects all items with index *k* such 271 .. index:: single: extended slicing 273 Some sequences also support "extended slicing" with a third "step" parameter: 360 single: slicing 363 slicing notations can be used as the target of assignment and :keyword:`del` 1171 (such as arithmetic operations or subscripting and slicing) by defining methods 1993 classes when implementing slicing.) 2012 slicing of the form ``self[i:j:k]``, a slice object is created, and passed to 2020 found, or for extended slicing of the form ``self[i:j:k]``, a slice object is [all …]
|
/external/python/cpython2/Doc/c-api/ |
D | list.rst | 151 to ``list[low:high]``. Negative indices, as when slicing from Python, are not 165 slicing from Python, are not supported.
|
D | buffer.rst | 349 Python programming level: they support slicing, indexing, concatenation, and 356 zero-copy slicing mechanism. Using their ability to reference a block of
|
/external/python/cpython2/Doc/tutorial/ |
D | introduction.rst | 264 In addition to indexing, *slicing* is also supported. While indexing is used 265 to obtain individual characters, *slicing* allows you to obtain a substring:: 318 slicing:: 487 >>> squares[-3:] # slicing returns a new list
|
D | inputoutput.rst | 24 first way is to do all the string handling yourself; using string slicing and
|
D | datastructures.rst | 419 slicing operations. They are two examples of *sequence* data types (see
|
/external/llvm/test/CodeGen/X86/ |
D | load-slice.ll | 1 ; RUN: llc -mtriple x86_64-apple-macosx -mcpu=corei7-avx -combiner-stress-load-slicing < %s -o - | …
|
/external/eigen/doc/ |
D | AsciiQuickReference.txt | 50 // Matrix slicing and blocks. All expressions listed here are read/write.
|
/external/python/cpython2/Doc/howto/ |
D | pyporting.rst | 262 Finally, the indexing of binary data requires careful handling (slicing does
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.3.rst | 860 Ever since Python 1.4, the slicing syntax has supported an optional third "step" 939 To simplify implementing sequences that support extended slicing, slice objects 986 * Built-in types now support the extended slicing syntax, as described in
|
D | 2.4.rst | 359 Compared to extended slicing, such as ``range(1,4)[::-1]``, :func:`reversed` is 935 * The inner loops for list and tuple slicing were optimized and now run about
|
12