HomeSort by relevance Sort by last modified time
    Searched full:createsized (Results 1 - 25 of 34) sorted by null

1 2

  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_mesh.java 35 Allocation vAlloc0 = Allocation.createSized(RS, Element.F32(RS), 10);
36 Allocation vAlloc1 = Allocation.createSized(RS, Element.F32_2(RS), 10);
38 Allocation iAlloc0 = Allocation.createSized(RS, Element.I16(RS), 10);
39 Allocation iAlloc2 = Allocation.createSized(RS, Element.I16(RS), 10);
UT_copy_test.java 34 Allocation a1 = Allocation.createSized(rs, Element.F32_2(rs), 1024);
35 Allocation a2 = Allocation.createSized(rs, Element.F32_2(rs), 1024);
58 Allocation a1 = Allocation.createSized(rs, Element.F32_3(rs), 1024);
59 Allocation a2 = Allocation.createSized(rs, Element.F32_3(rs), 1024);
82 Allocation a1 = Allocation.createSized(rs, Element.F32_4(rs), 1024);
83 Allocation a2 = Allocation.createSized(rs, Element.F32_4(rs), 1024);
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_copy_test.java 34 Allocation a1 = Allocation.createSized(rs, Element.F32_2(rs), 1024);
35 Allocation a2 = Allocation.createSized(rs, Element.F32_2(rs), 1024);
58 Allocation a1 = Allocation.createSized(rs, Element.F32_3(rs), 1024);
59 Allocation a2 = Allocation.createSized(rs, Element.F32_3(rs), 1024);
82 Allocation a1 = Allocation.createSized(rs, Element.F32_4(rs), 1024);
83 Allocation a2 = Allocation.createSized(rs, Element.F32_4(rs), 1024);
  /frameworks/rs/java/tests/LatencyBenchmark/src/com/example/android/rs/computebench/
Benchmark.java 31 ain = Allocation.createSized(rs, Element.U32(mRS), 10000);
32 aout = Allocation.createSized(rs, Element.U32(mRS), 10000);
  /frameworks/rs/java/tests/MathErr/src/com/example/android/rs/matherr/
MathErr.java 40 mAllocationSrc = Allocation.createSized(rs, Element.F32(rs), BUF_SIZE);
41 mAllocationRes = Allocation.createSized(rs, Element.F32(rs), BUF_SIZE);
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Scene.java 271 Allocation drawableData = Allocation.createSized(rs,
288 Allocation shaderData = Allocation.createSized(rs, Element.ALLOCATION(rs),
300 Allocation shaderData = Allocation.createSized(rs, Element.ALLOCATION(rs),
336 opaqueBuffer = Allocation.createSized(mRS, Element.U32(mRS), mRenderables.size());
340 transparentBuffer = Allocation.createSized(mRS, Element.U32(mRS), mRenderables.size());
348 cameraData = Allocation.createSized(mRS, Element.ALLOCATION(mRS), mCameras.size());
358 Allocation lightData = Allocation.createSized(mRS,
Transform.java 55 Allocation childRSData = Allocation.createSized(rs, Element.ALLOCATION(rs),
RenderPass.java 101 Allocation drawableData = Allocation.createSized(rs,
  /frameworks/rs/cpp/
Script.cpp 58 mAllocation = Allocation::createSized(rs, mElement, dimx, RS_ALLOCATION_USAGE_SCRIPT | usages);
Allocation.cpp 332 android::sp<Allocation> Allocation::createSized(sp<RS> rs, sp<const Element> e,
  /frameworks/rs/java/tests/ComputePerf/src/com/example/android/rs/computeperf/
LaunchTest.java 35 mAllocationX = Allocation.createSized(rs, Element.U8(rs), dim);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationTest.java 109 Allocation A = Allocation.createSized(mRS, e, i);
291 Allocation A = Allocation.createSized(mRS, Element.F32(mRS), nElems);
315 Allocation A = Allocation.createSized(mRS, Element.I8(mRS), nElems);
339 Allocation A = Allocation.createSized(mRS, Element.I16(mRS), nElems);
363 Allocation A = Allocation.createSized(mRS, Element.I32(mRS), nElems);
388 Allocation.createSized(mRS, Element.ELEMENT(mRS), nElems);
427 Allocation srcA = Allocation.createSized(mRS, Element.F32(mRS), nElems);
428 Allocation dstA = Allocation.createSized(mRS, Element.F32(mRS), nElems);
451 Allocation srcA = Allocation.createSized(mRS, Element.I8(mRS), nElems);
452 Allocation dstA = Allocation.createSized(mRS, Element.I8(mRS), nElems)
    [all...]
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
MeshTest.java 47 mAttrAlloc = Allocation.createSized(mRS, mPosElem, 3);
48 mIndexAlloc = Allocation.createSized(mRS, Element.U16(mRS), 3);
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
ErrorCalculator.java 65 mInputRowsAllocation = Allocation.createSized(mRS, Element.I32(mRS), rowIndices.length,
68 mOutputRegionsAllocation = Allocation.createSized(mRS, Element.I32(mRS),
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicLUT.java 35 mTables = Allocation.createSized(rs, Element.U8(rs), 1024);
Script.java 317 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT);
321 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT | usages);
Mesh.java 367 alloc = Allocation.createSized(mRS, entry.e, entry.size, mUsage);
379 alloc = Allocation.createSized(mRS, entry.e, entry.size, mUsage);
  /frameworks/rs/tests/cppbasic/
compute.cpp 28 sp<Allocation> a1 = Allocation::createSized(rs, e, 1000);
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicLUT.java 56 si.mTables = Allocation.createSized(rs, Element.U8(rs), 1024);
AllocationThunker.java 302 static public Allocation createSized(RenderScript rs, Element e,
307 android.renderscript.Allocation.createSized(rst.mN, (android.renderscript.Element)e.getNObj(), count, usage);
Script.java 439 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT);
443 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT | usages);
  /frameworks/rs/java/tests/Balls/src/com/example/android/rs/balls/
BallsRS.java 114 mGridCache = Allocation.createSized(mRS, Element.F32_2(mRS), PART_COUNT);
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
CallbackProcessor.java 74 mAllocationIn = Allocation.createSized(mRS, Element.U8(mRS), inputSize);
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
RsBenchRS.java 103 Allocation alloc = Allocation.createSized(rs, Element.U8(rs),
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
GrassRS.java 202 mBladesIndicies = Allocation.createSized(mRS, Element.U16(mRS), mIndicies);

Completed in 1067 milliseconds

1 2