HomeSort by relevance Sort by last modified time
    Searched defs:start_i (Results 1 - 6 of 6) 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/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...]
  /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
  /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...]
  /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...]

Completed in 457 milliseconds