Home
last modified time | relevance | path

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

/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/v8/src/compiler/
Dregister-allocator.cc146 size_t left_index = 0; in Find() local
149 size_t current_index = left_index + (right_index - left_index) / 2; in Find()
154 DCHECK(left_index < current_index); in Find()
155 left_index = current_index; in Find()