HomeSort by relevance Sort by last modified time
    Searched refs:remainingSize (Results 1 - 10 of 10) 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(), internal::conj(h), &temp.coeffRef(0));
Tridiagonalization.h 357 Index remainingSize = n-i-1;
360 matA.col(i).tail(remainingSize).makeHouseholderInPlace(h, beta);
366 hCoeffs.tail(n-i-1).noalias() = (matA.bottomRightCorner(remainingSize,remainingSize).template selfadjointView<Lower>()
367 * (conj(h) * matA.col(i).tail(remainingSize)));
369 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);
371 matA.bottomRightCorner(remainingSize, remainingSize).template selfadjointView<Lower>()
372 .rankUpdate(matA.col(i).tail(remainingSize), hCoeffs.tail(remainingSize), -1)
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_MifareStdMap.c 523 NdefMap->StdMifareContainer.remainingSize = PH_FRINFC_MIFARESTD_VAL0;
605 NdefMap->StdMifareContainer.remainingSize =
609 NdefMap->StdMifareContainer.remainingSize);
617 NdefMap->StdMifareContainer.remainingSize =
621 NdefMap->StdMifareContainer.remainingSize);
817 NdefMap->StdMifareContainer.remainingSize =
    [all...]
phFriNfc_NdefMap.h 462 uint16_t remainingSize;
550 uint16_t RemainingSize;
732 uint16_t RemainingSize;
    [all...]
phFriNfc_NdefMap.c     [all...]
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheStorage.h 70 bool remainingSizeForOriginExcludingCache(const SecurityOrigin*, ApplicationCache*, int64_t& remainingSize);
ApplicationCacheStorage.cpp 483 bool ApplicationCacheStorage::remainingSizeForOriginExcludingCache(const SecurityOrigin* origin, ApplicationCache* cache, int64_t& remainingSize)
522 quotaForOrigin(origin, remainingSize);
524 remainingSize = statement.getColumnInt64(1);
    [all...]
  /frameworks/av/media/libstagefright/
WAVExtractor.cpp 152 size_t remainingSize = totalSize;
153 while (remainingSize >= 8) {
159 remainingSize -= 8;
164 if (chunkSize > remainingSize) {
  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 484 Index remainingSize = rows-k;
486 c.bottomRightCorner(remainingSize, rhs().cols())
487 .applyHouseholderOnTheLeft(dec().matrixQR().col(k).tail(remainingSize-1),
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 684 int remainingSize = MmsConfig.getMaxMessageSize() - fixedSizeTotal - SLIDESHOW_SLOP;
685 if (remainingSize <= 0) {
689 int bytesPerMediaItem = remainingSize / resizableCnt;

Completed in 397 milliseconds