Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/Core/products/
DTriangularMatrixVector_MKL.h101 VectorRhs x_tmp; \
102 if (ConjRhs) x_tmp = rhs.conjugate(); else x_tmp = rhs; \
103 x = x_tmp.data(); \
133 if (ConjRhs) x_tmp = rhs.conjugate(); else x_tmp = rhs; \
134 x = x_tmp.data(); \
186 VectorRhs x_tmp; \
187 if (ConjRhs) x_tmp = rhs.conjugate(); else x_tmp = rhs; \
188 x = x_tmp.data(); \
218 if (ConjRhs) x_tmp = rhs.conjugate(); else x_tmp = rhs; \
219 x = x_tmp.data(); \
DSelfadjointMatrixVector_MKL.h94 SYMVVector x_tmp; \
97 x_tmp=map_x.conjugate(); \
98 x_ptr=x_tmp.data(); \
DGeneralMatrixVector_MKL.h111 GEMVVector x_tmp; \
114 x_tmp=map_x.conjugate(); \
115 x_ptr=x_tmp.data(); \
/external/libopus/silk/
DVAD.c94 opus_int32 speech_nrg, x_tmp; in silk_VAD_GetSA_Q8() local
170 x_tmp = silk_RSHIFT( in silk_VAD_GetSA_Q8()
172 sumSquared = silk_SMLABB( sumSquared, x_tmp, x_tmp ); in silk_VAD_GetSA_Q8()
/external/llvm/lib/Support/
DAPInt.cpp269 uint64_t x_tmp = borrow ? x[i] - 1 : x[i]; in sub() local
270 borrow = y[i] > x_tmp || (borrow && x[i] == 0); in sub()
271 dest[i] = x_tmp - y[i]; in sub()