Home | History | Annotate | Download | only in vm

Lines Matching refs:firstIndex

989 bool dvmDbgOutputArray(ObjectId arrayId, int firstIndex, int count,
998 if (firstIndex + count > (int)arrayObj->length) {
1000 firstIndex, count, arrayObj->length);
1012 copyValuesToBE(outBuf, data + firstIndex*width, count, width);
1018 pObjects += firstIndex;
1040 bool dvmDbgSetArrayElements(ObjectId arrayId, int firstIndex, int count,
1049 if (firstIndex + count > (int)arrayObj->length) {
1051 firstIndex, count, arrayObj->length);
1062 copyValuesFromBE(data + firstIndex*width, buf, count, width);
1068 pObjects += firstIndex;