/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/ |
MultivariateSummaryStatistics.java | 53 * MultivariateStatistics instance with dimension n and then use 76 /** Dimension of the data. */ 108 * @param k dimension of the data 164 * Returns the dimension of the data 165 * @return The dimension of the data 412 * @throws DimensionMismatchException if the array dimension 442 * @throws DimensionMismatchException if the array dimension 469 * @throws DimensionMismatchException if the array dimension 496 * @throws DimensionMismatchException if the array dimension 523 * @throws DimensionMismatchException if the array dimension [all...] |
/external/doclava/src/com/google/doclava/ |
LinkReference.java | 166 int dimension = 0; local 192 dimension++; 208 for (int j = 0; j < dimension; j++) { 214 dimension = 0;
|
/external/eigen/lapack/ |
clarfb.f | 99 *> V is COMPLEX array, dimension 109 *> The leading dimension of the array V. 117 *> T is COMPLEX array, dimension (LDT,K) 125 *> The leading dimension of the array T. LDT >= K. 130 *> C is COMPLEX array, dimension (LDC,N) 138 *> The leading dimension of the array C. LDC >= max(1,M). 143 *> WORK is COMPLEX array, dimension (LDWORK,K) 149 *> The leading dimension of the array WORK.
|
dlarfb.f | 99 *> V is DOUBLE PRECISION array, dimension 109 *> The leading dimension of the array V. 117 *> T is DOUBLE PRECISION array, dimension (LDT,K) 125 *> The leading dimension of the array T. LDT >= K. 130 *> C is DOUBLE PRECISION array, dimension (LDC,N) 138 *> The leading dimension of the array C. LDC >= max(1,M). 143 *> WORK is DOUBLE PRECISION array, dimension (LDWORK,K) 149 *> The leading dimension of the array WORK.
|
slarfb.f | 99 *> V is REAL array, dimension 109 *> The leading dimension of the array V. 117 *> T is REAL array, dimension (LDT,K) 125 *> The leading dimension of the array T. LDT >= K. 130 *> C is REAL array, dimension (LDC,N) 138 *> The leading dimension of the array C. LDC >= max(1,M). 143 *> WORK is REAL array, dimension (LDWORK,K) 149 *> The leading dimension of the array WORK.
|
zlarfb.f | 99 *> V is COMPLEX*16 array, dimension 109 *> The leading dimension of the array V. 117 *> T is COMPLEX*16 array, dimension (LDT,K) 125 *> The leading dimension of the array T. LDT >= K. 130 *> C is COMPLEX*16 array, dimension (LDC,N) 138 *> The leading dimension of the array C. LDC >= max(1,M). 143 *> WORK is COMPLEX*16 array, dimension (LDWORK,K) 149 *> The leading dimension of the array WORK.
|
clacgv.f | 50 *> X is COMPLEX array, dimension
|
zlacgv.f | 50 *> X is COMPLEX*16 array, dimension
|
/system/tools/hidl/ |
ArrayType.h | 30 // Extends existing array by adding another dimension. 138 size_t dimension() const;
|
ArrayType.cpp | 233 << dimension() 308 << dimension() 498 } else { // Multi-dimension array case. 535 size_t ArrayType::dimension() const { function in class:android::ArrayType
|
/device/google/marlin/camera/QCamera2/stack/mm-camera-test/src/ |
mm_qcamera_commands.c | 38 int pr_client_socket_id, cam_dimension_t dimension, 55 NULL, TUNE_PREVCMD_SETDIM, (void *)&dimension,
|
/device/huawei/angler/camera/QCamera2/stack/mm-camera-test/src/ |
mm_qcamera_commands.c | 38 int pr_client_socket_id, cam_dimension_t dimension, 55 NULL, TUNE_PREVCMD_SETDIM, (void *)&dimension,
|
/device/lge/bullhead/camera/QCamera2/stack/mm-camera-test/src/ |
mm_qcamera_commands.c | 38 int pr_client_socket_id, cam_dimension_t dimension, 55 NULL, TUNE_PREVCMD_SETDIM, (void *)&dimension,
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
OpenMapRealVector.java | 43 /** Dimension of the vector. */ 63 * Construct a (dimension)-length vector of zeros. 64 * @param dimension size of the vector 66 public OpenMapRealVector(int dimension) { 67 this(dimension, DEFAULT_ZERO_TOLERANCE); 71 * Construct a (dimension)-length vector of zeros, specifying zero tolerance. 72 * @param dimension Size of the vector 75 public OpenMapRealVector(int dimension, double epsilon) { 76 virtualSize = dimension; 94 * @param dimension The size of the vecto [all...] |
SparseFieldVector.java | 44 /** Dimension of the vector. */ 63 * Construct a (dimension)-length vector of zeros. 65 * @param dimension Size of the vector 67 public SparseFieldVector(Field<T> field, int dimension) { 69 virtualSize = dimension; 88 * @param dimension The size of the vector 91 public SparseFieldVector(Field<T> field, int dimension, int expectedSize) { 93 virtualSize = dimension; 558 * Check if instance dimension is equal to some expected value. 561 * expected dimension [all...] |
/external/eigen/unsupported/test/ |
cxx11_tensor_of_strings.cpp | 74 VERIFY_IS_EQUAL(result.dimension(0), 2); 75 VERIFY_IS_EQUAL(result.dimension(1), 6);
|
/external/libjpeg-turbo/ |
turbojpeg.h | 594 * Compute the scaled value of <tt>dimension</tt> using the given scaling 595 * factor. This macro performs the integer equivalent of <tt>ceil(dimension * 598 #define TJSCALED(dimension, scalingFactor) ((dimension * scalingFactor.num \ [all...] |
/frameworks/base/libs/hwui/renderstate/ |
OffscreenBufferPool.cpp | 102 uint32_t OffscreenBuffer::computeIdealDimension(uint32_t dimension) { 103 return uint32_t(ceilf(dimension / float(LAYER_SIZE)) * LAYER_SIZE);
|
/prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-cloudwatchmetrics/1.11.18/ |
aws-java-sdk-cloudwatchmetrics-1.11.18.jar | |
/external/deqp/external/vulkancts/modules/vulkan/image/ |
vktImageMultisampleLoadStoreTests.cpp | 78 const int dimension = (caseDef.singleLayerBind ? caseDef.texture.layerDimension() : caseDef.texture.dimension()); local 79 const std::string texelCoordStr = (dimension == 1 ? "gx" : dimension == 2 ? "ivec2(gx, gy)" : dimension == 3 ? "ivec3(gx, gy, gz)" : "");
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
BuildResults.java | 128 * Return the number of stored values for the default dimension 130 * @return the number of stored values for the default dimension 140 * Return the number of stored values for the given dimension. 142 * @param dim_id The id of the dimension (see {@link Dim#getId()}) 143 * @return the number of stored values for the given dimension 187 * Returns the standard deviation of the default dimension computed 200 * Returns the standard deviation of the given dimension computed 203 * @param dim_id The id of the dimension (see {@link Dim#getId()}) 240 * Return the index of the dimension corresponding to the given 241 * dimension id (see {@link Dim#getId()} 460 Dim dimension = (Dim) PerformanceTestPlugin.getDimension(dim_id); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
UiElementPullParser.java | 557 * Adds padding to an existing dimension. 574 * @param s the dimension value from an XML attribute 614 // We only support dimension-type values, so try to parse the unit for dimension 615 DimensionEntry dimension = parseDimension(end); local 616 if (dimension != null) { 619 switch (dimension.type) {
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
DeprecatedAPIChecker.java | 449 int dimension = idx; local 450 char sigChar = tName.charAt(dimension); 455 elemType = tName.substring(dimension + 1, tName.length() - 1); 471 for (int i = 0; i < dimension; i++) {
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/ |
domain.h | 154 int cloog_domain_lazy_isconstant(CloogDomain *domain, int dimension,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/ |
domain.h | 154 int cloog_domain_lazy_isconstant(CloogDomain *domain, int dimension,
|