Home
last modified time | relevance | path

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

12345678910>>...489

/external/flac/test/cuesheets/
Dgood.001.cue7 INDEX 01 00:00:00
11 INDEX 00 02:09:12
12 INDEX 01 02:10:15
13 INDEX 02 02:20:15
14 INDEX 03 02:30:15
15 INDEX 04 03:30:15
16 INDEX 05 03:31:15
17 INDEX 06 03:32:06
18 INDEX 07 03:32:07
19 INDEX 08 03:32:08
[all …]
Dbad.065.INDEX_num_out_of_range.cue4 INDEX 00 00:00:00
5 INDEX 01 02:10:15
6 INDEX 02 02:20:15
7 INDEX 03 02:30:15
8 INDEX 04 03:30:15
9 INDEX 05 03:31:15
10 INDEX 06 03:32:06
11 INDEX 07 03:32:07
12 INDEX 08 03:32:08
13 INDEX 09 03:32:09
[all …]
/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/OpenCL-CTS/test_conformance/basic/
Dtest_vector_swizzle.cpp35 int index = 0;
38 dst[index++].x = value.x;
39 dst[index++].y = value.x;
40 dst[index++].xy = value;
41 dst[index++].yx = value;
44 dst[index++] = value.x;
45 dst[index++] = value.y;
46 dst[index++] = value.xy;
47 dst[index++] = value.yx;
53 int index = 0;
[all …]
/external/harfbuzz_ng/docs/
Dharfbuzz-docs.xml7 <book id="index">
49 …<ulink role="online-location" url="http://[SERVER]/libharfbuzz/index.html">http://[SERVER]/libharf…
116 …<index id="api-index-full"><title>API Index</title><xi:include href="xml/api-index-full.xml"><xi:f…
117index id="deprecated-api-index" role="deprecated"><title>Index of deprecated API</title><xi:includ…
119index id="api-index-3-1-0" role="3.1.0"><title>Index of new symbols in 3.1.0</title><xi:include hr…
120index id="api-index-3-0-0" role="3.0.0"><title>Index of new symbols in 3.0.0</title><xi:include hr…
121index id="api-index-2-9-1" role="2.9.1"><title>Index of new symbols in 2.9.1</title><xi:include hr…
122index id="api-index-2-9-0" role="2.9.0"><title>Index of new symbols in 2.9.0</title><xi:include hr…
123index id="api-index-2-8-2" role="2.8.2"><title>Index of new symbols in 2.8.2</title><xi:include hr…
124index id="api-index-2-7-3" role="2.7.3"><title>Index of new symbols in 2.7.3</title><xi:include hr…
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorMap.h40 typedef typename internal::traits<PlainObjectType>::Index Index; typedef
69 static const Index NumIndices = PlainObjectType::NumIndices;
87 …EIGEN_STRONG_INLINE TensorMap(StoragePointerType dataPtr, Index firstDimension, IndexTypes... othe… in TensorMap()
93 …EIGEN_STRONG_INLINE TensorMap(StoragePointerType dataPtr, Index firstDimension) : m_data(dataPtr),… in TensorMap()
98 …EIGEN_STRONG_INLINE TensorMap(StoragePointerType dataPtr, Index dim1, Index dim2) : m_data(dataPtr… in TensorMap()
102 …EIGEN_STRONG_INLINE TensorMap(StoragePointerType dataPtr, Index dim1, Index dim2, Index dim3) : m_… in TensorMap()
106 …GEN_STRONG_INLINE TensorMap(StoragePointerType dataPtr, Index dim1, Index dim2, Index dim3, Index in TensorMap()
110 …RONG_INLINE TensorMap(StoragePointerType dataPtr, Index dim1, Index dim2, Index dim3, Index dim4, in TensorMap()
115 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE TensorMap(StoragePointerType dataPtr, const array<Index, Num… in TensorMap() argument
129 EIGEN_STRONG_INLINE Index rank() const { return m_dimensions.rank(); } in rank()
[all …]
DTensorFixedSize.h34 typedef typename internal::traits<Self>::Index Index; typedef
62 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index rank() const { re… in rank()
63 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index dimension(std::size_t n) const { re… in dimension()
65 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Index size() const { re… in size()
77 …EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar& coeff(Index firstIndex, IndexTypes... otherInd… in coeff()
81 return coeff(array<Index, NumIndices>{{firstIndex, otherIndices...}}); in coeff()
86 EIGEN_STRONG_INLINE const Scalar& coeff(const array<Index, NumIndices>& indices) const in coeff() argument
93 EIGEN_STRONG_INLINE const Scalar& coeff(Index index) const in coeff() argument
95 eigen_internal_assert(index >= 0 && index < size()); in coeff()
96 return m_storage.data()[index]; in coeff()
[all …]
DTensorScanSycl.h81 …e <typename Evaluator, typename CoeffReturnType, typename OutAccessor, typename Op, typename Index,
86 static EIGEN_CONSTEXPR int PacketSize = ScanParameters<Index>::ScanPerThread / 2;
92 const ScanParameters<Index> scanParameters;
97 … const ScanParameters<Index> scanParameters_, Op accumulator_, in ScanKernelFunctor()
110 read(const Input &inpt, Index global_id) { in read()
117 read(const Input &inpt, Index global_id) { in read()
136 for (Index loop_offset = 0; loop_offset < scanParameters.loop_range; loop_offset++) { in operator()
137 Index data_offset = (itemID.get_global_id(0) + (itemID.get_global_range(0) * loop_offset)); in operator()
138 Index tmp = data_offset % scanParameters.panel_threads; in operator()
139 const Index panel_id = data_offset / scanParameters.panel_threads; in operator()
[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 …]
/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/arm-trusted-firmware/lib/extensions/amu/aarch64/
Damu_helpers.S34 * out of bounds index. Ensure `idx` is valid.
49 1: read AMEVCNTR00_EL0 /* index 0 */
50 read AMEVCNTR01_EL0 /* index 1 */
51 read AMEVCNTR02_EL0 /* index 2 */
52 read AMEVCNTR03_EL0 /* index 3 */
65 * out of bounds index. Ensure `idx` is valid.
80 1: write AMEVCNTR00_EL0 /* index 0 */
81 write AMEVCNTR01_EL0 /* index 1 */
82 write AMEVCNTR02_EL0 /* index 2 */
83 write AMEVCNTR03_EL0 /* index 3 */
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dscatter_functor.h130 template <typename Device, typename T, typename Index, scatter_op::UpdateOp op>
132 Index operator()(OpKernelContext* c, const Device& d,
135 typename TTypes<Index>::ConstFlat indices);
138 template <typename Device, typename T, typename Index, scatter_op::UpdateOp op>
140 Index ParallelExecute(OpKernelContext* c, const Device& d,
143 typename TTypes<Index>::ConstFlat indices) {
144 const Index N = static_cast<Index>(indices.size());
145 const Index limit = static_cast<Index>(params.dimension(0));
146 const Index kMaxLocks = 1024;
147 const Index entries_per_lock = (limit + kMaxLocks - 1) / kMaxLocks;
[all …]
Deigen_cuboid_convolution.h41 // TensorContractionInputMapper takes a matrix index and returns the coefficient
42 // (or the packet) of the "virtual tensor", that would be at that index if we
57 // col - index of the extracted patch (in code: patchIndex)
60 template <typename NewDimension, Index Planes, Index Rows, Index Cols,
61 typename ArgType, typename Device, typename Scalar_, typename Index,
65 Scalar_, Index, Side,
75 Scalar, Index, Side,
84 Scalar, Index, Side,
177 m_fastNumPatches = internal::TensorIntDivisor<Index>(m_num_patches); in TensorContractionInputMapper()
180 internal::TensorIntDivisor<Index>(m_patch_plane_stride); in TensorContractionInputMapper()
[all …]
Deigen_spatial_convolutions-inl.h36 // TensorContractionInputMapper takes a matrix index and returns the coefficient
37 // (or the packet) of the "virtual tensor", that would be at that index if we
52 // col - index of the extracted patch (in code: patchIndex)
58 template <typename NewDimension, Index Rows, Index Cols, typename ArgType,
59 typename Device, typename Scalar_, typename Index,
63 Scalar_, Index, Side,
74 Scalar, Index, Side,
84 Scalar, Index, Side,
108 Index patch_rows; in TensorContractionInputMapper()
109 Index patch_depth; in TensorContractionInputMapper()
[all …]
/external/mesa3d/src/mesa/main/
Dapi_arrayelt.c29 * state for the element/index.
96 VertexAttrib1NbvNV(GLuint index, const GLbyte *v) in VertexAttrib1NbvNV() argument
98 CALL_VertexAttrib1fNV(get_dispatch(), (index, BYTE_TO_FLOAT(v[0]))); in VertexAttrib1NbvNV()
102 VertexAttrib1bvNV(GLuint index, const GLbyte *v) in VertexAttrib1bvNV() argument
104 CALL_VertexAttrib1fNV(get_dispatch(), (index, (GLfloat)v[0])); in VertexAttrib1bvNV()
108 VertexAttrib2NbvNV(GLuint index, const GLbyte *v) in VertexAttrib2NbvNV() argument
110 CALL_VertexAttrib2fNV(get_dispatch(), (index, BYTE_TO_FLOAT(v[0]), BYTE_TO_FLOAT(v[1]))); in VertexAttrib2NbvNV()
114 VertexAttrib2bvNV(GLuint index, const GLbyte *v) in VertexAttrib2bvNV() argument
116 CALL_VertexAttrib2fNV(get_dispatch(), (index, (GLfloat)v[0], (GLfloat)v[1])); in VertexAttrib2bvNV()
120 VertexAttrib3NbvNV(GLuint index, const GLbyte *v) in VertexAttrib3NbvNV() argument
[all …]
/external/fonttools/Tests/ttLib/tables/
D_b_s_l_n_test.py28 ' <Delta index="0" value="0"/>',
29 ' <Delta index="1" value="465"/>',
30 ' <Delta index="2" value="0"/>',
31 ' <Delta index="3" value="1345"/>',
32 ' <Delta index="4" value="507"/>',
33 ' <Delta index="5" value="0"/>',
34 ' <Delta index="6" value="0"/>',
35 ' <Delta index="7" value="0"/>',
36 ' <Delta index="8" value="0"/>',
37 ' <Delta index="9" value="0"/>',
[all …]
/external/eigen/Eigen/src/Core/arch/AltiVec/
DMatrixProduct.h119 template<typename Scalar, typename Index, int StorageOrder>
120 …INLINE std::complex<Scalar> getAdjointVal(Index i, Index j, const_blas_data_mapper<std::complex<Sc…
138 template<typename Scalar, typename Index, int StorageOrder, int N>
139 …x<Scalar>* blockB, const std::complex<Scalar>* _rhs, Index rhsStride, Index rows, Index cols, Inde…
141 const Index depth = k2 + rows;
142 const_blas_data_mapper<std::complex<Scalar>, Index, StorageOrder> rhs(_rhs, rhsStride);
143 const Index vectorSize = N*quad_traits<Scalar>::vectorsize;
144 const Index vectorDelta = vectorSize * rows;
147 Index rir = 0, rii, j = 0;
152 for(Index i = k2; i < depth; i++)
[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/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/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/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/skia/resources/sksl/errors/
DVectorIndexOutOfRange.rts25 void half2_neg1_constidx() { half2 h; const int INDEX = -1; half v = h[INDEX]; }
26 void half2_0_constidx() { half2 h; const int INDEX = 0; half v = h[INDEX]; }
27 void half2_1_constidx() { half2 h; const int INDEX = 1; half v = h[INDEX]; }
28 void half2_2_constidx() { half2 h; const int INDEX = 2; half v = h[INDEX]; }
29 void half2_huge_constidx() { half2 h; const int INDEX = 1000000000; half v = h[INDEX]; }
31 void half3_neg1_constidx() { half3 h; const int INDEX = -1; half v = h[INDEX]; }
32 void half3_0_constidx() { half3 h; const int INDEX = 0; half v = h[INDEX]; }
33 void half3_1_constidx() { half3 h; const int INDEX = 1; half v = h[INDEX]; }
34 void half3_2_constidx() { half3 h; const int INDEX = 2; half v = h[INDEX]; }
35 void half3_3_constidx() { half3 h; const int INDEX = 3; half v = h[INDEX]; }
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/
Dreflection.vert.out3 named.deadMember1: offset 0, type 8b51, size 1, index 0, binding -1, stages 1
4 anonDeadMember2: offset 64, type 8b52, size 1, index 1, binding -1, stages 1
5 ufDead4: offset -1, type 1406, size 1, index -1, binding -1, stages 1
6 anonMember1: offset 0, type 8b51, size 1, index 1, binding -1, stages 1
7 uf1: offset -1, type 1406, size 1, index -1, binding -1, stages 1
8 uf2: offset -1, type 1406, size 1, index -1, binding -1, stages 1
9 named.member3: offset 32, type 8b52, size 1, index 0, binding -1, stages 1
10 image_ui2D: offset -1, type 9063, size 1, index -1, binding -1, stages 1
11 sampler_2D: offset -1, type 8b5e, size 1, index -1, binding -1, stages 1
12 sampler_2DMSArray: offset -1, type 910b, size 1, index -1, binding -1, stages 1
[all …]
/external/deqp-deps/glslang/Test/baseResults/
Dreflection.vert.out3 named.deadMember1: offset 0, type 8b51, size 1, index 0, binding -1, stages 1
4 anonDeadMember2: offset 64, type 8b52, size 1, index 1, binding -1, stages 1
5 ufDead4: offset -1, type 1406, size 1, index -1, binding -1, stages 1
6 anonMember1: offset 0, type 8b51, size 1, index 1, binding -1, stages 1
7 uf1: offset -1, type 1406, size 1, index -1, binding -1, stages 1
8 uf2: offset -1, type 1406, size 1, index -1, binding -1, stages 1
9 named.member3: offset 32, type 8b52, size 1, index 0, binding -1, stages 1
10 image_ui2D: offset -1, type 9063, size 1, index -1, binding -1, stages 1
11 sampler_2D: offset -1, type 8b5e, size 1, index -1, binding -1, stages 1
12 sampler_2DMSArray: offset -1, type 910b, size 1, index -1, binding -1, stages 1
[all …]

12345678910>>...489