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

  /external/tensorflow/tensorflow/core/util/
strided_slice_op.cc 258 int64& end_i = (*end)[i]; local
301 end_i = begin_i + 1;
308 end_i = canonical(end_i, 1);
312 stride_i == 1 && begin_i == 0 && end_i == dim_i;
323 interval_length = end_i - begin_i;
  /external/pdfium/core/fxge/dib/
cstretchengine.cpp 172 int end_i = floor(std::max(src_start, src_end)); local
174 end_i = std::min(end_i, src_max - 1);
175 if (start_i > end_i) {
182 pixel_weights.m_SrcEnd = end_i;
183 for (int j = start_i; j <= end_i; ++j) {
191 if (weight == 0 && j == end_i) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
htmllib.py 346 def end_cite(self): self.end_i()
352 def end_em(self): self.end_i()
364 def end_var(self): self.end_i()
370 def end_i(self): member in class:HTMLParser
  /external/python/cpython2/Lib/
htmllib.py 346 def end_cite(self): self.end_i()
352 def end_em(self): self.end_i()
364 def end_var(self): self.end_i()
370 def end_i(self): member in class:HTMLParser
  /external/tensorflow/tensorflow/core/kernels/
quantized_mul_op.cc 212 const int end_i = base_i + vector_num_elements; local
269 for (; i < end_i; ++i, ++vector_i) {
  /external/pdfium/core/fxcodec/codec/
fx_codec_progress.cpp 94 int start_i, end_i; local
97 end_i = (int)ceil((float)src_end);
100 end_i = (int)ceil((float)src_start);
105 if (end_i >= src_max) {
106 end_i = src_max - 1;
108 if (start_i > end_i) {
114 pixel_weights.m_SrcEnd = end_i;
115 for (int j = start_i; j <= end_i; j++) {
129 if (weight == 0 && j == end_i) {
    [all...]

Completed in 654 milliseconds