Home
last modified time | relevance | path

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

/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/tensorflow/tensorflow/core/kernels/
Deigen_spatial_convolutions-inl.h226 Index rowIndex, colIndex, otherIndex; in operator() local
227 computeBaseIndices(0, rowIndex, colIndex, otherIndex); in operator()
228 return loadCoeff(row, rowIndex, colIndex, otherIndex); in operator()
237 Index rowIndex, colIndex, otherIndex; in operator() local
238 computeBaseIndices(patchIndex, rowIndex, colIndex, otherIndex); in operator()
239 return loadCoeff(row, rowIndex, colIndex, otherIndex); in operator()
244 Index rowIndex, colIndex, otherIndex; in loadPacket() local
245 computeBaseIndices(0, rowIndex, colIndex, otherIndex); in loadPacket()
246 return loadPacket(row, rowIndex, colIndex, otherIndex); in loadPacket()
253 Index rowIndex, colIndex, otherIndex; in loadPacket() local
[all …]
Deigen_cuboid_convolution.h293 Index planeIndex, rowIndex, colIndex, otherIndex; in operator() local
294 computeBaseIndices(0, planeIndex, rowIndex, colIndex, otherIndex); in operator()
295 return loadCoeff(row, planeIndex, rowIndex, colIndex, otherIndex); in operator()
303 Index planeIndex, rowIndex, colIndex, otherIndex; in operator() local
304 computeBaseIndices(patchIndex, planeIndex, rowIndex, colIndex, otherIndex); in operator()
305 return loadCoeff(row, planeIndex, rowIndex, colIndex, otherIndex); in operator()
310 Index planeIndex, rowIndex, colIndex, otherIndex; in loadPacket() local
311 computeBaseIndices(0, planeIndex, rowIndex, colIndex, otherIndex); in loadPacket()
312 return loadPacket(row, planeIndex, rowIndex, colIndex, otherIndex); in loadPacket()
319 Index planeIndex, rowIndex, colIndex, otherIndex; in loadPacket() local
[all …]
Deigen_volume_patch.h262 const Index otherIndex = (NumDims == 5) ? 0 : index / m_fastOtherStride; in coeff() local
266 : (index - otherIndex * m_otherStride) / m_fastPatchStride; in coeff()
327 otherIndex * m_otherInputStride; in coeff()
349 const Index otherIndex = in packet() local
351 eigen_assert(otherIndex == indices[1] / m_fastOtherStride); in packet()
361 : (indices[0] - otherIndex * m_otherStride) / m_fastPatchStride; in packet()
363 (indices[1] - otherIndex * m_otherStride) / m_fastPatchStride); in packet()
426 otherIndex * m_otherInputStride; in packet()
/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DLiveInterval.h589 const SlotIndex &otherIndex = other.beginIndex();
590 return thisIndex < otherIndex;
798 const SlotIndex &otherIndex = other.beginIndex();
799 return std::tie(thisIndex, reg) < std::tie(otherIndex, 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/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowParcel.java675 int otherIndex = other.toIndex(offset); in appendFrom() local
677 for (int i = otherIndex; i < otherEndIndex && i < other.buffer.size(); i++) { in appendFrom()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DMessageFormat.java2056 int otherIndex = msgFormat.findOtherSubMessage(context.startIndex); in select() local
2057 … context.numberArgIndex = msgFormat.findFirstPluralNumberArg(otherIndex, context.argName); in select()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMessageFormat.java2103 int otherIndex = msgFormat.findOtherSubMessage(context.startIndex); in select() local
2104 … context.numberArgIndex = msgFormat.findFirstPluralNumberArg(otherIndex, context.argName); in select()
/external/icu/icu4c/source/i18n/
Dmsgfmt.cpp1957 int32_t otherIndex = msgFormat.findOtherSubMessage(context.startIndex); in select() local
1958 context.numberArgIndex = msgFormat.findFirstPluralNumberArg(otherIndex, context.argName); in select()