/external/skqp/gm/ |
D | polygonoffset.cpp | 450 size_t arrayIndex = index - SK_ARRAY_COUNT(PolygonOffsetData::gConvexPoints); in GetConvexPolygon() local 451 SkASSERT(arrayIndex < SK_ARRAY_COUNT(numPtsArray)); in GetConvexPolygon() 452 *numPts = numPtsArray[arrayIndex]; in GetConvexPolygon() 453 if (arrayIndex == 3 || arrayIndex == 6) { in GetConvexPolygon() 485 size_t arrayIndex = index - SK_ARRAY_COUNT(PolygonOffsetData::gSimplePoints); in GetSimplePolygon() local 486 arrayIndex = SkTMin(arrayIndex, SK_ARRAY_COUNT(numPtsArray) - 1); in GetSimplePolygon() 487 SkASSERT(arrayIndex < SK_ARRAY_COUNT(numPtsArray)); in GetSimplePolygon() 488 *numPts = numPtsArray[arrayIndex]; in GetSimplePolygon()
|
/external/skia/gm/ |
D | polygonoffset.cpp | 450 size_t arrayIndex = index - SK_ARRAY_COUNT(PolygonOffsetData::gConvexPoints); in GetConvexPolygon() local 451 SkASSERT(arrayIndex < SK_ARRAY_COUNT(numPtsArray)); in GetConvexPolygon() 452 *numPts = numPtsArray[arrayIndex]; in GetConvexPolygon() 453 if (arrayIndex == 3 || arrayIndex == 6) { in GetConvexPolygon() 485 size_t arrayIndex = index - SK_ARRAY_COUNT(PolygonOffsetData::gSimplePoints); in GetSimplePolygon() local 486 arrayIndex = SkTMin(arrayIndex, SK_ARRAY_COUNT(numPtsArray) - 1); in GetSimplePolygon() 487 SkASSERT(arrayIndex < SK_ARRAY_COUNT(numPtsArray)); in GetSimplePolygon() 488 *numPts = numPtsArray[arrayIndex]; in GetSimplePolygon()
|
/external/smali/util/src/main/java/org/jf/util/ |
D | StringWrapper.java | 143 int arrayIndex = 0; 149 output = addString(output, str.substring(lineStart, i), arrayIndex++); 152 output = addString(output, str.substring(lineStart, i), arrayIndex++); 157 output = addString(output, str.substring(lineStart), arrayIndex++, output.length+1); 160 if (arrayIndex < output.length) { 161 output[arrayIndex] = null;
|
/external/proguard/src/proguard/evaluation/ |
D | Processor.java | 123 IntegerValue arrayIndex = stack.ipop(); in visitSimpleInstruction() local 125 stack.push(arrayReference.integerArrayLoad(arrayIndex, valueFactory)); in visitSimpleInstruction() 130 IntegerValue arrayIndex = stack.ipop(); in visitSimpleInstruction() local 132 stack.push(arrayReference.longArrayLoad(arrayIndex, valueFactory)); in visitSimpleInstruction() 137 IntegerValue arrayIndex = stack.ipop(); in visitSimpleInstruction() local 139 stack.push(arrayReference.floatArrayLoad(arrayIndex, valueFactory)); in visitSimpleInstruction() 144 IntegerValue arrayIndex = stack.ipop(); in visitSimpleInstruction() local 146 stack.push(arrayReference.doubleArrayLoad(arrayIndex, valueFactory)); in visitSimpleInstruction() 151 IntegerValue arrayIndex = stack.ipop(); in visitSimpleInstruction() local 153 stack.push(arrayReference.referenceArrayLoad(arrayIndex, valueFactory)); in visitSimpleInstruction() [all …]
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/ |
D | StoreTile.h | 1129 …pDstSurface->arrayIndex + renderTargetArrayIndex, pDstSurface->arrayIndex + renderTargetArrayIndex, 1186 …pResolveSurface->arrayIndex + renderTargetArrayIndex, pResolveSurface->arrayIndex + renderTargetAr… 1231 …uint8_t *pDst = (uint8_t*)ComputeSurfaceAddress<false, false>(x, y, pDstSurface->arrayIndex + rend… 1232 … pDstSurface->arrayIndex + renderTargetArrayIndex, sampleNum, pDstSurface->lod, pDstSurface); 1318 …uint8_t *pDst = (uint8_t*)ComputeSurfaceAddress<false, false>(x, y, pDstSurface->arrayIndex + rend… 1319 … pDstSurface->arrayIndex + renderTargetArrayIndex, sampleNum, pDstSurface->lod, pDstSurface); 1405 …uint8_t *pDst = (uint8_t*)ComputeSurfaceAddress<false, false>(x, y, pDstSurface->arrayIndex + rend… 1406 … pDstSurface->arrayIndex + renderTargetArrayIndex, sampleNum, pDstSurface->lod, pDstSurface); 1497 …uint8_t *pDst = (uint8_t*)ComputeSurfaceAddress<false, false>(x, y, pDstSurface->arrayIndex + rend… 1498 … pDstSurface->arrayIndex + renderTargetArrayIndex, sampleNum, pDstSurface->lod, pDstSurface); [all …]
|
D | TilingFunctions.h | 415 …A(const SWR_SURFACE_STATE *pState, uint32_t& x, uint32_t& y, uint32_t& arrayIndex, uint32_t sample… 518 arrayIndex = (arrayIndex << sampleShift) | sampleNum;
|
D | ClearTile.cpp | 71 x, y, pDstSurface->arrayIndex + renderTargetArrayIndex, in StoreClear() 72 pDstSurface->arrayIndex + renderTargetArrayIndex, in StoreClear()
|
D | LoadTile.h | 122 …nt8_t*)ComputeSurfaceAddress<false, true>(x + rx, y + ry, pSrcSurface->arrayIndex + renderTargetAr… in Load() 123 pSrcSurface->arrayIndex + renderTargetArrayIndex, sampleNum, in Load()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
D | SubList.cs | 356 public void CopyTo( T[] array, int arrayIndex ) in CopyTo() argument 361 if ( arrayIndex < 0 ) in CopyTo() 364 if ( arrayIndex + Count > array.Length ) in CopyTo() 369 array[arrayIndex + i] = this[i]; in CopyTo()
|
/external/protobuf/csharp/src/Google.Protobuf/Collections/ |
D | MapField.cs | 302 … ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex) in CopyTo() argument 304 list.CopyTo(array, arrayIndex); in CopyTo() 712 public void CopyTo(T[] array, int arrayIndex) in CopyTo() argument 714 if (arrayIndex < 0) in CopyTo() 718 if (arrayIndex + Count >= array.Length) in CopyTo() 724 array[arrayIndex++] = item; in CopyTo()
|
D | ReadOnlyDictionary.cs | 102 public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex) in CopyTo() argument 104 wrapped.CopyTo(array, arrayIndex); in CopyTo()
|
D | RepeatedField.cs | 262 public void CopyTo(T[] array, int arrayIndex) in CopyTo() argument 264 Array.Copy(this.array, 0, array, arrayIndex, count); in CopyTo()
|
/external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineVertexUtil.cpp | 997 int arrayIndex = 0; in createQuadMosaic() local 1006 Vec4(0.0f, 0.0f, (float)arrayIndex, 0.0f) in createQuadMosaic() 1011 Vec4(0.0f, 1.0f, (float)arrayIndex, 0.0f) in createQuadMosaic() 1016 Vec4(1.0f, 0.0f, (float)arrayIndex, 0.0f) in createQuadMosaic() 1021 Vec4(1.0f, 1.0f, (float)arrayIndex, 0.0f) in createQuadMosaic() 1031 arrayIndex++; in createQuadMosaic()
|
/external/caliper/caliper/src/main/java/com/google/caliper/memory/ |
D | Chain.java | 55 ArrayIndexChain appendArrayIndex(int arrayIndex, Object value) { 56 return new ArrayIndexChain(this, arrayIndex, value);
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
D | Metadata.cs | 173 public void CopyTo(Metadata.Entry[] array, int arrayIndex) in CopyTo() argument 175 entries.CopyTo(array, arrayIndex); in CopyTo()
|
/external/skia/experimental/docs/ |
D | animationCommon.js | 137 var arrayIndex = +targetField; 138 if (!isNaN(arrayIndex) && targetField.length > 0) { 139 targetField = arrayIndex;
|
/external/skqp/experimental/docs/ |
D | animationCommon.js | 137 var arrayIndex = +targetField; 138 if (!isNaN(arrayIndex) && targetField.length > 0) { 139 targetField = arrayIndex;
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | CharInfo.java | 573 private static int arrayIndex(int i) { 594 int[] arr = new int[arrayIndex(max - 1) + 1];
|
/external/swiftshader/src/OpenGL/compiler/ |
D | OutputASM.cpp | 1507 int arrayIndex = std::min(component / arrayComponents, arrayMaxIndex); in visitAggregate() local 1508 int swizzle = component - (arrayIndex * arrayComponents); in visitAggregate() 1512 Instruction *mov = emitCast(result, arrayIndex, argi, 0); in visitAggregate() 1520 Instruction *mov = emitCast(result, arrayIndex, argi, 0); in visitAggregate() 1527 Instruction *mov = emitCast(result, arrayIndex, argi, 1); in visitAggregate() 1541 Instruction *mov = emitCast(result, arrayIndex, argi, column); in visitAggregate() 2421 int arrayIndex = argumentInfo.clampedIndex / numCols; in source() local 2422 …int matrixStartOffset = argumentInfo.typedMemberInfo.offset + arrayIndex * argumentInfo.typedMembe… in source()
|
D | ParseHelper.h | 209 …t TString* instanceName, const TSourceLoc& instanceLine, TIntermTyped* arrayIndex, const TSourceLo…
|
D | ParseHelper.cpp | 2335 …t TString* instanceName, const TSourceLoc& instanceLine, TIntermTyped* arrayIndex, const TSourceLo… in addInterfaceBlock() argument 2418 if(arrayIndex) in addInterfaceBlock() 2420 if(arraySizeErrorCheck(arrayIndexLine, arrayIndex, arraySize)) in addInterfaceBlock()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | state.h | 535 …uint32_t arrayIndex; // for render targets, the array index being rendered to for arrayed s… member
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_lowering_nvc0.cpp | 970 Value *arrayIndex = i->tex.target.isArray() ? i->getSrc(lyr) : NULL; in handleTEX() local 971 if (arrayIndex) { in handleTEX() 974 i->setSrc(0, arrayIndex); in handleTEX() 979 if (arrayIndex) { in handleTEX() 982 bld.mkCvt(OP_CVT, TYPE_U16, src, sTy, arrayIndex)->saturate = sat; in handleTEX()
|
/external/mesa3d/src/gallium/drivers/swr/ |
D | swr_state.cpp | 929 rt->arrayIndex == sf->u.tex.first_layer) in swr_change_rt() 951 rt->arrayIndex = sf->u.tex.first_layer; in swr_change_rt()
|
/external/skqp/src/utils/ |
D | SkLua.cpp | 214 static SkScalar getarray_scalar(lua_State* L, int stackIndex, int arrayIndex) { in getarray_scalar() argument 216 lua_rawgeti(L, stackIndex, arrayIndex); in getarray_scalar()
|