Searched refs:mCurrentCount (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/rs/java/android/renderscript/
H A DAllocationAdapter.java61 mCurrentCount = mCurrentDimX;
63 mCurrentCount *= mCurrentDimY;
66 mCurrentCount *= mCurrentDimZ;
H A DAllocation.java82 int mCurrentCount; field in class:Allocation
369 mCurrentCount = mCurrentDimX;
371 mCurrentCount *= mCurrentDimY;
374 mCurrentCount *= mCurrentDimZ;
609 if (d.length != mCurrentCount) {
611 mCurrentCount + ", array length = " + d.length);
619 copy1DRangeFromUnchecked(0, mCurrentCount, i);
625 copy1DRangeFromUnchecked(0, mCurrentCount, i);
696 copy1DRangeFromUnchecked(0, mCurrentCount, array, dt, arrayLen);
1108 if((off + count) > mCurrentCount) {
[all...]
/frameworks/rs/cpp/
H A DAllocation.cpp32 mCurrentCount = mCurrentDimX;
34 mCurrentCount *= mCurrentDimY;
37 mCurrentCount *= mCurrentDimZ;
223 if((off + count) > mCurrentCount) {
224 ALOGE("Overflow, Available count %u, got %zu at offset %u.", mCurrentCount, count, off);
246 if((off + count) > mCurrentCount) {
247 ALOGE("Overflow, Available count %u, got %zu at offset %u.", mCurrentCount, count, off);
274 copy1DRangeFrom(0, mCurrentCount, data);
278 copy1DRangeTo(0, mCurrentCount, data);
H A DrsCppStructs.h594 uint32_t mCurrentCount; member in class:android::RSC::Allocation
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DAllocation.java82 int mCurrentCount; field in class:Allocation
337 mCurrentCount = mCurrentDimX;
339 mCurrentCount *= mCurrentDimY;
342 mCurrentCount *= mCurrentDimZ;
598 if (d.length != mCurrentCount) {
600 mCurrentCount + ", array length = " + d.length);
608 copy1DRangeFromUnchecked(0, mCurrentCount, i);
614 copy1DRangeFromUnchecked(0, mCurrentCount, i);
680 copy1DRangeFromUnchecked(0, mCurrentCount, array, dt, arrayLen);
1090 if((off + count) > mCurrentCount) {
[all...]

Completed in 1270 milliseconds