/frameworks/rs/cpp/ |
H A D | Script.cpp | 50 void Script::bindAllocation(sp<Allocation> va, uint32_t slot) const { argument 51 rsScriptBindAllocation(mRS->mContext, getID(), BaseObj::getObjID(va), slot);
|
/frameworks/base/graphics/java/android/renderscript/ |
H A D | ProgramVertexFixedFunction.java | 42 * @param va allocation containing fixed function matrices 44 public void bindConstants(Constants va) { argument 46 bindConstants(va.getAllocation(), 0);
|
H A D | Script.java | 83 * @param va 86 public void bindAllocation(Allocation va, int slot) { argument 88 if (va != null) { 89 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot);
|
H A D | Program.java | 159 * @param va allocation containing texture data 163 public void bindTexture(Allocation va, int slot) argument 169 if (va != null && va.getType().hasFaces() && 174 int id = va != null ? va.getID(mRS) : 0;
|
/frameworks/rs/ |
H A D | rsAdapter.cpp | 79 void rsi_Adapter1DBindAllocation(Context *rsc, RsAdapter1D va, RsAllocation valloc) { argument 80 Adapter1D * a = static_cast<Adapter1D *>(va); 85 void rsi_Adapter1DSetConstraint(Context *rsc, RsAdapter1D va, RsDimension dim, uint32_t value) { argument 86 Adapter1D * a = static_cast<Adapter1D *>(va); 109 void rsi_Adapter1DSubData(Context *rsc, RsAdapter1D va, uint32_t xoff, uint32_t count, const void *data) { argument 110 Adapter1D * a = static_cast<Adapter1D *>(va); 114 void rsi_Adapter1DData(Context *rsc, RsAdapter1D va, const void *data) { argument 115 Adapter1D * a = static_cast<Adapter1D *>(va); 197 void rsi_Adapter2DBindAllocation(Context *rsc, RsAdapter2D va, RsAllocation valloc) { argument 198 Adapter2D * a = static_cast<Adapter2D *>(va); 203 rsi_Adapter2DSetConstraint(Context *rsc, RsAdapter2D va, RsDimension dim, uint32_t value) argument 227 rsi_Adapter2DData(Context *rsc, RsAdapter2D va, const void *data) argument 232 rsi_Adapter2DSubData(Context *rsc, RsAdapter2D va, uint32_t xoff, uint32_t yoff, uint32_t w, uint32_t h, const void *data) argument [all...] |
H A D | rsMesh.cpp | 307 void rsaMeshGetIndices(RsContext con, RsMesh mv, RsAllocation *va, uint32_t *primType, uint32_t idxDataCount) { argument 312 va[ct] = sm->mHal.state.indexBuffers[ct];
|
H A D | rsScript.cpp | 96 void rsi_ScriptBindAllocation(Context * rsc, RsScript vs, RsAllocation va, uint32_t slot) { argument 98 Allocation *a = static_cast<Allocation *>(va);
|
H A D | rsAllocation.cpp | 450 static void AllocationGenerateScriptMips(RsContext con, RsAllocation va); 520 void rsi_AllocationSyncAll(Context *rsc, RsAllocation va, RsAllocationUsageType src) { argument 521 Allocation *a = static_cast<Allocation *>(va); 526 void rsi_AllocationGenerateMipmaps(Context *rsc, RsAllocation va) { argument 527 Allocation *texAlloc = static_cast<Allocation *>(va); 531 void rsi_AllocationCopyToBitmap(Context *rsc, RsAllocation va, void *data, size_t dataLen) { argument 532 Allocation *texAlloc = static_cast<Allocation *>(va); 544 void rsi_Allocation1DData(Context *rsc, RsAllocation va, uint32_t xoff, uint32_t lod, argument 546 Allocation *a = static_cast<Allocation *>(va); 550 void rsi_Allocation2DElementData(Context *rsc, RsAllocation va, uint32_ argument 556 rsi_Allocation1DElementData(Context *rsc, RsAllocation va, uint32_t x, uint32_t lod, const void *data, size_t sizeBytes, size_t eoff) argument 562 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) argument 568 rsi_AllocationRead(Context *rsc, RsAllocation va, void *data, size_t data_length) argument 573 rsi_AllocationResize1D(Context *rsc, RsAllocation va, uint32_t dimX) argument 578 rsi_AllocationResize2D(Context *rsc, RsAllocation va, uint32_t dimX, uint32_t dimY) argument 583 AllocationGenerateScriptMips(RsContext con, RsAllocation va) argument 717 rsaAllocationGetType(RsContext con, RsAllocation va) argument [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | BeanBag.java | 144 public float va; field in class:BeanBag.Board.Bean 203 va = randfrange(-30,30); 229 a = (a + va * dt); 246 va = 0; 257 va = randfrange(a*0.5f, a);
|
/frameworks/av/services/audioflinger/ |
H A D | AudioMixer.cpp | 796 int32_t va = t->prevAuxLevel; local 806 *aux++ += (va >> 17) * (l + r); 809 va += vaInc; 811 t->prevAuxLevel = va; 831 const int16_t va = t->auxLevel; local 839 aux[0] = mulAdd(a, va, aux[0]); 864 int32_t va = t->prevAuxLevel; local 877 *aux++ += (va >> 17) * (l + r); 880 va += vaInc; 885 t->prevAuxLevel = va; 892 const int16_t va = (int16_t)t->auxLevel; local 952 int32_t va = t->prevAuxLevel; local 980 const int16_t va = (int16_t)t->auxLevel; local [all...] |
H A D | AudioFlinger.cpp | 3123 uint32_t vl, vr, va; local 3126 vl = vr = va = 0; 3159 va = (uint32_t)(v * sendLevel); 3182 if (va > MAX_GAIN_INT) va = MAX_GAIN_INT; // va is uint32_t, so no need to check for - 3190 mAudioMixer->setParameter(name, param, AudioMixer::AUXLEVEL, (void *)va);
|