Searched refs:arrayIndex (Results 1 - 25 of 34) sorted by relevance

12

/external/smali/util/src/main/java/org/jf/util/
H A DStringWrapper.java143 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/protobuf/csharp/src/Google.Protobuf/Collections/
H A DReadOnlyDictionary.cs102 public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex) argument
104 wrapped.CopyTo(array, arrayIndex);
H A DMapField.cs301 /// <param name="arrayIndex">The index of the array at which to start copying values.</param>
302 void ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex) argument
304 list.CopyTo(array, arrayIndex);
712 public void CopyTo(T[] array, int arrayIndex) argument
714 if (arrayIndex < 0)
716 throw new ArgumentOutOfRangeException("arrayIndex");
718 if (arrayIndex + Count >= array.Length)
724 array[arrayIndex++] = item;
H A DRepeatedField.cs261 /// <param name="arrayIndex">The first index of the array to copy to.</param>
262 public void CopyTo(T[] array, int arrayIndex) argument
264 Array.Copy(this.array, 0, array, arrayIndex, count);
/external/proguard/src/proguard/evaluation/
H A DProcessor.java123 IntegerValue arrayIndex = stack.ipop();
125 stack.push(arrayReference.integerArrayLoad(arrayIndex, valueFactory));
130 IntegerValue arrayIndex = stack.ipop();
132 stack.push(arrayReference.longArrayLoad(arrayIndex, valueFactory));
137 IntegerValue arrayIndex = stack.ipop();
139 stack.push(arrayReference.floatArrayLoad(arrayIndex, valueFactory));
144 IntegerValue arrayIndex = stack.ipop();
146 stack.push(arrayReference.doubleArrayLoad(arrayIndex, valueFactory));
151 IntegerValue arrayIndex = stack.ipop();
153 stack.push(arrayReference.referenceArrayLoad(arrayIndex, valueFactor
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSubList.cs356 public void CopyTo( T[] array, int arrayIndex )
361 if ( arrayIndex < 0 )
364 if ( arrayIndex + Count > array.Length )
369 array[arrayIndex + i] = this[i];
/external/caliper/caliper/src/main/java/com/google/caliper/memory/
H A DChain.java55 ArrayIndexChain appendArrayIndex(int arrayIndex, Object value) { argument
56 return new ArrayIndexChain(this, arrayIndex, value);
/external/mesa3d/src/gallium/drivers/swr/rasterizer/memory/
H A DStoreTile.h1134 pDstSurface->arrayIndex + renderTargetArrayIndex, pDstSurface->arrayIndex + renderTargetArrayIndex,
1178 uint8_t *pDst = (uint8_t*)ComputeSurfaceAddress<false, false>(x, y, pDstSurface->arrayIndex + renderTargetArrayIndex,
1179 pDstSurface->arrayIndex + renderTargetArrayIndex, sampleNum, pDstSurface->lod, pDstSurface);
1265 uint8_t *pDst = (uint8_t*)ComputeSurfaceAddress<false, false>(x, y, pDstSurface->arrayIndex + renderTargetArrayIndex,
1266 pDstSurface->arrayIndex + renderTargetArrayIndex, sampleNum, pDstSurface->lod, pDstSurface);
1352 uint8_t *pDst = (uint8_t*)ComputeSurfaceAddress<false, false>(x, y, pDstSurface->arrayIndex + renderTargetArrayIndex,
1353 pDstSurface->arrayIndex + renderTargetArrayIndex, sampleNum, pDstSurface->lod, pDstSurface);
1444 uint8_t *pDst = (uint8_t*)ComputeSurfaceAddress<false, false>(x, y, pDstSurface->arrayIndex + renderTargetArrayIndex,
1445 pDstSurface->arrayIndex
[all...]
H A DTilingFunctions.h415 INLINE void AdjustCoordsForMSAA(const SWR_SURFACE_STATE *pState, uint32_t& x, uint32_t& y, uint32_t& arrayIndex, uint32_t sampleNum) argument
518 arrayIndex = (arrayIndex << sampleShift) | sampleNum;
H A DClearTile.cpp71 x, y, pDstSurface->arrayIndex + renderTargetArrayIndex,
72 pDstSurface->arrayIndex + renderTargetArrayIndex,
H A DLoadTile.h122 uint8_t* pSrc = (uint8_t*)ComputeSurfaceAddress<false, true>(x + rx, y + ry, pSrcSurface->arrayIndex + renderTargetArrayIndex,
123 pSrcSurface->arrayIndex + renderTargetArrayIndex, sampleNum,
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineVertexUtil.cpp800 int arrayIndex = 0; local
809 Vec4(0.0f, 0.0f, (float)arrayIndex, 0.0f)
814 Vec4(0.0f, 1.0f, (float)arrayIndex, 0.0f)
819 Vec4(1.0f, 0.0f, (float)arrayIndex, 0.0f)
824 Vec4(1.0f, 1.0f, (float)arrayIndex, 0.0f)
834 arrayIndex++;
/external/skia/experimental/docs/
H A DanimationCommon.js137 var arrayIndex = +targetField;
138 if (!isNaN(arrayIndex) && targetField.length > 0) {
139 targetField = arrayIndex;
/external/skqp/experimental/docs/
H A DanimationCommon.js137 var arrayIndex = +targetField;
138 if (!isNaN(arrayIndex) && targetField.length > 0) {
139 targetField = arrayIndex;
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DCharInfo.java573 private static int arrayIndex(int i) { method in class:CharInfo
594 int[] arr = new int[arrayIndex(max - 1) + 1];
/external/swiftshader/src/OpenGL/compiler/
H A DParseHelper.h207 const TString* instanceName, const TSourceLoc& instanceLine, TIntermTyped* arrayIndex, const TSourceLoc& arrayIndexLine);
H A DOutputASM.cpp1500 int arrayIndex = std::min(component / arrayComponents, arrayMaxIndex); local
1501 int swizzle = component - (arrayIndex * arrayComponents);
1505 Instruction *mov = emitCast(result, arrayIndex, argi, 0);
1513 Instruction *mov = emitCast(result, arrayIndex, argi, 0);
1520 Instruction *mov = emitCast(result, arrayIndex, argi, 1);
1534 Instruction *mov = emitCast(result, arrayIndex, argi, column);
2388 int arrayIndex = argumentInfo.clampedIndex / numCols; local
2389 int matrixStartOffset = argumentInfo.typedMemberInfo.offset + arrayIndex * argumentInfo.typedMemberInfo.arrayStride;
H A DParseHelper.cpp2327 const TString* instanceName, const TSourceLoc& instanceLine, TIntermTyped* arrayIndex, const TSourceLoc& arrayIndexLine)
2410 if(arrayIndex)
2412 if(arraySizeErrorCheck(arrayIndexLine, arrayIndex, arraySize))
2326 addInterfaceBlock(const TPublicType& typeQualifier, const TSourceLoc& nameLine, const TString& blockName, TFieldList* fieldList, const TString* instanceName, const TSourceLoc& instanceLine, TIntermTyped* arrayIndex, const TSourceLoc& arrayIndexLine) argument
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
H A Dstate.h502 uint32_t arrayIndex; // for render targets, the array index being rendered to for arrayed surfaces member in struct:SWR_SURFACE_STATE
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_lowering_nvc0.cpp829 Value *arrayIndex = i->tex.target.isArray() ? i->getSrc(lyr) : NULL; local
830 if (arrayIndex) {
833 i->setSrc(0, arrayIndex);
838 if (arrayIndex) {
841 bld.mkCvt(OP_CVT, TYPE_U16, src, sTy, arrayIndex)->saturate = sat;
/external/mesa3d/src/gallium/drivers/swr/
H A Dswr_state.cpp858 rt->arrayIndex == sf->u.tex.first_layer)
875 rt->arrayIndex = sf->u.tex.first_layer;
/external/skia/src/utils/
H A DSkLua.cpp209 static SkScalar getarray_scalar(lua_State* L, int stackIndex, int arrayIndex) { argument
211 lua_rawgeti(L, stackIndex, arrayIndex);
/external/skqp/src/utils/
H A DSkLua.cpp209 static SkScalar getarray_scalar(lua_State* L, int stackIndex, int arrayIndex) { argument
211 lua_rawgeti(L, stackIndex, arrayIndex);
/external/guice/lib/build/
H A Dspring-beans.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/springframework/ org/springframework/beans/ org/springframework/beans/annotation/ ...
/external/junit-params/lib/
H A Dassertj-core-1.7.1.jarMETA-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org.assertj/ META- ...

Completed in 665 milliseconds

12