HomeSort by relevance Sort by last modified time
    Searched full:othersize (Results 1 - 23 of 23) sorted by null

  /external/eigen/test/
product_symm.cpp 12 template<typename Scalar, int Size, int OtherSize> void symm(int size = Size, int othersize = OtherSize)
17 typedef Matrix<Scalar, Size, OtherSize> Rhs1;
18 typedef Matrix<Scalar, OtherSize, Size> Rhs2;
19 enum { order = OtherSize==1 ? 0 : RowMajor };
20 typedef Matrix<Scalar, Size, OtherSize,order> Rhs3;
31 Rhs1 rhs1 = Rhs1::Random(cols, othersize), rhs12(cols, othersize), rhs13(cols, othersize);
    [all...]
product_mmtr.cpp 27 DenseIndex othersize = internal::random<DenseIndex>(1,200); local
33 MatrixColMaj soc(size,othersize); soc.setRandom();
34 MatrixColMaj osc(othersize,size); osc.setRandom();
35 MatrixRowMaj sor(size,othersize); sor.setRandom();
36 MatrixRowMaj osr(othersize,size); osr.setRandom();
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstArray.java 117 int otherSize = other.size();
118 int compareSize = (thisSize < otherSize) ? thisSize : otherSize;
129 if (thisSize < otherSize) {
131 } else if (thisSize > otherSize) {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstArray.java 116 int otherSize = other.size();
117 int compareSize = (thisSize < otherSize) ? thisSize : otherSize;
128 if (thisSize < otherSize) {
130 } else if (thisSize > otherSize) {
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstArray.java 116 int otherSize = other.size();
117 int compareSize = (thisSize < otherSize) ? thisSize : otherSize;
128 if (thisSize < otherSize) {
130 } else if (thisSize > otherSize) {
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchHandlerList.java 143 int otherSize = other.size();
144 int checkSize = Math.min(thisSize, otherSize);
155 if (thisSize < otherSize) {
157 } else if (thisSize > otherSize) {
CatchTable.java 71 int otherSize = other.size();
72 int checkSize = Math.min(thisSize, otherSize);
83 if (thisSize < otherSize) {
85 } else if (thisSize > otherSize) {
  /dalvik/dx/src/com/android/dx/dex/code/
CatchHandlerList.java 143 int otherSize = other.size();
144 int checkSize = Math.min(thisSize, otherSize);
155 if (thisSize < otherSize) {
157 } else if (thisSize > otherSize) {
CatchTable.java 71 int otherSize = other.size();
72 int checkSize = Math.min(thisSize, otherSize);
83 if (thisSize < otherSize) {
85 } else if (thisSize > otherSize) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
CatchHandlerList.java 143 int otherSize = other.size();
144 int checkSize = Math.min(thisSize, otherSize);
155 if (thisSize < otherSize) {
157 } else if (thisSize > otherSize) {
CatchTable.java 71 int otherSize = other.size();
72 int checkSize = Math.min(thisSize, otherSize);
83 if (thisSize < otherSize) {
85 } else if (thisSize > otherSize) {
  /external/eigen/Eigen/src/Core/products/
TriangularSolverMatrix_MKL.h 52 Index size, Index otherSize, \
56 MKL_INT m = size, n = otherSize, lda, ldb; \
107 Index size, Index otherSize, \
111 MKL_INT m = otherSize, n = size, lda, ldb; \
TriangularSolverMatrix.h 42 Index size, Index otherSize,
47 Index cols = otherSize;
184 Index size, Index otherSize,
189 Index rows = otherSize;
  /external/webkit/Source/WebCore/dom/
SpaceSplitString.cpp 80 size_t otherSize = other.m_vector.size();
81 for (size_t i = 0; i < otherSize; ++i) {
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
TypeListItem.java 145 int otherSize = o.typeList.length;
146 int size = Math.min(thisSize, otherSize);
155 if (thisSize < otherSize) {
157 } else if (thisSize > otherSize) {
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 274 int otherSize = other.parameterTypes.size();
275 int size = Math.min(thisSize, otherSize);
288 if (thisSize < otherSize) {
290 } else if (thisSize > otherSize) {
  /dalvik/dx/src/com/android/dx/rop/type/
Prototype.java 278 int otherSize = other.parameterTypes.size();
279 int size = Math.min(thisSize, otherSize);
292 if (thisSize < otherSize) {
294 } else if (thisSize > otherSize) {
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Prototype.java 278 int otherSize = other.parameterTypes.size();
279 int size = Math.min(thisSize, otherSize);
292 if (thisSize < otherSize) {
294 } else if (thisSize > otherSize) {
  /external/eigen/Eigen/src/Core/
SolveTriangular.h 94 const Index othersize = Side==OnTheLeft? rhs.cols() : rhs.rows(); local
103 ::run(size, othersize, &actualLhs.coeffRef(0,0), actualLhs.outerStride(), &rhs.coeffRef(0,0), rhs.outerStride(), blocking);
PlainObjectBase.h 298 const Index othersize = other.rows()*other.cols(); local
302 resize(1, othersize);
307 resize(othersize, 1);
    [all...]
  /external/icu4c/test/intltest/
ssearch.cpp 854 int32_t otherSize = other.size() - 1;
856 if (listSize - 1 - offset < otherSize) {
860 for (int32_t i = offset, j = 0; j < otherSize; i += 1, j += 1) {
    [all...]
  /external/libvorbis/lib/
psy.c 1031 /* dual pupose; quantized energy (if flag set), othersize fabs(raw) */
    [all...]
  /external/zxing/core/
core.jar 

Completed in 457 milliseconds