Searched refs:va (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
H A DLinearLayoutTest.java33 int va = VERTICAL_ALIGNMENTS[i];
37 lp.gravity = va | ha;
H A DGridLayoutTest.java36 int va = VERTICAL_ALIGNMENTS[i];
43 lp.setGravity(va | ha);
H A DAlignmentTest.java93 Alignment va = VERTICAL_ALIGNMENTS[i];
96 LayoutParams layoutParams = new LayoutParams(spec(i, va), spec(j, ha));
/frameworks/rs/
H A DrsAdapter.cpp60 void rsi_Adapter1DBindAllocation(Context *rsc, RsAdapter1D va, RsAllocation valloc) { argument
61 Adapter1D * a = static_cast<Adapter1D *>(va);
66 void rsi_Adapter1DSetConstraint(Context *rsc, RsAdapter1D va, RsDimension dim, uint32_t value) { argument
67 Adapter1D * a = static_cast<Adapter1D *>(va);
134 void rsi_Adapter2DBindAllocation(Context *rsc, RsAdapter2D va, RsAllocation valloc) { argument
135 Adapter2D * a = static_cast<Adapter2D *>(va);
140 void rsi_Adapter2DSetConstraint(Context *rsc, RsAdapter2D va, RsDimension dim, uint32_t value) { argument
141 Adapter2D * a = static_cast<Adapter2D *>(va);
H A Drs.h38 void rsaMeshGetIndices(RsContext, RsMesh, RsAllocation *va,
46 const void* rsaAllocationGetType(RsContext con, RsAllocation va);
H A Drs.spec134 param RsAllocation va
144 param RsAllocation va
152 param RsAllocation va
160 param RsAllocation va
172 param RsAllocation va
185 param RsAllocation va
189 param RsAllocation va
194 param RsAllocation va
202 param RsAllocation va
215 param RsAllocation va
[all...]
H A DrsAllocation.cpp564 void rsi_AllocationSyncAll(Context *rsc, RsAllocation va, RsAllocationUsageType src) { argument
565 Allocation *a = static_cast<Allocation *>(va);
570 void rsi_AllocationGenerateMipmaps(Context *rsc, RsAllocation va) { argument
571 Allocation *alloc = static_cast<Allocation *>(va);
575 void rsi_AllocationCopyToBitmap(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) { argument
576 Allocation *a = static_cast<Allocation *>(va);
582 void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, argument
584 Allocation *a = static_cast<Allocation *>(va);
588 void rsi_Allocation2DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t y, uint32_t lod, RsAllocationCubemapFace face, argument
590 Allocation *a = static_cast<Allocation *>(va);
594 rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t lod, const void *data, size_t sizeBytes, size_t eoff) argument
600 rsi_Allocation2DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, const void *data, size_t sizeBytes, size_t stride) argument
606 rsi_Allocation3DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t zoff, uint32_t lod, uint32_t w, uint32_t h, uint32_t d, const void *data, size_t sizeBytes, size_t stride) argument
613 rsi_AllocationRead(Context *rsc, RsAllocation va, void *data, size_t sizeBytes) argument
625 rsi_AllocationResize1D(Context *rsc, RsAllocation va, uint32_t dimX) argument
630 rsi_AllocationResize2D(Context *rsc, RsAllocation va, uint32_t dimX, uint32_t dimY) argument
769 rsi_Allocation1DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, uint32_t count, void *data, size_t sizeBytes) argument
775 rsi_Allocation2DRead(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t yoff, uint32_t lod, RsAllocationCubemapFace face, uint32_t w, uint32_t h, void *data, size_t sizeBytes, size_t stride) argument
785 rsaAllocationGetType(RsContext con, RsAllocation va) argument
[all...]
H A DrsScript.cpp165 void rsi_ScriptBindAllocation(Context * rsc, RsScript vs, RsAllocation va, uint32_t slot) { argument
167 Allocation *a = static_cast<Allocation *>(va);
H A DrsScriptC_LibGL.cpp94 CHECK_OBJ(va);
100 CHECK_OBJ(va);
H A DrsMesh.cpp312 void rsaMeshGetIndices(RsContext con, RsMesh mv, RsAllocation *va, uint32_t *primType, uint32_t idxDataCount) { argument
317 va[ct] = sm->mHal.state.indexBuffers[ct];
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DFirstFrameAnimatorHelper.java58 final ValueAnimator va = (ValueAnimator) animation;
59 va.addUpdateListener(FirstFrameAnimatorHelper.this);
60 onAnimationUpdate(va);
/frameworks/base/libs/common_time/
H A Dutils.h78 void internalLog(int prio, const char* tag, const char* fmt, va_list va);
/frameworks/rs/cpp/
H A DScript.cpp44 void Script::bindAllocation(sp<Allocation> va, uint32_t slot) const { argument
45 tryDispatch(mRS, RS::dispatch->ScriptBindAllocation(mRS->getContext(), getID(), BaseObj::getObjID(va), slot));
H A DrsDispatch.h22 typedef const void* (*AllocationGetTypeFnPtr)(RsContext con, RsAllocation va);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardMultiUserAvatar.java188 ValueAnimator va = ValueAnimator.ofFloat(0f, 1f);
189 va.addUpdateListener(new AnimatorUpdateListener() {
202 va.addListener(new AnimatorListenerAdapter() {
210 va.setDuration(duration);
211 va.start();
/frameworks/base/rs/java/android/renderscript/
H A DProgram.java160 * @param va allocation containing texture data
164 public void bindTexture(Allocation va, int slot) argument
170 if (va != null && va.getType().hasFaces() &&
175 long id = va != null ? va.getID(mRS) : 0;
H A DScript.java242 public void bindAllocation(Allocation va, int slot) { argument
244 mRS.validateObject(va);
245 if (va != null) {
247 final Type t = va.mType;
253 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot);
H A DProgramVertexFixedFunction.java39 * @param va allocation containing fixed function matrices
41 public void bindConstants(Constants va) { argument
43 bindConstants(va.getAllocation(), 0);
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
H A DTestAppLoadingScreen.java91 ProgramVertexFixedFunction.Constants va = new ProgramVertexFixedFunction.Constants(mRS);
92 ((ProgramVertexFixedFunction)pvDefault).bindConstants(va);
/frameworks/rs/driver/
H A DrsdPath.cpp155 RsdVertexArray va(attribs, 2);
156 va.setup(rsc);
H A DrsdMeshObj.cpp158 RsdVertexArray va(mAttribs, mAttribCount);
159 va.setup(rsc);
H A DrsdGL.cpp548 RsdVertexArray va(attribs, 2);
549 va.setup(rsc);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScript.java187 * @param va
190 public void bindAllocation(Allocation va, int slot) { argument
192 mT.thunkBindAllocation(va, slot);
197 if (va != null) {
198 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot);
H A DScriptCThunker.java70 void thunkBindAllocation(Allocation va, int slot) { argument
72 if (va != null) {
73 nva = ((AllocationThunker)va).mN;
/frameworks/av/services/audioflinger/
H A DAudioMixer.cpp1263 int32_t va = t->prevAuxLevel; local
1273 *aux++ += (va >> 17) * (l + r);
1276 va += vaInc;
1278 t->prevAuxLevel = va;
1299 const int16_t va = t->auxLevel; local
1307 aux[0] = mulAdd(a, va, aux[0]);
1334 int32_t va = t->prevAuxLevel; local
1347 *aux++ += (va >> 17) * (l + r);
1350 va += vaInc;
1355 t->prevAuxLevel = va;
1362 const int16_t va = (int16_t)t->auxLevel; local
1424 int32_t va = t->prevAuxLevel; local
1452 const int16_t va = (int16_t)t->auxLevel; local
[all...]

Completed in 362 milliseconds

12