Home
last modified time | relevance | path

Searched refs:otherSize (Results 1 – 9 of 9) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
DCstArray.java116 int otherSize = other.size(); in compareTo() local
117 int compareSize = (thisSize < otherSize) ? thisSize : otherSize; in compareTo()
128 if (thisSize < otherSize) { in compareTo()
130 } else if (thisSize > otherSize) { in compareTo()
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DCatchTable.java71 int otherSize = other.size(); in compareTo() local
72 int checkSize = Math.min(thisSize, otherSize); in compareTo()
83 if (thisSize < otherSize) { in compareTo()
85 } else if (thisSize > otherSize) { in compareTo()
DCatchHandlerList.java143 int otherSize = other.size(); in compareTo() local
144 int checkSize = Math.min(thisSize, otherSize); in compareTo()
155 if (thisSize < otherSize) { in compareTo()
157 } else if (thisSize > otherSize) { in compareTo()
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
DbtAlignedObjectArray.h141 int otherSize = otherArray.size(); in btAlignedObjectArray() local
142 resize (otherSize); in btAlignedObjectArray()
143 otherArray.copy(0, otherSize, m_data); in btAlignedObjectArray()
496 int otherSize = otherArray.size(); in copyFromArray() local
497 resize (otherSize); in copyFromArray()
498 otherArray.copy(0, otherSize, m_data); in copyFromArray()
/external/eigen/Eigen/src/Core/products/
DTriangularSolverMatrix_MKL.h52 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; \
DTriangularSolverMatrix.h42 Index size, Index otherSize,
49 Index size, Index otherSize,
54 Index cols = otherSize;
190 Index size, Index otherSize,
197 Index size, Index otherSize,
202 Index rows = otherSize;
/external/dexmaker/src/dx/java/com/android/dx/rop/type/
DPrototype.java278 int otherSize = other.parameterTypes.size(); in compareTo() local
279 int size = Math.min(thisSize, otherSize); in compareTo()
292 if (thisSize < otherSize) { in compareTo()
294 } else if (thisSize > otherSize) { in compareTo()
/external/protobuf/java/src/main/java/com/google/protobuf/
DByteString.java397 int otherSize = other.size(); in concat() local
398 if ((long) thisSize + otherSize >= Integer.MAX_VALUE) { in concat()
400 thisSize + "+" + otherSize); in concat()
/external/icu/icu4c/source/test/intltest/
Dssearch.cpp503 int32_t otherSize = other.size() - 1; in matchesAt() local
505 if (listSize - 1 - offset < otherSize) { in matchesAt()
509 for (int32_t i = offset, j = 0; j < otherSize; i += 1, j += 1) { in matchesAt()