HomeSort by relevance Sort by last modified time
    Searched defs:remainingSize (Results 1 - 8 of 8) sorted by null

  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 300 Index remainingSize = n-i-1;
303 matA.col(i).tail(remainingSize).makeHouseholderInPlace(h, beta);
311 matA.bottomRightCorner(remainingSize, remainingSize)
312 .applyHouseholderOnTheLeft(matA.col(i).tail(remainingSize-1), h, &temp.coeffRef(0));
315 matA.rightCols(remainingSize)
316 .applyHouseholderOnTheRight(matA.col(i).tail(remainingSize-1).conjugate(), numext::conj(h), &temp.coeffRef(0));
Tridiagonalization.h 358 Index remainingSize = n-i-1;
361 matA.col(i).tail(remainingSize).makeHouseholderInPlace(h, beta);
367 hCoeffs.tail(n-i-1).noalias() = (matA.bottomRightCorner(remainingSize,remainingSize).template selfadjointView<Lower>()
368 * (conj(h) * matA.col(i).tail(remainingSize)));
370 hCoeffs.tail(n-i-1) += (conj(h)*Scalar(-0.5)*(hCoeffs.tail(remainingSize).dot(matA.col(i).tail(remainingSize)))) * matA.col(i).tail(n-i-1);
372 matA.bottomRightCorner(remainingSize, remainingSize).template selfadjointView<Lower>()
373 .rankUpdate(matA.col(i).tail(remainingSize), hCoeffs.tail(remainingSize), -1)
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
buffer_with_extendable_buffer.cpp 158 const int remainingSize = tailPos - copyingPos;
159 const int copyingSize = (remainingSize >= maxDataChunkSize) ?
160 maxDataChunkSize : remainingSize;
  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 514 Index remainingSize = rows-k;
516 c.bottomRightCorner(remainingSize, rhs().cols())
517 .applyHouseholderOnTheLeft(dec().matrixQR().col(k).tail(remainingSize-1),
  /frameworks/av/media/libstagefright/
WAVExtractor.cpp 152 size_t remainingSize = totalSize;
153 while (remainingSize >= 8) {
159 remainingSize -= 8;
164 if (chunkSize > remainingSize) {
  /hardware/ti/omap4-aah/camera/OMXCameraAdapter/
OMXCameraAdapter.cpp     [all...]
  /external/libnfc-nxp/src/
phFriNfc_NdefMap.h 462 uint16_t remainingSize;
550 uint16_t RemainingSize;
732 uint16_t RemainingSize;
    [all...]
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderDef.h 153 uint32_t remainingSize;

Completed in 226 milliseconds