Searched refs:allocation (Results 1 - 10 of 10) sorted by relevance

/frameworks/rs/
H A DrsProgramVertex.cpp46 "Unable to set fixed function emulation matrices because allocation is missing");
49 float *f = static_cast<float *>(rsc->mHal.funcs.allocation.lock1D(
59 rsc->mHal.funcs.allocation.unlock1D(rsc, mHal.state.constants[0]);
75 "Unable to set fixed function emulation matrix projection because allocation is missing");
78 float *f = static_cast<float *>(rsc->mHal.funcs.allocation.lock1D(
82 rsc->mHal.funcs.allocation.unlock1D(rsc, mHal.state.constants[0]);
93 "Unable to set fixed function emulation matrix modelview because allocation is missing");
96 float *f = static_cast<float *>(rsc->mHal.funcs.allocation.lock1D(
100 rsc->mHal.funcs.allocation.unlock1D(rsc, mHal.state.constants[0]);
111 "Unable to set fixed function emulation matrix texture because allocation i
[all...]
H A DrsAllocation.cpp63 if (!rsc->mHal.funcs.allocation.init(rsc, a, type->getElement()->getHasReferences())) {
90 mRSC->mHal.funcs.allocation.destroy(mRSC, this);
94 rsc->mHal.funcs.allocation.syncAll(rsc, this, src);
108 //void *ptr = mRSC->mHal.funcs.allocation.lock1D(rsc, this);
128 rsc->mHal.funcs.allocation.data1D(rsc, this, xoff, lod, count, data, sizeBytes);
134 rsc->mHal.funcs.allocation.data2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
141 rsc->mHal.funcs.allocation.data3D(rsc, this, xoff, yoff, zoff, lod, w, h, d, data, sizeBytes, stride);
158 rsc->mHal.funcs.allocation.read1D(rsc, this, xoff, lod, count, data, sizeBytes);
176 rsc->mHal.funcs.allocation.read2D(rsc, this, xoff, yoff, lod, face, w, h, data, sizeBytes, stride);
187 rsc->mHal.funcs.allocation
[all...]
H A DrsProgramFragment.cpp49 ALOGE("Unable to set fixed function emulation color because allocation is missing");
50 rsc->setError(RS_ERROR_BAD_SHADER, "Unable to set fixed function emulation color because allocation is missing");
57 void *p = rsc->mHal.funcs.allocation.lock1D(rsc, mHal.state.constants[0]);
60 rsc->mHal.funcs.allocation.unlock1D(rsc, mHal.state.constants[0]);
H A DrsScriptC_LibGL.cpp222 const char *text = (const char *)rsc->mHal.funcs.allocation.lock1D(rsc, a);
225 rsc->mHal.funcs.allocation.unlock1D(rsc, a);
252 const char *text = (const char *)rsc->mHal.funcs.allocation.lock1D(rsc, a);
257 rsc->mHal.funcs.allocation.unlock1D(rsc, a);
H A DrsMesh.cpp204 rsc->mHal.funcs.allocation.markDirty(rsc, mHal.state.vertexBuffers[ct]);
210 rsc->mHal.funcs.allocation.markDirty(rsc, mHal.state.indexBuffers[ct]);
232 const uint8_t *bp = (const uint8_t *)rsc->mHal.funcs.allocation.lock1D(
262 rsc->mHal.funcs.allocation.unlock1D(rsc, posAlloc);
H A DrsFont.cpp476 mRSC->mHal.funcs.allocation.data2D(mRSC, mTextTexture.get(), 0, 0, 0,
589 uint16_t *indexPtr = (uint16_t*)mRSC->mHal.funcs.allocation.lock1D(mRSC, indexAlloc);
620 mTextMeshPtr = (float*)mRSC->mHal.funcs.allocation.lock1D(mRSC, vertexAlloc);
626 mRSC->mHal.funcs.allocation.unlock1D(mRSC, indexAlloc);
627 mRSC->mHal.funcs.allocation.unlock1D(mRSC, vertexAlloc);
H A Drs_hal.h216 // Allocation to allocation copies
245 } allocation; member in struct:android::renderscript::__anon1535
/frameworks/rs/driver/runtime/
H A DAndroid.mk33 ll32/allocation.ll
36 ll64/allocation.ll
/frameworks/rs/java/tests/Balls/src/com/example/android/rs/balls/
H A DBallsRS.java73 final Allocation allocation =
77 return allocation;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DBackingStore.java533 Allocation allocation = (Allocation) backing.lock(ACCESS_ALLOCATION);
534 allocation.copyTo(mBitmap);
626 Allocation allocation = (Allocation) backing.lock(ACCESS_ALLOCATION);
628 allocation.copyTo(pixels.array());
748 Allocation allocation = (Allocation) backing.lock(ACCESS_ALLOCATION);
751 allocation.copyTo(bytes);
754 allocation.copyTo(floats);
758 "Trying to sync to an allocation with an unsupported element id: "
868 throw new RuntimeException("Cannot sync allocation backing!");
919 "Cannot allocate allocation wit
[all...]

Completed in 3889 milliseconds