Home
last modified time | relevance | path

Searched refs:typeI8Builder (Results 1 – 3 of 3) sorted by relevance

/frameworks/rs/tests/lldb/cpp/Allocations/
DAllocations.cpp83 Type::Builder typeI8Builder(mRS, Element::I8(mRS)); in createSignedAllocations() local
84 typeI8Builder.setX(1); // One element here to test 16 byte memory alignment in createSignedAllocations()
85 typeI8Builder.setY(3); in createSignedAllocations()
86 typeI8Builder.setZ(8); in createSignedAllocations()
88 mCharAllocation = Allocation::createTyped(mRS, typeI8Builder.create()); in createSignedAllocations()
/frameworks/rs/tests/lldb/jni/Allocations/jniallocations/
Djniallocations.cpp87 Type::Builder typeI8Builder(mRS, Element::I8(mRS)); in createSignedAllocations() local
88 typeI8Builder.setX(1); // One element here to test 16 byte memory alignment in createSignedAllocations()
89 typeI8Builder.setY(3); in createSignedAllocations()
90 typeI8Builder.setZ(8); in createSignedAllocations()
92 mCharAllocation = Allocation::createTyped(mRS, typeI8Builder.create()); in createSignedAllocations()
/frameworks/rs/tests/lldb/java/Allocations/src/com/android/rs/allocations/
DMainActivity.java120 Type.Builder typeI8Builder = new Type.Builder(mRS, Element.I8(mRS)); in createSignedAllocations() local
121 typeI8Builder.setX(1); // One element here to test 16 byte memory alignment in createSignedAllocations()
122 typeI8Builder.setY(3); in createSignedAllocations()
123 typeI8Builder.setZ(8); in createSignedAllocations()
125 mCharAllocation = Allocation.createTyped(mRS, typeI8Builder.create()); in createSignedAllocations()