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

/frameworks/base/graphics/java/android/renderscript/
H A DAllocationAdapter.java121 mCurrentCount = mCurrentDimX;
123 mCurrentCount *= mCurrentDimY;
126 mCurrentCount *= mCurrentDimZ;
H A DAllocation.java93 int mCurrentCount; field in class:Allocation
227 mCurrentCount = mCurrentDimX;
229 mCurrentCount *= mCurrentDimY;
232 mCurrentCount *= mCurrentDimZ;
401 if (d.length != mCurrentCount) {
403 mCurrentCount + ", array length = " + d.length);
409 copy1DRangeFromUnchecked(0, mCurrentCount, i);
473 copy1DRangeFromUnchecked(0, mCurrentCount, d);
484 copy1DRangeFromUnchecked(0, mCurrentCount, d);
495 copy1DRangeFromUnchecked(0, mCurrentCount,
[all...]
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DAllocationAdapter.java121 mCurrentCount = mCurrentDimX;
123 mCurrentCount *= mCurrentDimY;
126 mCurrentCount *= mCurrentDimZ;
H A DAllocation.java91 int mCurrentCount; field in class:Allocation
187 mCurrentCount = mCurrentDimX;
189 mCurrentCount *= mCurrentDimY;
192 mCurrentCount *= mCurrentDimZ;
293 if (d.length != mCurrentCount) {
295 mCurrentCount + ", array length = " + d.length);
301 copy1DRangeFromUnchecked(0, mCurrentCount, i);
365 copy1DRangeFromUnchecked(0, mCurrentCount, d);
376 copy1DRangeFromUnchecked(0, mCurrentCount, d);
387 copy1DRangeFromUnchecked(0, mCurrentCount,
[all...]
/frameworks/rs/cpp/
H A DAllocation.cpp41 mCurrentCount = mCurrentDimX;
43 mCurrentCount *= mCurrentDimY;
46 mCurrentCount *= mCurrentDimZ;
173 if (d.length != mCurrentCount) {
175 mCurrentCount + ", array length = " + d.length);
181 copy1DRangeFromUnchecked(0, mCurrentCount, i);
234 if((off + count) > mCurrentCount) {
235 ALOGE("Overflow, Available count %zu, got %zu at offset %zu.", mCurrentCount, count, off);
H A DAllocation.h50 uint32_t mCurrentCount; member in class:android::renderscriptCpp::Allocation

Completed in 1611 milliseconds