Home
last modified time | relevance | path

Searched refs:otherIndex (Results 1 – 11 of 11) sorted by relevance

/external/r8/src/main/java/com/android/tools/r8/utils/
DOrderedMergingIterator.java18 private int otherIndex = 0; field in OrderedMergingIterator
34 return oneIndex < one.length || otherIndex < other.length; in hasNext()
40 return getNextChecked(other, otherIndex++); in next()
42 if (otherIndex >= other.length) { in next()
45 int comparison = one[oneIndex].getKey().compareTo(other[otherIndex].getKey()); in next()
52 return other[otherIndex++]; in next()
/external/proguard/src/proguard/classfile/editor/
DComparableConstant.java101 int otherIndex = otherComparableConstant.thisIndex; in compareTo() local
103 return thisIndex < otherIndex ? -1 : in compareTo()
104 thisIndex == otherIndex ? 0 : in compareTo()
171 int otherIndex = otherInvokeDynamicConstant.getBootstrapMethodAttributeIndex();
173 result = index < otherIndex ? -1 :
174 index > otherIndex ? 1 :
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorImagePatch.h332 const Index otherIndex = (NumDims == 4) ? 0 : index / m_fastOtherStride;
333 …const Index patch2DIndex = (NumDims == 4) ? patchIndex : (index - otherIndex * m_otherStride) / m_…
358 … + origInputRow * m_rowInputStride + origInputCol * m_colInputStride + otherIndex * m_patchInputSt…
377 const Index otherIndex = (NumDims == 4) ? 0 : indices[0] / m_fastOtherStride;
378 eigen_assert(otherIndex == indices[1] / m_fastOtherStride);
384 …const Index patch2DIndex = (NumDims == 4) ? patchIndex : (indices[0] - otherIndex * m_otherStride)…
385 eigen_assert(patch2DIndex == (indices[1] - otherIndex * m_otherStride) / m_fastPatchStride);
413 … + inputRows[0] * m_rowInputStride + inputCols[0] * m_colInputStride + otherIndex * m_patchInputSt…
DTensorVolumePatch.h363 const Index otherIndex = (NumDims == 5) ? 0 : index / m_fastOtherStride;
364 …const Index patch3DIndex = (NumDims == 5) ? patchIndex : (index - otherIndex * m_otherStride) / m_…
403 otherIndex * m_otherInputStride;
424 const Index otherIndex = (NumDims == 5) ? 0 : indices[0] / m_fastOtherStride;
425 eigen_assert(otherIndex == indices[1] / m_fastOtherStride);
431 …const Index patch3DIndex = (NumDims == 5) ? patchIndex : (indices[0] - otherIndex * m_otherStride)…
432 eigen_assert(patch3DIndex == (indices[1] - otherIndex * m_otherStride) / m_fastPatchStride);
490 otherIndex * m_otherInputStride;
/external/llvm/include/llvm/CodeGen/
DLiveInterval.h554 const SlotIndex &otherIndex = other.beginIndex();
555 return thisIndex < otherIndex;
734 const SlotIndex &otherIndex = other.beginIndex();
735 return std::tie(thisIndex, reg) < std::tie(otherIndex, other.reg);
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DLiveInterval.h527 const SlotIndex &otherIndex = other.beginIndex();
528 return (thisIndex < otherIndex ||
529 (thisIndex == otherIndex && reg < other.reg));
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DByteString.java1408 otherIndex = lbsOther.getOffsetIntoBytes() + offset; in equalsRange()
1409 (thisIndex < thisLimit); ++thisIndex, ++otherIndex) { in equalsRange()
1410 if (thisBytes[thisIndex] != otherBytes[otherIndex]) { in equalsRange()
/external/messageformat/java/com/ibm/icu/simple/
DMessageFormat.java2006 int otherIndex = msgFormat.findOtherSubMessage(context.startIndex); in select() local
2007 … context.numberArgIndex = msgFormat.findFirstPluralNumberArg(otherIndex, context.argName); in select()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMessageFormat.java2099 int otherIndex = msgFormat.findOtherSubMessage(context.startIndex); in select() local
2100 … context.numberArgIndex = msgFormat.findFirstPluralNumberArg(otherIndex, context.argName); in select()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DMessageFormat.java2055 int otherIndex = msgFormat.findOtherSubMessage(context.startIndex); in select() local
2056 … context.numberArgIndex = msgFormat.findFirstPluralNumberArg(otherIndex, context.argName); in select()
/external/icu/icu4c/source/i18n/
Dmsgfmt.cpp1947 int32_t otherIndex = msgFormat.findOtherSubMessage(context.startIndex); in select() local
1948 context.numberArgIndex = msgFormat.findFirstPluralNumberArg(otherIndex, context.argName); in select()