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.java75 int mCurrentCount; field in class:Allocation
304 mCurrentCount = mCurrentDimX;
306 mCurrentCount *= mCurrentDimY;
309 mCurrentCount *= mCurrentDimZ;
536 if (d.length != mCurrentCount) {
538 mCurrentCount + ", array length = " + d.length);
546 copy1DRangeFromUnchecked(0, mCurrentCount, i);
552 copy1DRangeFromUnchecked(0, mCurrentCount, i);
623 copy1DRangeFromUnchecked(0, mCurrentCount, array, dt, arrayLen);
890 if((off + count) > mCurrentCount) {
[all...]
/frameworks/rs/cpp/
H A DAllocation.cpp32 mCurrentCount = mCurrentDimX;
34 mCurrentCount *= mCurrentDimY;
37 mCurrentCount *= mCurrentDimZ;
224 if((off + count) > mCurrentCount) {
225 ALOGE("Overflow, Available count %u, got %zu at offset %u.", mCurrentCount, count, off);
247 if((off + count) > mCurrentCount) {
248 ALOGE("Overflow, Available count %u, got %zu at offset %u.", mCurrentCount, count, off);
275 copy1DRangeFrom(0, mCurrentCount, data);
279 copy1DRangeTo(0, mCurrentCount, data);
H A DrsCppStructs.h321 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
294 mCurrentCount = mCurrentDimX;
296 mCurrentCount *= mCurrentDimY;
299 mCurrentCount *= mCurrentDimZ;
492 if (d.length != mCurrentCount) {
494 mCurrentCount + ", array length = " + d.length);
502 copy1DRangeFromUnchecked(0, mCurrentCount, i);
508 copy1DRangeFromUnchecked(0, mCurrentCount, i);
574 copy1DRangeFromUnchecked(0, mCurrentCount, array, dt, arrayLen);
840 if((off + count) > mCurrentCount) {
[all...]

Completed in 5960 milliseconds