Home
last modified time | relevance | path

Searched refs:firstIndex (Results 1 – 25 of 92) sorted by relevance

1234

/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/helper/
DAbbreviator.java45 int firstIndex = filename.indexOf(folderSeparator, invariantPrefixLength); in abbreviate() local
46 if (firstIndex == -1) { in abbreviate()
51 buf.append(filename.substring(0, firstIndex + 1)); in abbreviate()
53 int nextIndex = computeNextIndex(filename, firstIndex); in abbreviate()
70 int computeNextIndex(String filename, int firstIndex) { in computeNextIndex() argument
71 int nextIndex = firstIndex + 1; in computeNextIndex()
74 while (nextIndex < firstIndex + minToRemove) { in computeNextIndex()
/external/proguard/src/proguard/classfile/util/
DInternalTypeEnumeration.java37 private int firstIndex; field in InternalTypeEnumeration
48 this.firstIndex = descriptor.indexOf(ClassConstants.METHOD_ARGUMENTS_OPEN); in InternalTypeEnumeration()
50 this.index = firstIndex + 1; in InternalTypeEnumeration()
64 return firstIndex >= 0; in isMethodSignature()
74 return descriptor.substring(0, firstIndex); in formalTypeParameters()
192 if (enumeration.firstIndex >= 0) in main()
/external/eigen/bench/btl/libs/blitz/
Dblitz_interface.hh87 firstIndex i; in matrix_matrix_product()
95 firstIndex i; in ata_product()
103 firstIndex i; in aat_product()
111 firstIndex i; in matrix_vector_product()
118 firstIndex i; in atv_product()
125 firstIndex i; in axpy()
/external/skqp/src/core/
DSkTDynamicHash.h91 int index = this->firstIndex(key); in find()
145 int index = this->firstIndex(key); in countCollisions()
209 int index = this->firstIndex(key); in innerAdd()
227 const int firstIndex = this->firstIndex(key); in innerRemove() local
228 int index = firstIndex; in innerRemove()
279 int firstIndex(const Key& key) const { in firstIndex() function
/external/skia/src/core/
DSkTDynamicHash.h91 int index = this->firstIndex(key); in find()
145 int index = this->firstIndex(key); in countCollisions()
209 int index = this->firstIndex(key); in innerAdd()
227 const int firstIndex = this->firstIndex(key); in innerRemove() local
228 int index = firstIndex; in innerRemove()
279 int firstIndex(const Key& key) const { in firstIndex() function
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorReduction.h131 …EIGEN_STRONG_INLINE void reduce(const Self& self, typename Self::Index firstIndex, Op& reducer, ty…
134 const typename Self::Index input = firstIndex + j * self.m_reducedStrides[DimIndex];
141 …EIGEN_STRONG_INLINE void reduce(const Self& self, typename Self::Index firstIndex, Op& reducer, ty…
143 const typename Self::Index input = firstIndex + j * self.m_reducedStrides[0];
157 …me Self::CoeffReturnType reduce(const Self& self, typename Self::Index firstIndex, typename Self::…
160 reducer.reduce(self.m_impl.coeff(firstIndex + j), &accum);
168 …me Self::CoeffReturnType reduce(const Self& self, typename Self::Index firstIndex, typename Self::…
173 reducer.reducePacket(self.m_impl.template packet<Unaligned>(firstIndex + j), &p);
177 reducer.reduce(self.m_impl.coeff(firstIndex + j), &accum);
192 …EIGEN_STRONG_INLINE void reduce(const Self& self, typename Self::Index firstIndex, Op& reducer, ty…
[all …]
DTensorFixedSize.h70 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar& coeff(Index firstIndex, IndexTypes... otherInd… in coeff() argument
74 return coeff(array<Index, NumIndices>{{firstIndex, otherIndices...}}); in coeff()
102 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar& coeffRef(Index firstIndex, IndexTypes... otherIndice… in coeffRef() argument
106 return coeffRef(array<Index, NumIndices>{{firstIndex, otherIndices...}}); in coeffRef()
133 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar& operator()(Index firstIndex, IndexTypes... oth… in operator()
137 return this->operator()(array<Index, NumIndices>{{firstIndex, otherIndices...}}); in operator()
218 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar& operator()(Index firstIndex, IndexTypes... otherIndi… in operator()
222 return operator()(array<Index, NumIndices>{{firstIndex, otherIndices...}}); in operator()
DTensor.h115 …EIGEN_DEVICE_FUNC inline const Scalar& coeff(Index firstIndex, Index secondIndex, IndexTypes... ot… in coeff() argument
119 return coeff(array<Index, NumIndices>{{firstIndex, secondIndex, otherIndices...}}); in coeff()
155 inline Scalar& coeffRef(Index firstIndex, Index secondIndex, IndexTypes... otherIndices) in coeffRef() argument
159 return coeffRef(array<Index, NumIndices>{{firstIndex, secondIndex, otherIndices...}}); in coeffRef()
195 …inline const Scalar& operator()(Index firstIndex, Index secondIndex, IndexTypes... otherIndices) c… in operator()
199 return this->operator()(array<Index, NumIndices>{{firstIndex, secondIndex, otherIndices...}}); in operator()
262 inline Scalar& operator()(Index firstIndex, Index secondIndex, IndexTypes... otherIndices) in operator()
266 return operator()(array<Index, NumIndices>{{firstIndex, secondIndex, otherIndices...}}); in operator()
DTensorMap.h150 …EIGEN_STRONG_INLINE const Scalar& operator()(Index firstIndex, Index secondIndex, IndexTypes... ot… in operator()
154 …const Index index = m_dimensions.IndexOfRowMajor(array<Index, NumIndices>{{firstIndex, secondIndex… in operator()
157 …const Index index = m_dimensions.IndexOfColMajor(array<Index, NumIndices>{{firstIndex, secondIndex… in operator()
237 …EIGEN_STRONG_INLINE Scalar& operator()(Index firstIndex, Index secondIndex, IndexTypes... otherInd… in operator()
242 …const Index index = m_dimensions.IndexOfRowMajor(array<Index, NumDims>{{firstIndex, secondIndex, o… in operator()
245 …const Index index = m_dimensions.IndexOfColMajor(array<Index, NumDims>{{firstIndex, secondIndex, o… in operator()
DTensorRef.h198 EIGEN_STRONG_INLINE const Scalar operator()(Index firstIndex, IndexTypes... otherIndices) const in operator()
201 const array<Index, num_indices> indices{{firstIndex, otherIndices...}}; in operator()
205 EIGEN_STRONG_INLINE Scalar& coeffRef(Index firstIndex, IndexTypes... otherIndices) in coeffRef() argument
208 const array<Index, num_indices> indices{{firstIndex, otherIndices...}}; in coeffRef()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DJNITypeParser.java48 int firstIndex = signature.indexOf('['); in typeNameToSignature() local
49 int index = firstIndex; in typeNameToSignature()
55 if (firstIndex != -1) { in typeNameToSignature()
56 signature = signature.substring(0, firstIndex); in typeNameToSignature()
DConcreteMethodImpl.java79 private long firstIndex = -1; field in ConcreteMethodImpl
157 if (firstIndex == -1) { in locationOfCodeIndex()
164 if (codeIndex < firstIndex || codeIndex > lastIndex) { in locationOfCodeIndex()
174 if (firstIndex == -1) { in codeIndexToLineInfo()
181 if (codeIndex < firstIndex || codeIndex > lastIndex) { in codeIndexToLineInfo()
417 firstIndex = lntab.start; in getBaseLocations()
429 firstIndex); in getBaseLocations()
/external/skia/src/gpu/ccpr/
DGrCCFiller.cpp242 SkTArray<int32_t, true>& indices, int firstIndex, in emit_recursive_fan() argument
251 out++->set(pts[indices[firstIndex]], pts[indices[firstIndex + oneThirdCount]], in emit_recursive_fan()
252 pts[indices[firstIndex + twoThirdsCount]], devToAtlasOffset); in emit_recursive_fan()
254 out = emit_recursive_fan(pts, indices, firstIndex, oneThirdCount + 1, devToAtlasOffset, out); in emit_recursive_fan()
255 out = emit_recursive_fan(pts, indices, firstIndex + oneThirdCount, in emit_recursive_fan()
258 int endIndex = firstIndex + indexCount; in emit_recursive_fan()
260 indices[endIndex] = indices[firstIndex]; in emit_recursive_fan()
261 out = emit_recursive_fan(pts, indices, firstIndex + twoThirdsCount, in emit_recursive_fan()
/external/skqp/src/gpu/ccpr/
DGrCCFiller.cpp242 SkTArray<int32_t, true>& indices, int firstIndex, in emit_recursive_fan() argument
251 out++->set(pts[indices[firstIndex]], pts[indices[firstIndex + oneThirdCount]], in emit_recursive_fan()
252 pts[indices[firstIndex + twoThirdsCount]], devToAtlasOffset); in emit_recursive_fan()
254 out = emit_recursive_fan(pts, indices, firstIndex, oneThirdCount + 1, devToAtlasOffset, out); in emit_recursive_fan()
255 out = emit_recursive_fan(pts, indices, firstIndex + oneThirdCount, in emit_recursive_fan()
258 int endIndex = firstIndex + indexCount; in emit_recursive_fan()
260 indices[endIndex] = indices[firstIndex]; in emit_recursive_fan()
261 out = emit_recursive_fan(pts, indices, firstIndex + twoThirdsCount, in emit_recursive_fan()
/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktBasicDrawTests.cpp153 params.firstIndex = firstIdx; in DrawIndexedParams()
193 cmd.firstIndex = firstIdx; in addCommand()
689 de::Random rnd (SEED ^ m_data.params.firstIndex ^ m_data.params.indexCount); in generateDrawData()
690 const deUint32 indexSize = m_data.params.firstIndex + m_data.params.indexCount; in generateDrawData()
702 m_data.indexes[m_data.params.firstIndex + idx] = vertexIdx; in generateDrawData()
709 …nt32>::const_iterator indexIt = m_data.indexes.begin() + m_data.params.firstIndex; indexIt != m_da… in generateDrawData()
768 …, m_data.params.indexCount, m_data.params.instanceCount, m_data.params.firstIndex, m_data.params.v… in iterate()
781 …for (std::vector<deUint32>::const_iterator it = m_data.indexes.begin() + m_data.params.firstIndex;… in iterate()
936 de::Random rnd (SEED ^ m_data.commands[0].firstIndex ^ m_data.commands[0].indexCount); in generateDrawData()
943 const deUint32 index = it->firstIndex + it->indexCount; in generateDrawData()
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
DSetValuesTest.java113 int firstIndex, int length) { in checkArrayRegion() argument
119 packet.setNextValueAsInt(firstIndex); in checkArrayRegion()
133 packet.setNextValueAsInt(firstIndex); in checkArrayRegion()
DGetValuesTest.java175 private void checkArrayRegion(long arrayID, int error, int firstIndex, int length, in checkArrayRegion() argument
182 packet.setNextValueAsInt(firstIndex); in checkArrayRegion()
217 value.getIntValue(), i + firstIndex); in checkArrayRegion()
223 Integer.parseInt(s), i + firstIndex); in checkArrayRegion()
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DListRemoveTester.java43 int firstIndex = getList().indexOf(duplicate); in testRemove_duplicate() local
51 firstIndex == getList().indexOf(duplicate)); in testRemove_duplicate()
/external/cldr/tools/java/org/unicode/cldr/icu/
DICUResourceWriter.java704 int firstIndex = str.indexOf("&", startIndex); in write() local
706 if (firstIndex > -1) { in write()
707 … if (startIndex != (firstIndex - 1) && startIndex != firstIndex && firstIndex < endIndex) { in write()
708 if (str.charAt(firstIndex - 1) != 0x27) { in write()
709 endIndex = firstIndex; in write()
713 … while ((nextIndex = str.indexOf("&", firstIndex + 1)) != -1 && nextIndex < endIndex) { in write()
715 if (nextIndex > -1 && firstIndex != nextIndex) { in write()
720 firstIndex = nextIndex; in write()
/external/skia/src/gpu/ops/
DGrAALinearizingConvexPathRenderer.cpp86 uint16_t firstIndex, in extract_verts() argument
94 idxs[i] = tess.index(i) + firstIndex; in extract_verts()
214 int firstIndex; in recordDraw() local
215 uint16_t* idxs = target->makeIndexSpace(indexCount, &indexBuffer, &firstIndex); in recordDraw()
222 mesh->setIndexed(std::move(indexBuffer), indexCount, firstIndex, 0, vertexCount - 1, in recordDraw()
DGrDrawVerticesOp.cpp67 int firstIndex);
300 int firstIndex = 0; in drawVolatile() local
303 indices = target->makeIndexSpace(fIndexCount, &indexBuffer, &firstIndex); in drawVolatile()
319 firstIndex); in drawVolatile()
499 int firstIndex) { in drawVertices() argument
502 mesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertexCount - 1, in drawVertices()
/external/skqp/src/gpu/ops/
DGrAALinearizingConvexPathRenderer.cpp86 uint16_t firstIndex, in extract_verts() argument
94 idxs[i] = tess.index(i) + firstIndex; in extract_verts()
213 int firstIndex; in draw() local
214 uint16_t* idxs = target->makeIndexSpace(indexCount, &indexBuffer, &firstIndex); in draw()
221 mesh->setIndexed(std::move(indexBuffer), indexCount, firstIndex, 0, vertexCount - 1, in draw()
DGrDrawVerticesOp.cpp239 int firstIndex = 0; in drawVolatile() local
242 indices = target->makeIndexSpace(fIndexCount, &indexBuffer, &firstIndex); in drawVolatile()
259 firstIndex); in drawVolatile()
466 int firstIndex) { in drawVertices() argument
469 mesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertexCount - 1, in drawVertices()
/external/deqp/doc/testspecs/GLES31/
Dfunctional.draw_indirect.txt55 with both firstIndex = 0 and firstIndex = 1 and compare results to
/external/lzma/CPP/Windows/Control/
DListView.h113 …bool RedrawItems(int firstIndex, int lastIndex) { return BOOLToBool(ListView_RedrawItems(_window, in RedrawItems() argument

1234