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

  /external/eigen/Eigen/src/Core/products/
TriangularMatrixVector_MKL.h 101 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;
    [all...]
SelfadjointMatrixVector_MKL.h 94 SYMVVector x_tmp; \
97 x_tmp=map_x.conjugate(); \
98 x_ptr=x_tmp.data(); \
GeneralMatrixVector_MKL.h 111 GEMVVector x_tmp; \
114 x_tmp=map_x.conjugate(); \
115 x_ptr=x_tmp.data(); \
  /external/chromium_org/third_party/opus/src/silk/
VAD.c 91 opus_int32 speech_nrg, x_tmp; local
145 x_tmp = silk_RSHIFT( X[ b ][ i + dec_subframe_offset ], 3 );
146 sumSquared = silk_SMLABB( sumSquared, x_tmp, x_tmp );
  /external/llvm/lib/Support/
APInt.cpp 268 uint64_t x_tmp = borrow ? x[i] - 1 : x[i];
269 borrow = y[i] > x_tmp || (borrow && x[i] == 0);
270 dest[i] = x_tmp - y[i];
    [all...]

Completed in 77 milliseconds