HomeSort by relevance Sort by last modified time
    Searched refs:start_i (Results 1 - 11 of 11) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
strided_slice_op.h 40 Eigen::DSizes<int, NDIMS> start_i, stop_i, strides_i; local
42 start_i[i] = start_indices[i];
47 To32Bit(input).stridedSlice(start_i, stop_i, strides_i);
89 Eigen::DSizes<int, NDIMS> start_i, stop_i, strides_i; local
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; local
116 start_i[i] = start_indices[i];
120 To32Bit(output).stridedSlice(start_i, stop_i, strides_i).device(d) =
  /external/v8/src/js/
array.js 206 function SparseSlice(array, start_i, del_count, len, deleted_elements) {
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) {
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/libtextclassifier/actions/
ngram-model.cc 176 for (size_t start_i = 0; start_i < tokens.size(); ++start_i) {
178 GetFirstTokenMatches(tokens[start_i]);
186 /*tokens=*/tokens.data() + start_i,
187 /*num_tokens=*/tokens.size() - start_i,
  /external/pdfium/core/fxge/dib/
cstretchengine.cpp 171 int start_i = floor(std::min(src_start, src_end)); local
173 start_i = std::max(start_i, src_min);
175 if (start_i > end_i) {
176 start_i = std::min(start_i, src_max - 1);
177 pixel_weights.m_SrcStart = start_i;
178 pixel_weights.m_SrcEnd = start_i;
181 pixel_weights.m_SrcStart = start_i;
183 for (int j = start_i; j <= end_i; ++j)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
motion_est.cpp 86 void ResetIntraUpdateRegion(UChar *intraArray, Int start_i, Int rwidth,
154 Int numIntra, start_i, numLoop, incr_i; local
242 start_i = 1;
249 start_i = 0;
262 start_i = (start_i == 0 ? 1 : 0) ; /* toggle 0 and 1 */
264 offset = width * (j << 4) + (start_i << 4);
266 mbnum = j * mbwidth + start_i;
268 for (i = start_i; i < mbwidth; i += incr_i)
501 start_i = 0
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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 class:HTMLParser
  /external/python/cpython2/Lib/
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 class:HTMLParser
  /external/tensorflow/tensorflow/python/lib/io/
tf_record_test.py 263 start_i = rnd.randint(0, len(_TEXT))
265 repeated_record += _TEXT[start_i:start_i + length]
  /external/pdfium/core/fxcodec/codec/
fx_codec_progress.cpp 94 int start_i, end_i; local
96 start_i = (int)floor((float)src_start);
99 start_i = (int)floor((float)src_end);
102 if (start_i < src_min) {
103 start_i = src_min;
108 if (start_i > end_i) {
109 pixel_weights.m_SrcStart = start_i;
110 pixel_weights.m_SrcEnd = start_i;
113 pixel_weights.m_SrcStart = start_i;
115 for (int j = start_i; j <= end_i; j++)
    [all...]
  /external/tensorflow/tensorflow/python/debug/lib/
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):
899 start_i: (int) the index in self._dump_tensor_data to start searching for
909 for datum in self._dump_tensor_data[device_name][start_i:]:
    [all...]
  /external/tensorflow/tensorflow/python/ops/
nn_ops.py 690 start_i = i
701 # [spatial_dims[start_i], ..., spatial_dims[i]]
702 # == [start_spatial_dim, ..., start_spatial_dim + i - start_i],
707 parts.append(const_or_orig[start_i:i + 1])
    [all...]

Completed in 592 milliseconds