Searched defs:dstOff (Results 1 - 3 of 3) sorted by relevance

/frameworks/rs/
H A DrsScriptC_Lib.cpp241 uint32_t dstOff,
246 rsi_AllocationCopy2DRange(rsc, dstAlloc, dstOff, 0,
240 rsrAllocationCopy1DRange(Context *rsc, Allocation *dstAlloc, uint32_t dstOff, uint32_t dstMip, uint32_t count, Allocation *srcAlloc, uint32_t srcOff, uint32_t srcMip) argument
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp122 uint32_t dstOff,
128 rsrAllocationCopy1DRange(rsc, (Allocation*)dstAlloc.p, dstOff, dstMip, count,
161 uint32_t dstOff,
167 rsrAllocationCopy1DRange(rsc, (Allocation*)dstAlloc.p, dstOff, dstMip, count,
1511 uint32_t dstOff, uint32_t dstMip, uint32_t count,
1514 SC_AllocationCopy1DRange(dstAlloc, dstOff, dstMip, count,
121 SC_AllocationCopy1DRange(android::renderscript::rs_allocation dstAlloc, uint32_t dstOff, uint32_t dstMip, uint32_t count, android::renderscript::rs_allocation srcAlloc, uint32_t srcOff, uint32_t srcMip) argument
160 SC_AllocationCopy1DRange(::rs_allocation dstAlloc, uint32_t dstOff, uint32_t dstMip, uint32_t count, ::rs_allocation srcAlloc, uint32_t srcOff, uint32_t srcMip) argument
1509 rsAllocationCopy1DRange( ::rs_allocation dstAlloc, uint32_t dstOff, uint32_t dstMip, uint32_t count, ::rs_allocation srcAlloc, uint32_t srcOff, uint32_t srcMip) argument
/frameworks/base/core/java/com/android/internal/app/
H A DProcessStats.java382 static void addSysMemUsage(long[] dstData, int dstOff, long[] addData, int addOff) { argument
383 final long dstCount = dstData[dstOff+SYS_MEM_USAGE_SAMPLE_COUNT];
386 dstData[dstOff+SYS_MEM_USAGE_SAMPLE_COUNT] = addCount;
388 dstData[dstOff+i] = addData[addOff+i];
391 dstData[dstOff+SYS_MEM_USAGE_SAMPLE_COUNT] = dstCount + addCount;
393 if (dstData[dstOff+i] > addData[addOff+i]) {
394 dstData[dstOff+i] = addData[addOff+i];
396 dstData[dstOff+i+1] = (long)(
397 ((dstData[dstOff+i+1]*(double)dstCount)
400 if (dstData[dstOff
[all...]

Completed in 123 milliseconds