Lines Matching refs:copyCount
70 size_t copyCount;
106 copyCount = n;
108 copyCount = 2;
110 n -= copyCount;
111 copyCount /= sizeof(uint16_t);
113 while (copyCount--) {
123 copyCount = n / sizeof(uint32_t);
124 while (copyCount--) {
147 copyCount = n;
149 copyCount = 2;
151 n -= copyCount;
152 copyCount /= sizeof(uint16_t);
154 while (copyCount--) {
162 copyCount = n / sizeof(uint32_t);
163 while (copyCount--) {
320 int copyCount;
332 for (copyCount = 0; copyCount < length; copyCount++)
334 if (srcObj[copyCount] != NULL &&
335 srcObj[copyCount]->clazz != clazz &&
336 !dvmCanPutArrayElement(srcObj[copyCount]->clazz, dstClass))
346 copyCount, length);
349 copyCount * width);
350 dvmWriteBarrierArray(dstArray, 0, copyCount);
351 if (copyCount != length) {
352 dvmThrowArrayStoreExceptionIncompatibleArrayElement(srcPos + copyCount,
353 srcObj[copyCount]->clazz, dstClass);