HomeSort by relevance Sort by last modified time
    Searched refs:dimension (Results 51 - 75 of 213) sorted by null

1 23 4 5 6 7 8 9

  /external/eigen/lapack/
dlarf.f 72 *> V is DOUBLE PRECISION array, dimension
93 *> C is DOUBLE PRECISION array, dimension (LDC,N)
102 *> The leading dimension of the array C. LDC >= max(1,M).
107 *> WORK is DOUBLE PRECISION array, dimension
slarf.f 72 *> V is REAL array, dimension
93 *> C is REAL array, dimension (LDC,N)
102 *> The leading dimension of the array C. LDC >= max(1,M).
107 *> WORK is REAL array, dimension
zlarf.f 76 *> V is COMPLEX*16 array, dimension
97 *> C is COMPLEX*16 array, dimension (LDC,N)
106 *> The leading dimension of the array C. LDC >= max(1,M).
111 *> WORK is COMPLEX*16 array, dimension
ilaclc.f 56 *> A is COMPLEX array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
ilaclr.f 56 *> A is array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
iladlc.f 56 *> A is DOUBLE PRECISION array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
iladlr.f 56 *> A is DOUBLE PRECISION array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
ilaslc.f 56 *> A is REAL array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
ilaslr.f 56 *> A is REAL array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
ilazlc.f 56 *> A is COMPLEX*16 array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
ilazlr.f 56 *> A is COMPLEX*16 array, dimension (LDA,N)
63 *> The leading dimension of the array A. LDA >= max(1,M).
clarft.f 91 *> V is COMPLEX array, dimension
100 *> The leading dimension of the array V.
106 *> TAU is COMPLEX array, dimension (K)
113 *> T is COMPLEX array, dimension (LDT,K)
122 *> The leading dimension of the array T. LDT >= K.
dlarft.f 91 *> V is DOUBLE PRECISION array, dimension
100 *> The leading dimension of the array V.
106 *> TAU is DOUBLE PRECISION array, dimension (K)
113 *> T is DOUBLE PRECISION array, dimension (LDT,K)
122 *> The leading dimension of the array T. LDT >= K.
slarft.f 91 *> V is REAL array, dimension
100 *> The leading dimension of the array V.
106 *> TAU is REAL array, dimension (K)
113 *> T is REAL array, dimension (LDT,K)
122 *> The leading dimension of the array T. LDT >= K.
zlarft.f 91 *> V is COMPLEX*16 array, dimension
100 *> The leading dimension of the array V.
106 *> TAU is COMPLEX*16 array, dimension (K)
113 *> T is COMPLEX*16 array, dimension (LDT,K)
122 *> The leading dimension of the array T. LDT >= K.
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.
  /frameworks/base/core/tests/coretests/src/android/view/
ZeroSizedTest.java 28 * Builds the drawing cache of Views of various dimension. The assumption is that
29 * a View with a 0-sized dimension (width or height) will always have a null
47 mWithDimension = activity.findViewById(R.id.dimension);
  /frameworks/support/v7/palette/src/android/support/v7/graphics/
ColorCutQuantizer.java 35 * The color space is represented as a 3-dimensional cube with each dimension being an RGB
244 * Split this color box at the mid-point along it's longest dimension
253 // find median along the longest dimension
266 * @return the dimension which this box is largest in
285 * This is calculated by finding the longest color dimension, and then sorting the
286 * sub-array based on that dimension value in each color. The colors are then iterated over
287 * until a color is found with at least the midpoint of the whole box's dimension midpoint.
294 // We need to sort the colors in this box based on the longest color dimension.
296 // it's most significant is the desired dimension
359 * @return the midpoint of this box in the given {@code dimension}
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ResourceUtils.java 219 public static boolean isValidDimensionPixelSize(final int dimension) {
220 return dimension > 0;
224 public static boolean isValidDimensionPixelOffset(final int dimension) {
225 return dimension >= 0;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDimensionTest.cpp 40 void PrintTo(const HTMLDimension& dimension, ::std::ostream* os)
42 *os << "HTMLDimension => type: " << dimension.type() << ", value=" << dimension.value();
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Still.cpp 422 /* set_parm will return corrected dimension based on aspect ratio and
1437 cam_ctrl_dimension_t dimension; local
    [all...]
  /device/lge/mako/camera/
QCameraHWI_Still.cpp 491 /* set_parm will return corrected dimension based on aspect ratio and
1602 cam_ctrl_dimension_t dimension; local
    [all...]
  /external/chromium_org/ui/gfx/
icon_util.cc 40 // Windows icons. For each desired image dimension, it chooses the most
52 int dimension = IconUtil::kIconDimensions[i]; local
53 gfx::Size size(dimension, dimension);
63 if (dimension > IconUtil::kMediumIconSize &&
75 // There is no |dimension|x|dimension| source image.
84 dimension, dimension);
  /external/aac/libAACdec/src/
aacdec_hcr.cpp 167 UCHAR dimension);
1050 UCHAR dimension; local
    [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;

Completed in 384 milliseconds

1 23 4 5 6 7 8 9