/external/tensorflow/tensorflow/core/kernels/ |
D | eigen_spatial_convolutions-inl.h | 232 Index rowIndex, colIndex, otherIndex; in operator() local 233 computeBaseIndices(0, rowIndex, colIndex, otherIndex); in operator() 234 return loadCoeff(row, rowIndex, colIndex, otherIndex); in operator() 243 Index rowIndex, colIndex, otherIndex; in operator() local 244 computeBaseIndices(patchIndex, rowIndex, colIndex, otherIndex); in operator() 245 return loadCoeff(row, rowIndex, colIndex, otherIndex); in operator() 250 Index rowIndex, colIndex, otherIndex; in loadPacket() local 251 computeBaseIndices(0, rowIndex, colIndex, otherIndex); in loadPacket() 252 return loadPacket(row, rowIndex, colIndex, otherIndex); in loadPacket() 259 Index rowIndex, colIndex, otherIndex; in loadPacket() local [all …]
|
D | eigen_cuboid_convolution.h | 295 Index planeIndex, rowIndex, colIndex, otherIndex; in operator() local 296 computeBaseIndices(0, planeIndex, rowIndex, colIndex, otherIndex); in operator() 297 return loadCoeff(row, planeIndex, rowIndex, colIndex, otherIndex); in operator() 305 Index planeIndex, rowIndex, colIndex, otherIndex; in operator() local 306 computeBaseIndices(patchIndex, planeIndex, rowIndex, colIndex, otherIndex); in operator() 307 return loadCoeff(row, planeIndex, rowIndex, colIndex, otherIndex); in operator() 312 Index planeIndex, rowIndex, colIndex, otherIndex; in loadPacket() local 313 computeBaseIndices(0, planeIndex, rowIndex, colIndex, otherIndex); in loadPacket() 314 return loadPacket(row, planeIndex, rowIndex, colIndex, otherIndex); in loadPacket() 321 Index planeIndex, rowIndex, colIndex, otherIndex; in loadPacket() local [all …]
|
D | eigen_volume_patch.h | 262 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/proguard/src/proguard/classfile/editor/ |
D | ComparableConstant.java | 101 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/ |
D | TensorImagePatch.h | 332 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…
|
D | TensorVolumePatch.h | 363 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/ |
D | LiveInterval.h | 554 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/llvm-project/llvm/include/llvm/CodeGen/ |
D | LiveInterval.h | 593 const SlotIndex &otherIndex = other.beginIndex(); 594 return thisIndex < otherIndex; 873 const SlotIndex &otherIndex = other.beginIndex(); 874 return std::tie(thisIndex, Reg) < std::tie(otherIndex, other.Reg);
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | LiveInterval.h | 592 const SlotIndex &otherIndex = other.beginIndex(); 593 return thisIndex < otherIndex; 871 const SlotIndex &otherIndex = other.beginIndex(); 872 return std::tie(thisIndex, reg) < std::tie(otherIndex, other.reg);
|
/external/guava/android/guava-tests/test/com/google/common/math/ |
D | QuantilesTest.java | 257 int otherIndex = (Integer.MAX_VALUE - 1) / 3; // this divides exactly in testScale_indexes_largeVarargs_compute_doubleCollection() local 263 Quantiles.scale(scale).indexes(0, scale, otherIndex).compute(SIXTEEN_SQUARES_DOUBLES)) in testScale_indexes_largeVarargs_compute_doubleCollection() 266 0, SIXTEEN_SQUARES_MIN, scale, SIXTEEN_SQUARES_MAX, otherIndex, otherValue); in testScale_indexes_largeVarargs_compute_doubleCollection()
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | ByteString.java | 1457 otherIndex = lbsOther.getOffsetIntoBytes() + offset; in equalsRange() 1459 ++thisIndex, ++otherIndex) { in equalsRange() 1460 if (thisBytes[thisIndex] != otherBytes[otherIndex]) { in equalsRange()
|
/external/guava/guava-tests/test/com/google/common/math/ |
D | QuantilesTest.java | 257 int otherIndex = (Integer.MAX_VALUE - 1) / 3; // this divides exactly in testScale_indexes_largeVarargs_compute_doubleCollection() local 263 Quantiles.scale(scale).indexes(0, scale, otherIndex).compute(SIXTEEN_SQUARES_DOUBLES)) in testScale_indexes_largeVarargs_compute_doubleCollection() 266 0, SIXTEEN_SQUARES_MIN, scale, SIXTEEN_SQUARES_MAX, otherIndex, otherValue); in testScale_indexes_largeVarargs_compute_doubleCollection()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowParcel.java | 696 int otherIndex = other.toIndex(offset); in appendFrom() local 698 for (int i = otherIndex; i < otherEndIndex && i < other.buffer.size(); i++) { in appendFrom()
|
/external/angle/src/libANGLE/ |
D | angletypes.h | 640 const size_t otherIndex, 663 void setFactorsIndexed(const size_t index, const size_t otherIndex, const BlendStateExt &other);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | MessageFormat.java | 2128 int otherIndex = msgFormat.findOtherSubMessage(context.startIndex); in select() local 2129 … context.numberArgIndex = msgFormat.findFirstPluralNumberArg(otherIndex, context.argName); in select()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | MessageFormat.java | 2056 int otherIndex = msgFormat.findOtherSubMessage(context.startIndex); in select() local 2057 … context.numberArgIndex = msgFormat.findFirstPluralNumberArg(otherIndex, context.argName); in select()
|
/external/icu/icu4c/source/i18n/ |
D | msgfmt.cpp | 1969 int32_t otherIndex = msgFormat.findOtherSubMessage(context.startIndex); in select() local 1970 context.numberArgIndex = msgFormat.findFirstPluralNumberArg(otherIndex, context.argName); in select()
|