Home
last modified time | relevance | path

Searched defs:step (Results 1 – 25 of 789) sorted by relevance

12345678910>>...32

/third_party/gn/docs/
Dquick_start.md85 ### Adding a build file
123 ### Testing your addition
143 ### Declaring dependencies
200 ### Test the binary
214 ### Putting settings in a config
254 ### Default configs
/third_party/python/Objects/
Dsliceobject.c114 PySlice_New(PyObject *start, PyObject *stop, PyObject *step) in PySlice_New()
172 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step) in PySlice_GetIndices()
204 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step) in PySlice_Unpack()
250 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t step) in PySlice_AdjustIndices()
294 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step, in PySlice_GetIndicesEx()
306 PyObject *start, *stop, *step; in slice_new() local
386 PyObject *start=NULL, *stop=NULL, *step=NULL; in _PySlice_GetLongIndices() local
527 PyObject *start, *stop, *step; in slice_indices() local
Drangeobject.c20 PyObject *step; member
28 validate_step(PyObject *step) in validate_step()
49 PyObject *stop, PyObject *step) in make_range_object()
78 PyObject *start = NULL, *stop = NULL, *step = NULL; in range_from_array() local
180 compute_range_length(PyObject *start, PyObject *stop, PyObject *step) in compute_range_length()
345 PyObject *start = NULL, *stop = NULL, *step = NULL; in compute_slice() local
769 long step; member
796 PyObject *start=NULL, *stop=NULL, *step=NULL; in rangeiter_reduce() local
888 get_len_of_range(long lo, long hi, long step) in get_len_of_range()
916 fast_range_iter(long start, long stop, long step, long len) in fast_range_iter()
[all …]
/third_party/mindspore/mindspore-src/source/tests/st/graph_syntax/list/
Dtest_list_assign.py23 def construct(self, a, b, start=None, stop=None, step=None): argument
39 def construct(self, start=None, stop=None, step=None): argument
67 def construct(self, start=None, stop=None, step=None): argument
/third_party/cups-filters/cupsfilters/
Dpack.c36 const int step) /* I - Step value between pixels */ in cupsPackHorizontal()
122 const int step) /* I - Stepping value */ in cupsPackHorizontal2()
255 const int step) /* I - Number of bytes between columns */ in cupsPackVertical()
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/frontend/optimizer/
Dgrouped_pairwise_exchange_alltoall.h63 for (int64_t step = 0; step < GetGroupNum(); step++) { in DisplayInfo() local
95 for (int64_t step = 0; step < gpea_num_; step++) { in SetTotalSendRankIds() local
106 for (int64_t step = 0; step < gpea_num_; step++) { in SetTotalRecvRankIds() local
117 for (int64_t step = 0; step < gpea_num_; step++) { in SetSendGroupRanks() local
/third_party/mbedtls/library/
Dpsa_crypto_pake.c284 psa_crypto_driver_pake_step_t step, in mbedtls_psa_pake_output_internal()
392 psa_crypto_driver_pake_step_t step, in mbedtls_psa_pake_output()
405 psa_crypto_driver_pake_step_t step, in mbedtls_psa_pake_input_internal()
511 psa_crypto_driver_pake_step_t step, in mbedtls_psa_pake_input()
/third_party/rust/crates/minimal-lexical/etc/
Dbellerophon_table.py45 def next_fp(fp, base, step = 1): argument
51 def prev_fp(fp, base, step = 1): argument
81 def generate_large(base, step): argument
/third_party/skia/third_party/externals/icu/scripts/
Dmake_data_assembly.py40 step = 1 variable
42 step = -1 variable
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/gpu/kernel/cuda_impl/cuda_ops/
Dcumprod_impl.cu23 size_t step = blockDim.x * gridDim.x; in Copy() local
34 size_t step = blockDim.x * gridDim.x; in LeftMoveProd() local
56 size_t step = blockDim.x * gridDim.x; in RightMoveProd() local
77 size_t step = blockDim.x * gridDim.x; in CumProdKernelReverse() local
99 size_t step = blockDim.x * gridDim.x; in CumProdKernel() local
Dcumsum_impl.cu24 size_t step = blockDim.x * gridDim.x; in Copy() local
35 size_t step = blockDim.x * gridDim.x; in LeftMoveSum() local
57 size_t step = blockDim.x * gridDim.x; in RightMoveSum() local
78 size_t step = blockDim.x * gridDim.x; in CumSumKernelReverse() local
100 size_t step = blockDim.x * gridDim.x; in CumSumKernel() local
/third_party/python/Include/
Dsliceobject.h24 PyObject *start, *stop, *step; /* not NULL */ member
50 #define PySlice_GetIndicesEx(slice, length, start, stop, step, slicelen) ( \ argument
/third_party/mindspore/mindspore-src/source/tests/ut/python/train/summary/
Dtest_summary_record.py29 def get_test_data(step): argument
81 def test_step_of_record_with_type_error(self, step): argument
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/ascend/kernel/opapi/aclnn/
Dslice_ext_aclnn_kernel.cc35 auto step = transform::ConvertKernelTensor<int64_t>(inputs[kIndex4]); in GetWorkSpaceInfo() local
52 auto step = transform::ConvertKernelTensor<int64_t>(inputs[kIndex4]); in Launch() local
/third_party/mbedtls/tests/src/drivers/
Dtest_driver_pake.c56 psa_crypto_driver_pake_step_t step, in mbedtls_test_transparent_pake_output()
106 psa_crypto_driver_pake_step_t step, in mbedtls_test_transparent_pake_input()
/third_party/python/Lib/test/test_sqlite3/
Dtest_userfunctions.py108 def step(self, x): member in AggrNoFinalize
115 def step(self, x): member in AggrExceptionInInit
125 def step(self, x): member in AggrExceptionInStep
135 def step(self, x): member in AggrExceptionInFinalize
145 def step(self, whichType, val): member in AggrCheckType
157 def step(self, whichType, *vals): member in AggrCheckTypes
170 def step(self, val): member in AggrSum
179 def step(self, txt): member in AggrText
489 def step(self, value): member in WindowSumInt
573 def step(self, x): pass member in WindowFunctionTests.test_win_missing_method.MissingValue
[all …]
/third_party/mindspore/mindspore-src/source/tests/st/ops/dynamic_sequence/
Dtest_dynamic_sequence_slice.py44 def construct(self, seq, start, stop, step): argument
47 def func(seq, start, stop, step): argument
75 def construct(self, seq, start, stop, step): argument
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/cpu/kernel/sequence/
Dsequence_slice_cpu_kernel.cc51 int64_t SliceGetStartPoint(int64_t start, int64_t len, int64_t step) { in SliceGetStartPoint()
68 int64_t SliceGetEndPoint(int64_t end, int64_t len, int64_t step) { in SliceGetEndPoint()
99 int64_t step = step_addr[0]; in LaunchKernel() local
/third_party/ffmpeg/libavcodec/
Dtxd.c127 int step = dxtc.dxt1_block(p, stride, gb.buffer); in txd_decode_frame() local
136 int step = dxtc.dxt3_block(p, stride, gb.buffer); in txd_decode_frame() local
/third_party/jerryscript/jerry-core/ecma/base/
Decma-property-hashmap.c160 …uint32_t step = ecma_property_hashmap_steps[entry_index & (ECMA_PROPERTY_HASHMAP_NUMBER_OF_STEPS -… in ecma_property_hashmap_create() local
244 …uint32_t step = ecma_property_hashmap_steps[entry_index & (ECMA_PROPERTY_HASHMAP_NUMBER_OF_STEPS -… in ecma_property_hashmap_insert() local
316 …uint32_t step = ecma_property_hashmap_steps[entry_index & (ECMA_PROPERTY_HASHMAP_NUMBER_OF_STEPS -… in ecma_property_hashmap_delete() local
411 …uint32_t step = ecma_property_hashmap_steps[entry_index & (ECMA_PROPERTY_HASHMAP_NUMBER_OF_STEPS -… in ecma_property_hashmap_find() local
/third_party/typescript/tests/baselines/reference/
DasyncFunctionsAcrossFiles.js24 …function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, … function
40 …function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, … function
/third_party/mindspore/mindspore-src/source/mindspore/core/ops/
Dslice_to_indices.cc34 std::vector<int64_t> GetSlicedIndices(int64_t start, int64_t stop, int64_t step) { in GetSlicedIndices()
80 int64_t step = slice_ptr->step(); in ConstSliceToIndices() local
111 int64_t *step) { in CalSliceToIndices()
186 auto step = GetScalarValue<int64_t>(input_args[kInputIndex3]->GetValue()).value(); in InferShape() local
/third_party/icu/icu4c/source/i18n/
Dcollation.cpp65 Collation::decTwoBytePrimaryByOneStep(uint32_t basePrimary, UBool isCompressible, int32_t step) { in decTwoBytePrimaryByOneStep()
87 Collation::decThreeBytePrimaryByOneStep(uint32_t basePrimary, UBool isCompressible, int32_t step) { in decThreeBytePrimaryByOneStep()
/third_party/mindspore/mindspore-src/source/mindspore/core/ops/symbol_ops_impl/
Dnormalize_slice.cc35 auto step = input(kIndex3); in Eval() local
100 auto step = b->GetInputValue(kIndex3); in NormalizeSliceValueBuilder() local
/third_party/skia/third_party/externals/brotli/c/dec/
Dhuffman.c81 int step, int end, in ReplicateValue()
111 int step; /* step size to replicate values in current table */ in BrotliBuildCodeLengthsHuffmanTable() local
181 int step; /* step size to replicate values in current table */ in BrotliBuildHuffmanTable() local

12345678910>>...32