Home
last modified time | relevance | path

Searched full:index (Results 1 – 25 of 11560) sorted by relevance

12345678910>>...463

/external/proguard/src/proguard/classfile/attribute/visitor/
DMultiAttributeVisitor.java81 for (int index = 0; index < attributeVisitors.length; index++) in visitUnknownAttribute()
83 attributeVisitors[index].visitUnknownAttribute(clazz, unknownAttribute); in visitUnknownAttribute()
90 for (int index = 0; index < attributeVisitors.length; index++) in visitBootstrapMethodsAttribute()
92 … attributeVisitors[index].visitBootstrapMethodsAttribute(clazz, bootstrapMethodsAttribute); in visitBootstrapMethodsAttribute()
99 for (int index = 0; index < attributeVisitors.length; index++) in visitSourceFileAttribute()
101 attributeVisitors[index].visitSourceFileAttribute(clazz, sourceFileAttribute); in visitSourceFileAttribute()
108 for (int index = 0; index < attributeVisitors.length; index++) in visitSourceDirAttribute()
110 attributeVisitors[index].visitSourceDirAttribute(clazz, sourceDirAttribute); in visitSourceDirAttribute()
117 for (int index = 0; index < attributeVisitors.length; index++) in visitInnerClassesAttribute()
119 attributeVisitors[index].visitInnerClassesAttribute(clazz, innerClassesAttribute); in visitInnerClassesAttribute()
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorMap.h34 typedef typename internal::traits<PlainObjectType>::Index Index; typedef
49 static const Index NumIndices = PlainObjectType::NumIndices;
67 …EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index firstDimension, IndexTypes... otherDim… in TensorMap()
73 …EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index firstDimension) : m_data(dataPtr), m_d… in TensorMap()
78 …EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index dim1, Index dim2) : m_data(dataPtr), m… in TensorMap()
82 …EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index dim1, Index dim2, Index dim3) : m_data… in TensorMap()
86 …EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index dim1, Index dim2, Index dim3, Index di… in TensorMap()
90 …N_STRONG_INLINE TensorMap(PointerArgType dataPtr, Index dim1, Index dim2, Index dim3, Index dim4, in TensorMap()
95 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorMap(PointerArgType dataPtr, const array<Index, NumIndi… in TensorMap() argument
109 EIGEN_STRONG_INLINE Index rank() const { return m_dimensions.rank(); } in rank()
[all …]
DTensorFixedSize.h34 typedef typename internal::traits<Self>::Index Index; typedef
55 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index rank() const { re… in rank()
56 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index dimension(std::size_t n) const { re… in dimension()
58 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index size() const { re… in size()
70 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar& coeff(Index firstIndex, IndexTypes... otherInd… in coeff()
74 return coeff(array<Index, NumIndices>{{firstIndex, otherIndices...}}); in coeff()
79 EIGEN_STRONG_INLINE const Scalar& coeff(const array<Index, NumIndices>& indices) const in coeff() argument
86 EIGEN_STRONG_INLINE const Scalar& coeff(Index index) const in coeff() argument
88 eigen_internal_assert(index >= 0 && index < size()); in coeff()
89 return m_storage.data()[index]; in coeff()
[all …]
DTensorDimensionList.h20 * \brief Special case of tensor index list used to list all the dimensions of a tensor of rank n.
25 template <typename Index, std::size_t Rank> struct DimensionList {
27 const Index operator[] (const Index i) const { return i; }
32 template<typename Index, std::size_t Rank> struct array_size<DimensionList<Index, Rank> > {
35 template<typename Index, std::size_t Rank> struct array_size<const DimensionList<Index, Rank> > {
39 template<DenseIndex n, typename Index, std::size_t Rank> const Index array_get(DimensionList<Index,…
42 template<DenseIndex n, typename Index, std::size_t Rank> const Index array_get(const DimensionList<
48 template <typename Index, std::size_t Rank>
49 struct index_known_statically_impl<DimensionList<Index, Rank> > {
54 template <typename Index, std::size_t Rank>
[all …]
DTensorRef.h26 EIGEN_DEVICE_FUNC virtual const Scalar coeff(DenseIndex index) const = 0;
27 EIGEN_DEVICE_FUNC virtual Scalar& coeffRef(DenseIndex index) = 0;
63 EIGEN_DEVICE_FUNC virtual const Scalar coeff(DenseIndex index) const { in coeff() argument
64 return m_impl.coeff(index); in coeff()
66 EIGEN_DEVICE_FUNC virtual Scalar& coeffRef(DenseIndex /*index*/) { in coeffRef()
88 EIGEN_DEVICE_FUNC virtual Scalar& coeffRef(DenseIndex index) { in coeffRef() argument
89 return this->m_impl.coeffRef(index); in coeffRef()
126 typedef typename internal::traits<PlainObjectType>::Index Index; typedef
133 static const Index NumIndices = PlainObjectType::NumIndices;
180 EIGEN_STRONG_INLINE Index rank() const { return m_evaluator->dimensions().size(); } in rank()
[all …]
DTensorVolumePatch.h31 typedef typename XprTraits::Index Index;
61 typedef typename Eigen::internal::traits<TensorVolumePatchOp>::Index Index;
169 typedef typename XprType::Index Index;
172 typedef DSizes<Index, NumDims> Dimensions;
251 … const Index dz = m_outputPlanes * m_plane_strides + m_patch_planes_eff - 1 - m_input_planes_eff;
252 const Index dy = m_outputRows * m_row_strides + m_patch_rows_eff - 1 - m_input_rows_eff;
253 const Index dx = m_outputCols * m_col_strides + m_patch_cols_eff - 1 - m_input_cols_eff;
324 m_fastOtherStride = internal::TensorIntDivisor<Index>(m_otherStride);
325 m_fastPatchStride = internal::TensorIntDivisor<Index>(m_patchStride);
326 m_fastColStride = internal::TensorIntDivisor<Index>(m_colStride);
[all …]
/external/apache-http/src/org/apache/commons/codec/language/
DDoubleMetaphone.java97 int index = isSilentStart(value) ? 1 : 0; in doubleMetaphone() local
101 while (!result.isComplete() && index <= value.length() - 1) { in doubleMetaphone()
102 switch (value.charAt(index)) { in doubleMetaphone()
109 index = handleAEIOUY(value, result, index); in doubleMetaphone()
113 index = charAt(value, index + 1) == 'B' ? index + 2 : index + 1; in doubleMetaphone()
118 index++; in doubleMetaphone()
121 index = handleC(value, result, index); in doubleMetaphone()
124 index = handleD(value, result, index); in doubleMetaphone()
128 index = charAt(value, index + 1) == 'F' ? index + 2 : index + 1; in doubleMetaphone()
131 index = handleG(value, result, index, slavoGermanic); in doubleMetaphone()
[all …]
/external/harfbuzz_ng/docs/
Dharfbuzz-docs.xml7 <book id="index">
52 …<ulink role="online-location" url="http://[SERVER]/libharfbuzz/index.html">http://[SERVER]/libharf…
136 …<index id="api-index-full"><title>API Index</title><xi:include href="xml/api-index-full.xml"><xi:f…
137index id="deprecated-api-index" role="deprecated"><title>Index of deprecated API</title><xi:includ…
139index id="api-index-2-1-0" role="2.1.0"><title>Index of new symbols in 2.1.0</title><xi:include hr…
140index id="api-index-2-0-0" role="2.0.0"><title>Index of new symbols in 2.0.0</title><xi:include hr…
141index id="api-index-1-9-0" role="1.9.0"><title>Index of new symbols in 1.9.0</title><xi:include hr…
142index id="api-index-1-8-6" role="1.8.6"><title>Index of new symbols in 1.8.6</title><xi:include hr…
143index id="api-index-1-8-5" role="1.8.5"><title>Index of new symbols in 1.8.5</title><xi:include hr…
144index id="api-index-1-8-1" role="1.8.1"><title>Index of new symbols in 1.8.1</title><xi:include hr…
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dscatter_functor.h191 template <typename Device, typename T, typename Index, scatter_op::UpdateOp op>
193 Index operator()(OpKernelContext* c, const Device& d,
196 typename TTypes<Index>::ConstFlat indices);
199 template <typename Device, typename T, typename Index, scatter_op::UpdateOp op>
201 Index operator()(OpKernelContext* c, const Device& d,
204 typename TTypes<Index>::ConstFlat indices) {
206 const Index N = static_cast<Index>(indices.size());
207 const Index limit = static_cast<Index>(params.dimension(0));
208 for (Index i = 0; i < N; i++) {
209 // Grab the index and check its validity. Do this carefully,
[all …]
Deigen_volume_patch.h30 typedef typename XprType::Index Index; typedef
34 typedef DSizes<Index, NumDims> Dimensions;
39 static const Index PacketSize =
101 static_cast<Index>(op.padding_top_z() + op.padding_bottom_z()) - in CustomTensorEvaluator()
106 static_cast<Index>(op.padding_top() + op.padding_bottom()) - in CustomTensorEvaluator()
111 static_cast<Index>(op.padding_left() + op.padding_right()) - in CustomTensorEvaluator()
135 const Index dz = numext::maxi<DenseIndex>( in CustomTensorEvaluator()
138 const Index dy = numext::maxi<DenseIndex>( in CustomTensorEvaluator()
141 const Index dx = numext::maxi<DenseIndex>( in CustomTensorEvaluator()
216 m_fastOtherStride = internal::TensorIntDivisor<Index>(m_otherStride); in CustomTensorEvaluator()
[all …]
Deigen_cuboid_convolution.h39 // TensorContractionInputMapper takes a matrix index and returns the coefficient
40 // (or the packet) of the "virtual tensor", that would be at that index if we
55 // col - index of the extracted patch (in code: patchIndex)
58 template <typename NewDimension, Index Planes, Index Rows, Index Cols,
59 typename ArgType, typename Device, typename Scalar_, typename Index,
63 Scalar_, Index, Side,
73 Scalar, Index, Side,
82 Scalar, Index, Side,
175 m_fastNumPatches = internal::TensorIntDivisor<Index>(m_num_patches); in TensorContractionInputMapper()
178 internal::TensorIntDivisor<Index>(m_patch_plane_stride); in TensorContractionInputMapper()
[all …]
/external/eigen/Eigen/src/SparseLU/
DSparseLUImpl.h35Index expand(VectorType& vec, Index& length, Index nbElts, Index keep_prev, Index& num_expansions);
36Index memInit(Index m, Index n, Index annz, Index lwork, Index fillratio, Index panel_size, Globa…
38Index memXpand(VectorType& vec, Index& maxlen, Index nbElts, MemType memtype, Index& num_expansion…
39 …void heap_relax_snode (const Index n, IndexVector& et, const Index relax_columns, IndexVector& des…
40 …void relax_snode (const Index n, IndexVector& et, const Index relax_columns, IndexVector& descenda…
41Index snode_dfs(const Index jcol, const Index kcol,const MatrixType& mat, IndexVector& xprune, In…
42 Index snode_bmod (const Index jcol, const Index fsupc, ScalarVector& dense, GlobalLU_t& glu);
43Index pivotL(const Index jcol, const RealScalar& diagpivotthresh, IndexVector& perm_r, IndexVector…
46 Index& nseg, IndexVector& panel_lsub, IndexVector& segrep,
48 … IndexVector& xplore, GlobalLU_t& glu, Index& nextl_col, Index krow, Traits& traits);
[all …]
/external/apache-commons-compress/src/test/resources/
DtestNumbersNew.numbers ... iwa Index/Tables/DataList-16.iwa Index/Document.iwa Index/ViewState.iwa Index ...
/external/fonttools/Tests/ttLib/tables/
D_b_s_l_n_test.py30 ' <Delta index="0" value="0"/>',
31 ' <Delta index="1" value="465"/>',
32 ' <Delta index="2" value="0"/>',
33 ' <Delta index="3" value="1345"/>',
34 ' <Delta index="4" value="507"/>',
35 ' <Delta index="5" value="0"/>',
36 ' <Delta index="6" value="0"/>',
37 ' <Delta index="7" value="0"/>',
38 ' <Delta index="8" value="0"/>',
39 ' <Delta index="9" value="0"/>',
[all …]
/external/skqp/samplecode/
Dvertexdump.cpp9 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]);
11 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]) { in setup_vertexbug() argument
44 index[0] = 0; index[1] = 5; index[2] = 1; in setup_vertexbug()
45 index[3] = 0; index[4] = 4; index[5] = 5; in setup_vertexbug()
47 index[6] = 1; index[7] = 6; index[8] = 2; in setup_vertexbug()
49 index[6] = 6; index[7] = 2; index[8] = 1; in setup_vertexbug()
51 index[9] = 1; index[10] = 5; index[11] = 6; in setup_vertexbug()
52 index[12] = 2; in setup_vertexbug()
53 index[13] = 7; in setup_vertexbug()
54 index[14] = 3; in setup_vertexbug()
[all …]
/external/skia/samplecode/
Dvertexdump.cpp9 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]);
11 void setup_vertexbug(SkPoint verts[], SkPoint texs[], uint16_t index[]) { in setup_vertexbug() argument
44 index[0] = 0; index[1] = 5; index[2] = 1; in setup_vertexbug()
45 index[3] = 0; index[4] = 4; index[5] = 5; in setup_vertexbug()
47 index[6] = 1; index[7] = 6; index[8] = 2; in setup_vertexbug()
49 index[6] = 6; index[7] = 2; index[8] = 1; in setup_vertexbug()
51 index[9] = 1; index[10] = 5; index[11] = 6; in setup_vertexbug()
52 index[12] = 2; in setup_vertexbug()
53 index[13] = 7; in setup_vertexbug()
54 index[14] = 3; in setup_vertexbug()
[all …]
/external/fonttools/Tests/mtiLib/data/mti/
Dmark-to-ligature.ttx.GPOS6 <Lookup index="0">
10 <MarkLigPos index="0" Format="1">
76 <MarkRecord index="0">
84 <MarkRecord index="1">
92 <MarkRecord index="2">
100 <MarkRecord index="3">
108 <MarkRecord index="4">
116 <MarkRecord index="5">
124 <MarkRecord index="6">
132 <MarkRecord index="7">
[all …]
/external/clang/test/Analysis/
Drange_casts.c8 unsigned index = -1; in f1() local
9 if (index < foo) index = foo; in f1()
10 if (index + 1 == 0) // because of foo range, index is in range [0; UINT_MAX] in f1()
18 int index = -1; in f2() local
19 if (index < foo) index = foo; // index equals ULONG_MAX in f2()
20 if (index + 1 == 0) in f2()
28 unsigned index = -1; in f3() local
29 if (index < foo) index = foo; in f3()
30 if (index + 1 == 0) in f3()
38 int index = -1; in f4() local
[all …]
/external/swiftshader/src/Pipeline/
DPixelShader.cpp233 int sampler = inst->dst.index; in analyzeInterpolants()
245 int index = inst->dst.index + 2; in analyzeInterpolants() local
261 interpolant[index][0] = true; in analyzeInterpolants()
262 interpolant[index][1] = true; in analyzeInterpolants()
263 interpolant[index][2] = true; in analyzeInterpolants()
268 interpolant[index][0] = true; in analyzeInterpolants()
269 interpolant[index][1] = true; in analyzeInterpolants()
270 interpolant[index][2] = true; in analyzeInterpolants()
274 interpolant[index][0] = true; in analyzeInterpolants()
275 interpolant[index][1] = true; in analyzeInterpolants()
[all …]
/external/swiftshader/src/Shader/
DPixelShader.cpp233 int sampler = inst->dst.index; in analyzeInterpolants()
245 int index = inst->dst.index + 2; in analyzeInterpolants() local
261 interpolant[index][0] = true; in analyzeInterpolants()
262 interpolant[index][1] = true; in analyzeInterpolants()
263 interpolant[index][2] = true; in analyzeInterpolants()
268 interpolant[index][0] = true; in analyzeInterpolants()
269 interpolant[index][1] = true; in analyzeInterpolants()
270 interpolant[index][2] = true; in analyzeInterpolants()
274 interpolant[index][0] = true; in analyzeInterpolants()
275 interpolant[index][1] = true; in analyzeInterpolants()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/GlobalISel/
Dlegalizer-info-validation.mir16 # DEBUG: G_ADD (opcode [[ADD_OPC:[0-9]+]]): 1 type index
17 # DEBUG-NEXT: .. the first uncovered type index: 1, OK
19 # DEBUG-NEXT: G_SUB (opcode [[SUB_OPC:[0-9]+]]): 1 type index
22 # DEBUG-NEXT: .. the first uncovered type index: 1, OK
24 # DEBUG-NEXT: G_MUL (opcode {{[0-9]+}}): 1 type index
25 # DEBUG: .. the first uncovered type index: 1, OK
27 # DEBUG-NEXT: G_SDIV (opcode {{[0-9]+}}): 1 type index
28 # DEBUG: .. the first uncovered type index: 1, OK
30 # DEBUG-NEXT: G_UDIV (opcode {{[0-9]+}}): 1 type index
31 # DEBUG: .. the first uncovered type index: 1, OK
[all …]
/external/deqp-deps/glslang/Test/baseResults/
Dreflection.vert.out3 image_ui2D: offset -1, type 9063, size 1, index -1, binding -1, stages 1
4 sampler_2D: offset -1, type 8b5e, size 1, index -1, binding -1, stages 1
5 sampler_2DMSArray: offset -1, type 910b, size 1, index -1, binding -1, stages 1
6 anonMember3: offset 80, type 8b52, size 1, index 0, binding -1, stages 1
7 s.a: offset -1, type 1404, size 1, index -1, binding -1, stages 1
8 named.scalar: offset 12, type 1404, size 1, index 1, binding -1, stages 1
9 m23: offset 16, type 8b67, size 1, index 0, binding -1, stages 1
10 scalarAfterm23: offset 48, type 1404, size 1, index 0, binding -1, stages 1
11 c_m23: offset 16, type 8b67, size 1, index 2, binding -1, stages 1
12 c_scalarAfterm23: offset 64, type 1404, size 1, index 2, binding -1, stages 1
[all …]
/external/eigen/unsupported/Eigen/src/Skyline/
DSkylineStorage.h24 typedef SparseIndex Index; typedef
61 memcpy(m_upperProfile, other.m_upperProfile, m_upperProfileSize * sizeof (Index));
62 memcpy(m_lowerProfile, other.m_lowerProfile, m_lowerProfileSize * sizeof (Index));
87 …void reserve(Index size, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lo… in reserve()
88 Index newAllocatedSize = size + upperSize + lowerSize; in reserve()
98 …void resize(Index diagSize, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index
100 … upperProfileSize, lowerProfileSize, upperSize + Index(reserveSizeFactor * upperSize), lowerSize +…
108 inline Index diagSize() const { in diagSize()
112 inline Index upperSize() const { in upperSize()
116 inline Index lowerSize() const { in lowerSize()
[all …]
/external/eigen/Eigen/src/plugins/
DBlockMethods.h61 /// \sa class Block, block(Index,Index)
64 inline BlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) in block()
69 /// This is the const version of block(Index,Index,Index,Index). */
71 inline const ConstBlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) … in block()
89 /// \sa class Block, block(Index,Index,Index,Index)
92 inline BlockXpr topRightCorner(Index cRows, Index cCols) in topRightCorner()
97 /// This is the const version of topRightCorner(Index, Index).
99 inline const ConstBlockXpr topRightCorner(Index cRows, Index cCols) const in topRightCorner()
114 /// \sa class Block, block<int,int>(Index,Index)
151 inline typename FixedBlockXpr<CRows,CCols>::Type topRightCorner(Index cRows, Index cCols) in topRightCorner()
[all …]
/external/skia/src/pathops/
DSkIntersections.cpp14 for (int index = 0; index < fUsed; ++index) { in closestTo() local
15 if (!between(rangeStart, fT[0][index], rangeEnd)) { in closestTo()
18 const SkDPoint& iPt = fPt[index]; in closestTo()
22 closest = index; in closestTo()
29 for (int index = 0; index < fUsed; ++index) { in flip() local
30 fT[1][index] = 1 - fT[1][index]; in flip()
40 int index; in insert() local
41 for (index = 0; index < fUsed; ++index) { in insert()
42 double oldOne = fT[0][index]; in insert()
43 double oldTwo = fT[1][index]; in insert()
[all …]

12345678910>>...463