HomeSort by relevance Sort by last modified time
    Searched defs:rank (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_fence.h 50 unsigned rank; member in struct:lp_fence
56 lp_fence_create(unsigned rank);
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_fence.h 50 unsigned rank; member in struct:lp_fence
56 lp_fence_create(unsigned rank);
  /external/eigen/Eigen/src/misc/
Kernel.h 46 m_rank(dec.rank()),
52 inline Index rank() const { return m_rank; } function in struct:Eigen::internal::kernel_retval_base
74 using Base::rank; \
Image.h 28 Dynamic, // we don't know at compile time the dimension of the image (the rank)
44 : m_dec(dec), m_rank(dec.rank()),
51 inline Index rank() const { return m_rank; } function in struct:Eigen::internal::image_retval_base
76 using Base::rank; \
  /external/eigen/test/eigen2/
eigen2_lu.cpp 42 int rank = ei_random<int>(1, std::min(rows, cols)-1); local
47 for(int i = rank; i < rows; i++) m1.row(i).setZero();
49 for(int i = rank; i < cols; i++) m1.col(i).setZero();
56 VERIFY(rank == lu.rank());
57 VERIFY(cols - lu.rank() == lu.dimensionOfKernel());
60 VERIFY(lu.isSurjective() == (lu.rank() == rows));
62 VERIFY(m1image.lu().rank() == rank);
65 VERIFY(sidebyside.lu().rank() == rank)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ExplicitOrdering.java 40 return rank(left) - rank(right); // safe because both are nonnegative
43 private int rank(T value) { method in class:ExplicitOrdering
44 Integer rank = rankMap.get(value); local
45 if (rank == null) {
48 return rank;
54 int rank = 0; local
56 builder.put(value, rank++);
  /frameworks/base/core/java/android/provider/
SearchIndexableData.java 50 * The rank for the data. This is application specific.
52 public int rank; field in class:SearchIndexableData
150 sb.append("rank: ");
151 sb.append(rank);
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
AsciiHprofWriter.java 73 out.printf("rank self accum count trace method\n");
74 int rank = 0; local
77 rank++;
85 rank, self*100, accum*100, count, stackTrace.stackTraceId,
  /external/chromium_org/components/precache/core/
precache_fetcher.cc 204 int64 rank = 0; local
206 it != starting_urls_.end() && rank < config.top_sites_count();
207 ++it, ++rank) {
  /external/eigen/test/
lu.cpp 51 Index rank = internal::random<Index>(1, (std::min)(rows, cols)-1); local
58 createRandomPIMatrixOfRank(rank, rows, cols, m1);
62 // The special value 0.01 below works well in tests. Keep in mind that we're only computing the rank
80 VERIFY(rank == lu.rank());
81 VERIFY(cols - lu.rank() == lu.dimensionOfKernel());
86 VERIFY(m1image.fullPivLu().rank() == rank);
116 VERIFY(size == lu.rank());
155 VERIFY_RAISES_ASSERT(lu.rank())
    [all...]
qr_colpivoting.cpp 19 Index rank = internal::random<Index>(1, (std::min)(rows, cols)-1); local
24 createRandomPIMatrixOfRank(rank,rows,cols,m1);
26 VERIFY(rank == qr.rank());
27 VERIFY(cols - qr.rank() == qr.dimensionOfKernel());
50 int rank = internal::random<int>(1, (std::min)(int(Rows), int(Cols))-1); local
52 createRandomPIMatrixOfRank(rank,Rows,Cols,m1);
54 VERIFY(rank == qr.rank());
55 VERIFY(Cols - qr.rank() == qr.dimensionOfKernel())
    [all...]
qr_fullpivoting.cpp 19 Index rank = internal::random<Index>(1, (std::min)(rows, cols)-1); local
24 createRandomPIMatrixOfRank(rank,rows,cols,m1);
26 VERIFY(rank == qr.rank());
27 VERIFY(cols - qr.rank() == qr.dimensionOfKernel());
  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LMpar.h 58 /* jacobian is rank-deficient, obtain a least squares solution. */
60 // const Index rank = qr.nonzeroPivots(); // exactly double(0.)
61 const Index rank = qr.rank(); // use a threshold local
63 wa1.tail(n-rank).setZero();
65 wa1.head(rank) = s.topLeftCorner(rank,rank).template triangularView<Upper>().solve(qtb.head(rank));
81 /* if the jacobian is not rank deficient, the newton *
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
lmpar.h 39 /* jacobian is rank-deficient, obtain a least squares solution. */
70 /* if the jacobian is not rank deficient, the newton */
196 /* jacobian is rank-deficient, obtain a least squares solution. */
198 // const Index rank = qr.nonzeroPivots(); // exactly double(0.)
199 const Index rank = qr.rank(); // use a threshold local
201 wa1.tail(n-rank).setZero();
202 qr.matrixQR().topLeftCorner(rank, rank).template triangularView<Upper>().solveInPlace(wa1.head(rank));
    [all...]
  /external/chromium_org/extensions/common/
manifest.cc 25 // Rank extension locations in a way that allows
28 // with the higher rank, as returned by this function. The actual
32 int rank = kInvalidRank; // Will CHECK that rank is not kInvalidRank. local
37 rank = 9;
41 rank = 8;
47 rank = 7;
51 rank = 6;
58 rank = 5;
62 rank = 4
    [all...]
  /external/eigen/Eigen/src/Geometry/
Umeyama.h 143 Index rank = 0; for (Index i=0; i<m; ++i) if (!internal::isMuchSmallerThan(d.coeff(i),d.coeff(0))) ++rank; local
144 if (rank == m-1) {
  /external/valgrind/main/mpi/
mpiwrap_type_test.c 224 int rank, size; local
244 MPI_Comm_rank( MPI_COMM_WORLD, &rank );
246 if (rank == 0) {
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
des_opts.c 427 int rank[16]; local
437 rank[i]=0;
  /external/eigen/Eigen/src/QR/
HouseholderQR.h 34 * Note that no pivoting is performed. This is \b not a rank-revealing decomposition.
314 const Index rank = (std::min)(rows, cols); local
321 dec().matrixQR().leftCols(rank),
322 dec().hCoeffs().head(rank)).transpose()
326 .topLeftCorner(rank, rank)
328 .solveInPlace(c.topRows(rank));
330 dst.topRows(rank) = c.topRows(rank);
331 dst.bottomRows(cols-rank).setZero()
    [all...]
ColPivHouseholderQR.h 20 * \brief Householder rank-revealing QR decomposition of a matrix with column-pivoting
24 * This class performs a rank-revealing QR decomposition of a matrix \b A into matrices \b P, \b Q and \b R
32 * This decomposition performs column pivoting in order to be rank-revealing and improve
166 * For rank-deficient matrices, use
168 * matrixR().topLeftCorner(rank(), rank()).template triangularView<Upper>()
215 /** \returns the rank of the matrix of which *this is the QR decomposition.
221 inline Index rank() const function in class:Eigen::ColPivHouseholderQR
241 return cols() - rank();
254 return rank() == cols()
    [all...]
  /external/openssl/crypto/des/
des_opts.c 427 int rank[16]; local
437 rank[i]=0;
  /frameworks/base/tools/apilint/
apilint.py 598 def rank(p): function in function:verify_layering
606 cr = rank(clazz.pkg.name)
610 ir = rank(f.typ)
615 ir = rank(m.typ)
619 ir = rank(arg)
  /external/ceres-solver/internal/ceres/
covariance_impl.cc 482 const SuiteSparse_long rank = local
494 if (rank < cholmod_jacobian.ncol) {
495 LOG(ERROR) << "Jacobian matrix is rank deficient. "
497 << " rank: " << rank;
686 if (qr_solver.rank() < jacobian.num_cols) {
687 LOG(ERROR) << "Jacobian matrix is rank deficient. "
689 << " rank: " << qr_solver.rank();
  /external/chromium_org/chrome/browser/history/
top_sites_database.cc 26 // with the highest rank will be the next one evicted. Forced
27 // thumbnails have a rank of -1.
488 int rank = GetURLRank(url); local
489 if (rank == kRankOfNonExistingURL) {
551 << "Thumbnail without a forced time stamp has a forced rank, or the "
557 // Update rank if this is not a forced thumbnail.
566 << "Thumbnail without a forced time stamp has a forced rank, or the "
579 << "Thumbnail without a forced time stamp has a forced rank, or the "
584 LOG(WARNING) << "Updating rank of an unknown URL: " << url.url.spec();
641 // Set the url's rank and last_forced, since the latter changes when a UR
    [all...]
  /external/eigen/Eigen/src/LU/
FullPivLU.h 25 * upper-triangular, and P and Q are permutation matrices. This is a rank-revealing LU
30 * the rank, invertibility, inverse, kernel, and determinant.
115 * \sa rank()
238 /** Allows to prescribe a threshold to be used by certain methods, such as rank(),
276 /** Returns the threshold that will be used by certain methods such as rank().
289 /** \returns the rank of the matrix of which *this is the LU decomposition.
295 inline Index rank() const function in class:Eigen::FullPivLU
315 return cols() - rank();
328 return rank() == cols();
341 return rank() == rows()
    [all...]

Completed in 652 milliseconds

1 2 3 4 5