Home
last modified time | relevance | path

Searched refs:left_index (Results 1 – 5 of 5) sorted by relevance

/external/ruy/ruy/profiler/
Dtest_instrumented_library.cc36 int left_index = 0; in MergeSortRecurse() local
40 if (left_index < half_size && in MergeSortRecurse()
41 ((right_index >= size) || data[left_index] < data[right_index])) { in MergeSortRecurse()
42 val = data[left_index++]; in MergeSortRecurse()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorConcatenation.h215 Index left_index;
217 left_index = subs[0];
219 left_index += (subs[i] % left_dims[i]) * m_leftStrides[i];
222 left_index = subs[NumDims - 1];
224 left_index += (subs[i] % left_dims[i]) * m_leftStrides[i];
227 return m_leftImpl.coeff(left_index);
328 Index left_index = subs[0];
330 left_index += (subs[i] % left_dims[i]) * this->m_leftStrides[i];
332 return this->m_leftImpl.coeffRef(left_index);
/external/libvpx/libvpx/vpx_dsp/arm/
Dfdct32x32_neon.c523 #define ADD_S16_S32(a, left_index, right_index, b, b_index) \ argument
526 vaddl_s16(vget_low_s16(a[left_index]), vget_low_s16(a[right_index])); \
527 b##_hi[b_index] = vaddl_s16(vget_high_s16(a[left_index]), \
531 #define SUB_S16_S32(a, left_index, right_index, b, b_index) \ argument
534 vsubl_s16(vget_low_s16(a[left_index]), vget_low_s16(a[right_index])); \
535 b##_hi[b_index] = vsubl_s16(vget_high_s16(a[left_index]), \
553 #define ADD_S32(a, left_index, right_index, b, b_index) \ argument
555 b##_lo[b_index] = vaddq_s32(a##_lo[left_index], a##_lo[right_index]); \
556 b##_hi[b_index] = vaddq_s32(a##_hi[left_index], a##_hi[right_index]); \
559 #define SUB_S32(a, left_index, right_index, b, b_index) \ argument
[all …]
/external/libgav1/libgav1/src/tile/
Dprediction.cc307 const int left_index = has_left ? x - 1 : x; in IntraPrediction() local
308 top_row[-1] = has_top ? top_row_src[left_index] : buffer[y][left_index]; in IntraPrediction()
331 const int left_index = has_left ? x - 1 : x; in IntraPrediction() local
333 has_top ? top_row_src[left_index] : buffer[y][left_index]; in IntraPrediction()
/external/rust/crates/rayon/src/slice/
Dmod.rs801 let left_index = cmp::min(self.slice.len(), index + (self.window_size - 1)); in split_at() localVariable
802 let left = &self.slice[..left_index]; in split_at()