/external/flac/test/cuesheets/ |
D | good.001.cue | 7 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 …]
|
D | bad.065.INDEX_num_out_of_range.cue | 4 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/ |
D | MultiAttributeVisitor.java | 81 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/ |
D | test_vector_swizzle.cpp | 35 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/ |
D | harfbuzz-docs.xml | 7 <book id="index"> 49 …<ulink role="online-location" url="http://[SERVER]/libharfbuzz/index.html">http://[SERVER]/libharf… 133 …<index id="api-index-full"><title>API Index</title><xi:include href="xml/api-index-full.xml"><xi:f… 134 …index id="deprecated-api-index" role="deprecated"><title>Index of deprecated API</title><xi:includ… 136 …index id="api-index-2-6-0" role="2.6.0"><title>Index of new symbols in 2.6.0</title><xi:include hr… 137 …index id="api-index-2-5-0" role="2.5.0"><title>Index of new symbols in 2.5.0</title><xi:include hr… 138 …index id="api-index-2-4-0" role="2.4.0"><title>Index of new symbols in 2.4.0</title><xi:include hr… 139 …index id="api-index-2-3-0" role="2.3.0"><title>Index of new symbols in 2.3.0</title><xi:include hr… 140 …index id="api-index-2-2-0" role="2.2.0"><title>Index of new symbols in 2.2.0</title><xi:include hr… 141 …index id="api-index-2-1-0" role="2.1.0"><title>Index of new symbols in 2.1.0</title><xi:include hr… [all …]
|
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorMap.h | 34 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 …]
|
D | TensorFixedSize.h | 34 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 …]
|
D | TensorDimensionList.h | 20 * \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/ |
D | DoubleMetaphone.java | 97 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/llvm-project/llvm/test/CodeGen/AArch64/GlobalISel/ |
D | legalizer-info-validation.mir | 16 # DEBUG: G_ADD (opcode [[ADD_OPC:[0-9]+]]): 1 type index, 0 imm indices 17 # DEBUG-NEXT: .. the first uncovered type index: 1, OK 18 # DEBUG-NEXT: .. the first uncovered imm index: 0, OK 20 # DEBUG-NEXT: G_SUB (opcode [[SUB_OPC:[0-9]+]]): 1 type index, 0 imm indices 22 # DEBUG-NEXT: .. the first uncovered type index: 1, OK 23 # DEBUG-NEXT: .. the first uncovered imm index: 0, OK 25 # DEBUG-NEXT: G_MUL (opcode {{[0-9]+}}): 1 type index, 0 imm indices 27 # DEBUG-NEXT: .. the first uncovered type index: 1, OK 28 # DEBUG-NEXT: .. the first uncovered imm index: 0, OK 30 # DEBUG-NEXT: G_SDIV (opcode {{[0-9]+}}): 1 type index [all …]
|
/external/tensorflow/tensorflow/core/kernels/ |
D | scatter_functor.h | 130 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 …]
|
D | eigen_volume_patch.h | 30 typedef typename XprType::Index Index; typedef 34 typedef DSizes<Index, NumDims> Dimensions; 39 static constexpr 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 …]
|
/external/eigen/Eigen/src/SparseLU/ |
D | SparseLUImpl.h | 35 …Index expand(VectorType& vec, Index& length, Index nbElts, Index keep_prev, Index& num_expansions); 36 …Index memInit(Index m, Index n, Index annz, Index lwork, Index fillratio, Index panel_size, Globa… 38 …Index 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… 41 …Index 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); 43 …Index 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/ |
D | testNumbersNew.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.py | 28 ' <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/mesa3d/src/mesa/main/ |
D | api_arrayelt.c | 29 * 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/skia/samplecode/ |
D | vertexdump.cpp | 9 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/skqp/samplecode/ |
D | vertexdump.cpp | 9 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/ |
D | mark-to-ligature.ttx.GPOS | 6 <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/llvm-project/lld/test/wasm/ |
D | many-functions.ll | 22 ; CHECK-NEXT: Index: 1 25 ; CHECK-NEXT: Index: 1 28 ; CHECK-NEXT: Index: 1 31 ; CHECK-NEXT: Index: 1 34 ; CHECK-NEXT: Index: 1 37 ; CHECK-NEXT: Index: 1 40 ; CHECK-NEXT: Index: 1 43 ; CHECK-NEXT: Index: 1 46 ; CHECK-NEXT: Index: 1 49 ; CHECK-NEXT: Index: 1 [all …]
|
/external/clang/test/Analysis/ |
D | range_casts.c | 8 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/llvm-project/clang/test/Analysis/ |
D | range_casts.c | 8 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/Shader/ |
D | PixelShader.cpp | 234 int sampler = inst->dst.index; in analyzeInterpolants() 246 int index = inst->dst.index + 2; in analyzeInterpolants() local 262 interpolant[index][0] = true; in analyzeInterpolants() 263 interpolant[index][1] = true; in analyzeInterpolants() 264 interpolant[index][2] = true; in analyzeInterpolants() 269 interpolant[index][0] = true; in analyzeInterpolants() 270 interpolant[index][1] = true; in analyzeInterpolants() 271 interpolant[index][2] = true; in analyzeInterpolants() 275 interpolant[index][0] = true; in analyzeInterpolants() 276 interpolant[index][1] = true; in analyzeInterpolants() [all …]
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | reflection.vert.out | 3 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/tensorflow/third_party/eigen3/unsupported/Eigen/CXX11/src/FixedPoint/ |
D | MatMatProduct.h | 77 template <typename Index, typename DataMapper, int mr, int nr, 79 struct gebp_kernel<QInt8, QInt8, Index, DataMapper, mr, nr, ConjugateLhs, 83 const QInt8* blockB, Index rows, Index depth, Index cols, 84 QInt32 alpha, Index strideA = -1, Index strideB = -1, 85 Index offsetA = 0, Index offsetB = 0); 88 template <typename Index, typename DataMapper, int mr, int nr, 90 EIGEN_DONT_INLINE void gebp_kernel<QInt8, QInt8, Index, DataMapper, mr, nr, 93 Index rows, Index depth, Index cols, QInt32 alpha, Index strideA, 94 Index strideB, Index offsetA, Index offsetB) { 110 for (Index j = 0; j < cols; ++j) { [all …]
|