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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/
Median.java 17 package org.apache.commons.math.stat.descriptive.rank;
Max.java 17 package org.apache.commons.math.stat.descriptive.rank;
Min.java 17 package org.apache.commons.math.stat.descriptive.rank;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/ranking/
RankingAlgorithm.java 21 * Interface representing a rank transformation.
28 * <p>Performs a rank transformation on the input data, returning an array
40 double[] rank (double[] data); method in interface:RankingAlgorithm
  /external/clang/test/Analysis/
MemRegion.cpp 8 int rank = 0; local
9 MPI_Comm_rank(MPI_COMM_WORLD, &rank);
15 int rank = 0; local
16 MPI_Comm_rank(MPI_COMM_WORLD, &rank);
22 int rank = 0; local
23 MPI_Comm_rank(MPI_COMM_WORLD, &rank);
31 int rank = 0; local
32 MPI_Comm_rank(MPI_COMM_WORLD, &rank);
40 int rank = 0; local
41 MPI_Comm_rank(MPI_COMM_WORLD, &rank);
    [all...]
mpichecker.cpp 6 int rank = 0; local
8 MPI_Comm_rank(MPI_COMM_WORLD, &rank);
9 if (rank >= 0) {
11 MPI_Isend(&buf, 1, MPI_DOUBLE, rank + 1, 0, MPI_COMM_WORLD, &sendReq1);
12 MPI_Irecv(&buf, 1, MPI_DOUBLE, rank - 1, 0, MPI_COMM_WORLD, &recvReq1);
20 int rank = 0; local
22 MPI_Comm_rank(MPI_COMM_WORLD, &rank);
23 if (rank >= 0) {
25 MPI_Isend(&buf, 1, MPI_DOUBLE, rank + 1, 0, MPI_COMM_WORLD, &sendReq1);
26 MPI_Irecv(&buf, 1, MPI_DOUBLE, rank - 1, 0, MPI_COMM_WORLD, &recvReq1)
33 int rank = 0; local
58 int rank = 0; local
72 int rank = 0; local
86 int rank = 0; local
100 int rank = 0; local
110 int rank = 0; local
131 int rank = 0; local
138 int rank = 0; local
147 int rank = 0; local
154 int rank = 0; local
163 int rank = 0; local
179 int rank = 0; local
193 int rank = 0; local
207 int rank = 0; local
220 int rank = 0; local
239 int rank = 0; local
261 int rank = 0; local
277 int rank = 0; local
    [all...]
  /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/
Image.h 28 Dynamic, // we don't know at compile time the dimension of the image (the rank)
43 : m_dec(dec), m_rank(dec.rank()),
50 inline Index rank() const { return m_rank; } function in struct:Eigen::internal::image_retval_base
74 using Base::rank; \
Kernel.h 45 m_rank(dec.rank()),
51 inline Index rank() const { return m_rank; } function in struct:Eigen::internal::kernel_retval_base
72 using Base::rank; \
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorIO.h 18 template <typename Tensor, int Rank>
69 static const int rank = internal::array_size<Dimensions>::value; local
70 internal::TensorPrinter<Evaluator, rank>::run(os, tensor);
TensorDimensions.h 97 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE std::ptrdiff_t rank() const { function in struct:Eigen::Sizes
159 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE size_t rank() const {
265 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE size_t rank() const { function in struct:Eigen::DSizes
TensorFixedSize.h 55 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index rank() const { return NumIndices; } function in class:Eigen::TensorFixedSize
72 // The number of indices used to access a tensor coefficient must be equal to the rank of the tensor.
104 // The number of indices used to access a tensor coefficient must be equal to the rank of the tensor.
135 // The number of indices used to access a tensor coefficient must be equal to the rank of the tensor.
220 // The number of indices used to access a tensor coefficient must be equal to the rank of the tensor.
TensorMap.h 61 // The number of dimensions used to construct a tensor must be equal to the rank of the tensor.
68 // The number of dimensions used to construct a tensor must be equal to the rank of the tensor.
74 // The number of dimensions used to construct a tensor must be equal to the rank of the tensor.
109 EIGEN_STRONG_INLINE Index rank() const { return m_dimensions.rank(); } function in class:Eigen::TensorMap
239 static_assert(sizeof...(otherIndices) + 2 == NumIndices || NumIndices == Dynamic, "Number of indices used to access a tensor coefficient must be equal to the rank of the tensor.");
  /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 52 * The rank for the data. This is application specific.
54 public int rank; field in class:SearchIndexableData
152 sb.append("rank: ");
153 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/eigen/test/
qr_fullpivoting.cpp 23 rank = internal::random<Index>(1, (std::min)(rows, cols)-1); local
28 createRandomPIMatrixOfRank(rank,rows,cols,m1);
30 VERIFY_IS_EQUAL(rank, qr.rank());
31 VERIFY_IS_EQUAL(cols - qr.rank(), qr.dimensionOfKernel());
lu.cpp 56 Index rank = internal::random<Index>(1, (std::min)(rows, cols)-1); local
63 createRandomPIMatrixOfRank(rank, rows, cols, m1);
67 // The special value 0.01 below works well in tests. Keep in mind that we're only computing the rank
85 VERIFY(rank == lu.rank());
86 VERIFY(cols - lu.rank() == lu.dimensionOfKernel());
91 VERIFY(m1image.fullPivLu().rank() == rank);
143 VERIFY(size == lu.rank());
232 VERIFY_RAISES_ASSERT(lu.rank())
    [all...]
  /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...]
  /frameworks/base/core/java/com/android/internal/statusbar/
NotificationVisibility.java 34 public int rank; field in class:NotificationVisibility
42 private NotificationVisibility(String key, int rank, boolean visibile) {
45 this.rank = rank;
53 + " rank=" + rank
60 return obtain(this.key, this.rank, this.visible);
87 out.writeInt(this.rank);
93 this.rank = in.readInt();
101 public static NotificationVisibility obtain(String key, int rank, boolean visible)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
FrequentContactsCursorBuilder.java 88 // corresponding rank in the frequents list.
92 int rank = 0; local
97 lookupKeyToRankMap.put(lookupKey, rank++);
150 // Same rank, so it's two contact records for the same contact.
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
CorrelatedRandomVectorGenerator.java 54 * the rank of the covariance matrix, and it is the dimension of the
78 /** Rank of the covariance matrix. */
79 private int rank; field in class:CorrelatedRandomVectorGenerator
111 normalized = new double[rank];
139 normalized = new double[rank];
160 /** Get the rank of the covariance matrix.
161 * The rank is the number of independent rows in the covariance
164 * @return rank of the square matrix.
168 return rank;
201 rank = 0
    [all...]
  /external/valgrind/mpi/
mpiwrap_type_test.c 224 int rank, size; local
244 MPI_Comm_rank( MPI_COMM_WORLD, &rank );
246 if (rank == 0) {
  /packages/apps/Launcher3/src/com/android/launcher3/
ItemInfo.java 93 public int rank = 0; field in class:ItemInfo
123 rank = info.rank;
147 .put(LauncherSettings.Favorites.RANK, rank);
158 rank = values.getAsInteger(LauncherSettings.Favorites.RANK);
190 + " rank=" + rank

Completed in 497 milliseconds

1 2 3 4 5 6 7 8 91011>>