/external/v8/src/js/ |
D | array.js | 206 function SparseSlice(array, start_i, del_count, len, deleted_elements) { argument 208 var indices = %GetArrayKeys(array, start_i + del_count); 211 for (var i = start_i; i < limit; ++i) { 214 %CreateDataProperty(deleted_elements, i - start_i, current); 221 if (key >= start_i) { 224 %CreateDataProperty(deleted_elements, key - start_i, current); 234 function SparseMove(array, start_i, del_count, len, num_additional_args) { argument 245 for (var i = 0; i < start_i && i < limit; ++i) { 251 for (var i = start_i + del_count; i < limit; ++i) { 261 if (key < start_i) { [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | strided_slice_op.h | 40 Eigen::DSizes<int, NDIMS> start_i, stop_i, strides_i; in operator() local 42 start_i[i] = start_indices[i]; in operator() 47 To32Bit(input).stridedSlice(start_i, stop_i, strides_i); in operator() 89 Eigen::DSizes<int, NDIMS> start_i, stop_i, strides_i; 91 start_i[i] = start_indices[i]; 95 To32Bit(output).stridedSlice(start_i, stop_i, strides_i).device(d) = 114 Eigen::DSizes<int, NDIMS> start_i, stop_i, strides_i; 116 start_i[i] = start_indices[i]; 120 To32Bit(output).stridedSlice(start_i, stop_i, strides_i).device(d) =
|
/external/libtextclassifier/actions/ |
D | ngram-model.cc | 176 for (size_t start_i = 0; start_i < tokens.size(); ++start_i) { in Eval() local 178 GetFirstTokenMatches(tokens[start_i]); in Eval() 186 /*tokens=*/tokens.data() + start_i, in Eval() 187 /*num_tokens=*/tokens.size() - start_i, in Eval()
|
/external/pdfium/core/fxge/dib/ |
D | cstretchengine.cpp | 171 int start_i = floor(std::min(src_start, src_end)); in Calc() local 173 start_i = std::max(start_i, src_min); in Calc() 175 if (start_i > end_i) { in Calc() 176 start_i = std::min(start_i, src_max - 1); in Calc() 177 pixel_weights.m_SrcStart = start_i; in Calc() 178 pixel_weights.m_SrcEnd = start_i; in Calc() 181 pixel_weights.m_SrcStart = start_i; in Calc() 183 for (int j = start_i; j <= end_i; ++j) { in Calc() 195 size_t idx = j - start_i; in Calc()
|
/external/python/cpython2/Lib/ |
D | htmllib.py | 345 def start_cite(self, attrs): self.start_i(attrs) 351 def start_em(self, attrs): self.start_i(attrs) 363 def start_var(self, attrs): self.start_i(attrs) 368 def start_i(self, attrs): member in HTMLParser
|
/external/pdfium/core/fxcodec/codec/ |
D | fx_codec_progress.cpp | 94 int start_i, end_i; in Calc() local 96 start_i = (int)floor((float)src_start); in Calc() 99 start_i = (int)floor((float)src_end); in Calc() 102 if (start_i < src_min) { in Calc() 103 start_i = src_min; in Calc() 108 if (start_i > end_i) { in Calc() 109 pixel_weights.m_SrcStart = start_i; in Calc() 110 pixel_weights.m_SrcEnd = start_i; in Calc() 113 pixel_weights.m_SrcStart = start_i; in Calc() 115 for (int j = start_i; j <= end_i; j++) { in Calc() [all …]
|
/external/tensorflow/tensorflow/python/lib/io/ |
D | tf_record_test.py | 263 start_i = rnd.randint(0, len(_TEXT)) 265 repeated_record += _TEXT[start_i:start_i + length]
|
/external/tensorflow/tensorflow/python/debug/lib/ |
D | debug_data.py | 871 device_name, pending_inputs[node], datum.timestamp, start_i=i + 1): 889 def _satisfied_at_timestamp(self, device_name, pending, timestamp, start_i=0): argument 909 for datum in self._dump_tensor_data[device_name][start_i:]:
|
/external/tensorflow/tensorflow/python/ops/ |
D | nn_ops.py | 690 start_i = i 707 parts.append(const_or_orig[start_i:i + 1])
|