Home
last modified time | relevance | path

Searched refs:va (Results 1 – 25 of 26) sorted by relevance

12

/frameworks/rs/
DrsApiStubs.cpp360 extern "C" const void * rsaAllocationGetType(RsContext ctxWrapper, RsAllocation va) in rsaAllocationGetType() argument
362 return RS_DISPATCH(ctxWrapper, AllocationGetType, va); in rsaAllocationGetType()
396 extern "C" void * rsAllocationGetPointer (RsContext ctxWrapper, RsAllocation va, uint32_t lod, RsAl… in rsAllocationGetPointer() argument
399 …return RS_DISPATCH(ctxWrapper, AllocationGetPointer, va, lod, face, z, array, stride, stride_lengt… in rsAllocationGetPointer()
402 extern "C" void rsAllocation1DData (RsContext ctxWrapper, RsAllocation va, uint32_t xoff, uint32_t … in rsAllocation1DData() argument
405 RS_DISPATCH(ctxWrapper, Allocation1DData, va, xoff, lod, count, data, data_length); in rsAllocation1DData()
408 extern "C" void rsAllocation1DElementData (RsContext ctxWrapper, RsAllocation va, uint32_t x, uint3… in rsAllocation1DElementData() argument
411 RS_DISPATCH(ctxWrapper, Allocation1DElementData, va, x, lod, data, data_length, comp_offset); in rsAllocation1DElementData()
414 extern "C" void rsAllocationElementData (RsContext ctxWrapper, RsAllocation va, uint32_t x, uint32_… in rsAllocationElementData() argument
417 … RS_DISPATCH(ctxWrapper, AllocationElementData, va, x, y, z, lod, data, data_length, comp_offset); in rsAllocationElementData()
[all …]
Drs.spec168 param RsAllocation va
178 param RsAllocation va
186 param RsAllocation va
194 param RsAllocation va
204 param RsAllocation va
216 param RsAllocation va
229 param RsAllocation va
233 param RsAllocation va
238 param RsAllocation va
246 param RsAllocation va
[all …]
DrsAllocation.cpp665 void rsi_AllocationSyncAll(Context *rsc, RsAllocation va, RsAllocationUsageType src) { in rsi_AllocationSyncAll() argument
666 Allocation *a = static_cast<Allocation *>(va); in rsi_AllocationSyncAll()
671 void rsi_AllocationGenerateMipmaps(Context *rsc, RsAllocation va) { in rsi_AllocationGenerateMipmaps() argument
672 Allocation *alloc = static_cast<Allocation *>(va); in rsi_AllocationGenerateMipmaps()
676 void rsi_AllocationCopyToBitmap(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) { in rsi_AllocationCopyToBitmap() argument
677 Allocation *a = static_cast<Allocation *>(va); in rsi_AllocationCopyToBitmap()
683 void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, in rsi_Allocation1DData() argument
685 Allocation *a = static_cast<Allocation *>(va); in rsi_Allocation1DData()
689 void rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x, in rsi_Allocation1DElementData() argument
691 Allocation *a = static_cast<Allocation *>(va); in rsi_Allocation1DElementData()
[all …]
DrsApiStubs.h63 extern "C" const void * rsaAllocationGetType(RsContext con, RsAllocation va);
70 extern "C" void * rsAllocationGetPointer (RsContext rsc, RsAllocation va, uint32_t lod, RsAllocatio…
71 extern "C" void rsAllocation1DData (RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t lod, ui…
72 extern "C" void rsAllocation1DElementData (RsContext rsc, RsAllocation va, uint32_t x, uint32_t lod…
73 extern "C" void rsAllocationElementData (RsContext rsc, RsAllocation va, uint32_t x, uint32_t y, ui…
74 extern "C" void rsAllocation2DData (RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, u…
75 extern "C" void rsAllocation3DData (RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, u…
76 extern "C" void rsAllocationGenerateMipmaps (RsContext rsc, RsAllocation va);
77 extern "C" void rsAllocationRead (RsContext rsc, RsAllocation va, void * data, size_t data_length);
78 extern "C" void rsAllocation1DRead (RsContext rsc, RsAllocation va, uint32_t xoff, uint32_t lod, ui…
[all …]
DrsApiAllocation.cpp23 extern "C" const void * rsaAllocationGetType(RsContext con, RsAllocation va) { in rsaAllocationGetType() argument
24 Allocation *a = static_cast<Allocation *>(va); in rsaAllocationGetType()
DrsApiMesh.cpp42 void rsaMeshGetIndices(RsContext con, RsMesh mv, RsAllocation *va, uint32_t *primType, uint32_t idx… in rsaMeshGetIndices() argument
47 va[ct] = sm->mHal.state.indexBuffers[ct]; in rsaMeshGetIndices()
Drs.h38 void rsaMeshGetIndices(RsContext, RsMesh, RsAllocation *va,
46 const void* rsaAllocationGetType(RsContext con, RsAllocation va);
DrsScriptC_LibGL.cpp90 CHECK_OBJ(va); in rsrBindFrameBufferObjectColorTarget()
96 CHECK_OBJ(va); in rsrBindFrameBufferObjectDepthTarget()
DrsScript.cpp167 void rsi_ScriptBindAllocation(Context * rsc, RsScript vs, RsAllocation va, uint32_t slot) { in rsi_ScriptBindAllocation() argument
169 Allocation *a = static_cast<Allocation *>(va); in rsi_ScriptBindAllocation()
DrsHidlAdaptation.h80 static const void* AllocationGetType(RsContext con, RsAllocation va);
/frameworks/base/rs/java/android/renderscript/
DProgram.java165 public void bindTexture(Allocation va, int slot) in bindTexture() argument
171 if (va != null && va.getType().hasFaces() && in bindTexture()
176 long id = va != null ? va.getID(mRS) : 0; in bindTexture()
DScript.java352 public void bindAllocation(Allocation va, int slot) { in bindAllocation() argument
354 mRS.validateObject(va); in bindAllocation()
355 if (va != null) { in bindAllocation()
360 final Type t = va.mType; in bindAllocation()
369 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot); in bindAllocation()
DProgramVertexFixedFunction.java41 public void bindConstants(Constants va) { in bindConstants() argument
43 bindConstants(va.getAllocation(), 0); in bindConstants()
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
DLinearLayoutTest.java33 int va = VERTICAL_ALIGNMENTS[i]; in create() local
37 lp.gravity = va | ha; in create()
DGridLayoutTest.java36 int va = VERTICAL_ALIGNMENTS[i]; in create() local
43 lp.setGravity(va | ha); in create()
DAlignmentTest.java93 Alignment va = VERTICAL_ALIGNMENTS[i]; in create() local
96 LayoutParams layoutParams = new LayoutParams(spec(i, va), spec(j, ha)); in create()
/frameworks/rs/cpp/
DScript.cpp42 void Script::bindAllocation(const sp<Allocation>& va, uint32_t slot) const { in bindAllocation() argument
43 …(mRS, RS::dispatch->ScriptBindAllocation(mRS->getContext(), getID(), BaseObj::getObjID(va), slot)); in bindAllocation()
DrsDispatch.h24 typedef const void* (*AllocationGetTypeFnPtr)(RsContext con, RsAllocation va);
133 typedef void (*MeshGetIndicesFnPtr) (RsContext con, RsMesh mv, RsAllocation *va, uint32_t *primType…
DrsCppStructs.h1703 void bindAllocation(const sp<Allocation>& va, uint32_t slot) const;
/frameworks/av/media/libaudioprocessing/
DAudioMixer.cpp1133 int32_t va = t->prevAuxLevel; in volumeRampStereo() local
1143 *aux++ += (va >> 17) * (l + r); in volumeRampStereo()
1146 va += vaInc; in volumeRampStereo()
1148 t->prevAuxLevel = va; in volumeRampStereo()
1169 const int16_t va = t->auxLevel; in volumeStereo() local
1177 aux[0] = mulAdd(a, va, aux[0]); in volumeStereo()
1204 int32_t va = t->prevAuxLevel; in track__16BitsStereo() local
1217 *aux++ += (va >> 17) * (l + r); in track__16BitsStereo()
1220 va += vaInc; in track__16BitsStereo()
1225 t->prevAuxLevel = va; in track__16BitsStereo()
[all …]
/frameworks/base/libs/common_time/
Dutils.h78 void internalLog(int prio, const char* tag, const char* fmt, va_list va);
/frameworks/rs/driver/
DrsdMeshObj.cpp162 RsdVertexArray va(mAttribs, mAttribCount); in renderPrimitiveRange() local
163 va.setup(rsc); in renderPrimitiveRange()
DrsdGL.cpp554 RsdVertexArray va(attribs, 2); in rsdGLDrawQuadTexCoords() local
555 va.setup(rsc); in rsdGLDrawQuadTexCoords()
DrsdRuntimeStubs.cpp881 RsdVertexArray va(attribs, 2); local
882 va.setup(rsc);
/frameworks/rs/support/java/src/android/support/v8/renderscript/
DScript.java218 public void bindAllocation(Allocation va, int slot) { in bindAllocation() argument
220 if (va != null) { in bindAllocation()
221 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot, mUseIncSupp); in bindAllocation()

12